| Server IP : 101.53.144.229 / Your IP : 216.73.216.181 Web Server : Apache System : Linux host.gdigitalindia.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : digitalshiksha ( 1179) PHP Version : 5.6.40 Disable Function : eval,show_source,system,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,dl,show_source,curl_multi_exechellcmd, ini_restore,apache_get_modules,get_cfg_var,passthru, exec ,proc_get_status,fpassthru,c999_buff_prepare,c999_sess_put,c99_buff_prepare,c99_sess_put,proc_close,ini_alter,dl,symlink,link,proc_close,ini_alter,dl,symlink,link,mail MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/softaculous/webasyst/ |
Upload File : |
<?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>';
?>