PHP 8.2.30
Preview: update_antibot.php Size: 2.67 KB
//var/softaculous/webasyst/update_antibot.php

<?php
@unlink('update_antibot.php');

function __getRandomHexString($length = 64)
    {
        if (!__wa_is_int($length) || $length <= 0) {
            $length = 64;
        }

        // we will bin2hex and byte is 2 hex digit, so make a little correction and than, before method returns, make correction back
        $is_even = $length % 2 === 0;
        if (!$is_even) {
            $length += 1;
        }

        if (function_exists('random_bytes')) {
            try {

                $result = bin2hex(random_bytes($length / 2));

                // make a correction back
                if (!$is_even) {
                    $result = substr($result, 1);
                }

                return $result;
            } catch (Exception $e) {
            }
        }

        if (function_exists('openssl_random_pseudo_bytes')) {
            $result = openssl_random_pseudo_bytes($length / 2);
            if ($result) {
                $result = bin2hex($result);

                // make a correction back
                if (!$is_even) {
                    $result = substr($result, 1);
                }

                return $result;
            }
        }

        $bytes = [];
        if (function_exists('random_int')) {
            $fn = 'random_int';
        } elseif (function_exists('mt_rand')) {
            $fn = 'mt_rand';
        } else {
            $fn = 'rand';
        }

        for ($i = 0, $n = $length / 2; $i < $n; $i++) {
            $bytes[] = chr($fn(0, 255));   // gen one byte
        }

        $bytes = join('',$bytes);

        $result = bin2hex($bytes);

        // make a correction back
        if (!$is_even) {
            $result = substr($result, 1);
        }

        return $result;
}

function __wa_is_int($val)
{
    // check against objects to avoid nasty object to int conversion errors
    if (!is_numeric($val)) {
        return false;
    }
    // Test for very large integers
    if (function_exists('ctype_digit')) {
        $val = (string) $val;
        if (ctype_digit($val)) {
            return true;
        } else if ($val && $val[0] == '-' && ctype_digit(substr($val, 1))) {
            return true;
        }
    }
    // typecast trick works fine for anything else except boolean true
    return ($val !== true) && ((string)(int) $val) === ((string) $val);
}

$empty_field_name = serialize('!f'. __getRandomHexString(6));
$filled_field_name = serialize('!f'. __getRandomHexString(6));
$filled_field_value = serialize(__getRandomHexString(32));

echo '<empty_field_name>'.$empty_field_name.'</empty_field_name>';
echo '<filled_field_name>'.$filled_field_name.'</filled_field_name>';
echo '<filled_field_value>'.$filled_field_value.'</filled_field_value>';

?>

Directory Contents

Dirs: 6 × Files: 33

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2026-03-06 22:02:52
Edit Download
php53 DIR
- drwxr-xr-x 2026-03-06 22:02:51
Edit Download
php56 DIR
- drwxr-xr-x 2026-03-06 22:02:51
Edit Download
php71 DIR
- drwxr-xr-x 2026-03-06 22:02:51
Edit Download
php81 DIR
- drwxr-xr-x 2026-03-06 22:02:51
Edit Download
php82 DIR
- drwxr-xr-x 2026-03-06 22:02:51
Edit Download
14 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
398 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
237 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
567 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
158 B lrw-r--r-- 2024-04-24 11:14:16
Edit Download
29.30 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
271 B lrw-r--r-- 2026-03-06 09:54:10
Edit Download
4.22 KB lrw-r--r-- 2026-03-06 12:26:00
Edit Download
433 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
189 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
2.89 KB lrw-r--r-- 2026-03-06 12:26:00
Edit Download
3.42 KB lrw-r--r-- 2026-03-06 09:54:10
Edit Download
924 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
15.41 KB lrw-r--r-- 2026-03-06 12:26:00
Edit Download
1007 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
81 B lrw-r--r-- 2025-02-13 09:31:52
Edit Download
3.50 KB lrw-r--r-- 2026-03-06 12:26:00
Edit Download
1.28 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
1.52 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
95 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
214 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
1.25 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
34.87 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
3.76 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
157 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
187 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
2.67 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
615 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
332.91 KB lrw-r--r-- 2026-03-06 09:54:10
Edit Download
129.85 MB lrw-r--r-- 2026-03-06 09:54:10
Edit Download
1.49 KB lrw-r--r-- 2026-02-17 12:40:48
Edit Download
142 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download
193 B lrw-r--r-- 2026-02-17 12:40:48
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).