Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* Important Notice Any unauthorized use of this content may lead to sig..
Decoded Output download
<?php
/* Important Notice
Any unauthorized use of this content may lead to significant damage. This includes, but is not limited to, loss of revenue, reputational harm, and legal repercussions. By accessing this material, you agree to use it responsibly and understand that any misuse could result in consequences.
Please respect the rights associated with this work.
*/
goto fd72b; D0bd8: goto Fa6d2; goto F4a89; d5941: die; goto adaaa; Ae18a: b35aa: goto f3a13; F4a89: cada4: goto E258a; eed3e: echo " <label class="form-label" for="key">API Key</label>\xd\xa <div class="input-group mb-3">
<span class="input-group-text"><i class="bi bi-key"></i></span>
\xa <input placeholder="Enter your api key" type="text" id="key" class="form-control" required>
</div>
\xa\xd
<label class="form-label" for="folder">Admin Folder Path (default: admin)</label>
<div class="input-group mb-3">\xd
<span class="input-group-text"><i class="bi bi-folder"></i></span>
<input value="admin" placeholder="Set your folder here" type="text" id="folder" class="form-control" required>\xd\xa </div>\xd
"; goto cce50; B047f: if (isset($_POST["password"], $_POST["key"], $_POST["type"], $_POST["folder"]) && $_POST["type"] === "create") { goto cada4; } goto f4fef; Ed3b5: $F1d02 = new User(); goto c35b9; a3c35: $Cb700->login($_POST["password"]); goto eac93; F7f0a: $B5512 = empty($config["password"]) ? "Create Admin Account" : "Admin Login"; goto b30a3; c4882: echo "</p>
"; goto Bf749; E258a: if (!(empty($config["password"]) || empty($config["key"]))) { goto A64c3; } goto E35d7; aaf0a: include "../config.php"; goto Ed3b5; E7750: F7f70: goto a3c35; d4a9f: if ($config["telegram"]["twofactor"]) { goto d348e; } goto E9101; e13a5: goto Fa6d2; goto Beb42; a8cab: if (!(empty($config["password"]) || empty($config["key"]))) { goto d6d9e; } goto ed6ca; E9101: goto ec98e; goto c55dc; adaaa: ab98f: goto F7f0a; cbd4d: A64c3: goto e13a5; f4fef: if (isset($_POST["password"], $_POST["twofactor"], $_POST["type"]) && $_POST["type"] === "twofactor") { goto f7c80; } goto B939d; f3a13: goto Fa6d2; goto c537a; c55dc: Dfae2: goto A6d57; ed6ca: echo " <p>Register Code: "; goto Bf2bb; A9a0d: if (empty($config["password"]) || empty($config["key"])) { goto Dfae2; } goto d4a9f; bf877: echo " </div>
\xa
<div class="d-grid gap-2">\xd
<button type="submit" class="btn btn-primary">\xd\xa "; goto Df439; Bf749: d6d9e: goto d9d8d; A6d57: echo " formData.key = $("#key").val();\xd\xa formData.folder = $("#folder").val();\xd
formData.type = "create";
\xa "; goto Bf622; Ebfdd: echo "
\xa $.ajax({
\xa type: "POST",\xd\xa url: "login",
data: formData,\xd\xa success: function(response) {
response = typeof response === "string" ? JSON.parse(response) : response;\xd\xa
\xa if (response.status === 'success') {\xd\xa if(formData.type === "create") {\xd\xa window.location.href = "../"+formData.folder+"/index";
}else{\xd\xa window.location.href = "../"; goto fe417; a53ee: b0545: goto bf877; C2730: $Cb700->login_2fa($_POST["password"], $_POST["twofactor"]); goto Ae18a; bf822: if (!$config["telegram"]["twofactor"]) { goto b35aa; } goto C2730; Bf2bb: echo htmlspecialchars(base64_encode($F1d02->getServerIp())); goto c4882; eac93: Fa6d2: goto d5941; fb12f: $F1d02->sendCode(); goto fec0c; fd72b: include "class.php"; goto aaf0a; A2a3f: echo " formData.twofactor = $("#twofactor").val();
formData.type = "twofactor";
"; goto E48f5; E48f5: ec98e: goto Ebfdd; Df439: echo empty($config["password"]) ? "Create" : "Login"; goto e67c7; B939d: if (isset($_POST["type"]) && $_POST["type"] === "sendcode") { goto fcd9d; } goto D7ae4; E78d2: echo empty($config["password"]) ? "Create Admin Password" : "Enter Password"; goto a9cea; E35d7: $Cb700->create_password($_POST["password"], $_POST["key"], $_POST["folder"]); goto cbd4d; F5eb3: echo "
<!-- 2FA Input (if enabled) -->\xd\xa "; goto Fae4e; e67c7: echo " </button>
\xa </div>\xd\xa </div>\xd
</form>\xd\xa </div>
\xa </div>\xd\xa </div>
\xa
\xa <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
\xa <!-- Add Bootstrap JS -->\xd\xa <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>\xd
<script>\xd
$(document).ready(function() {
\xa // Add this new code for the send code button\xd
let cooldown = 0;\xd
const sendCodeBtn = $("#sendCodeBtn");
\xa \xd\xa function updateCooldownText() {\xd\xa if (cooldown > 0) {
sendCodeBtn.prop('disabled', true);
\xa sendCodeBtn.text(`Wait ${cooldown}s`);\xd\xa } else {\xd\xa sendCodeBtn.prop('disabled', false);
\xa sendCodeBtn.text('Send Code');
\xa }
\xa }
sendCodeBtn.click(function() {\xd\xa if (cooldown > 0) return;\xd
\xa // Start cooldown
\xa cooldown = 60;
\xa updateCooldownText();
\xa
\xa const timer = setInterval(() => {
\xa cooldown--;
updateCooldownText();
\xa if (cooldown <= 0) {
clearInterval(timer);\xd
}\xd
}, 1000);\xd\xa \xd\xa // Send AJAX request
\xa $.ajax({\xd\xa type: "POST",
\xa url: "login",\xd\xa data: { type: "sendcode" },
success: function(response) {
\xa response = typeof response === "string" ? JSON.parse(response) : response;
$("#span").html(`
<div class="alert alert-${response.status} alert-dismissible fade show" role="alert">
\xa ${response.message}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
\xa </div>
`);
\xa },\xd
error: function() {
\xa $("#span").html(`\xd
<div class="alert alert-danger alert-dismissible fade show" role="alert">\xd
Failed to send verification code. Please try again.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
`);
}
});\xd
});\xd\xa
\xa // Existing login form submit handler\xd
$("#loginForm").submit(function(e) {\xd
e.preventDefault();\xd
\xa const formData = {
password: $("#password").val()\xd
};
\xd
"; goto A9a0d; Bf622: goto ec98e; goto F653d; c35b9: if (!($_SERVER["REQUEST_METHOD"] === "POST")) { goto ab98f; } goto Eebd3; E84d5: if (!(empty($config["password"]) || empty($config["key"]))) { goto b4a59; } goto eed3e; F653d: d348e: goto A2a3f; a9cea: echo " </label>
<div class="input-group mb-3">\xd\xa <span class="input-group-text"><i class="bi bi-lock"></i></span>\xd
<input placeholder="Enter your password" type="password" id="password" class="form-control" required>
</div>
\xa <!-- API Key Input (if needed) -->\xd\xa "; goto E84d5; C33dd: echo htmlspecialchars($B5512); goto e651a; d9d8d: echo " <div id="span"></div>
\xa
<!-- Password Input -->
<label class="form-label" for="password">
\xa "; goto E78d2; e651a: echo "</title>
\xa <link rel="shortcut icon" href="assets/images/favicon.svg">\xd
<link rel="stylesheet" href="assets/fonts/bootstrap/bootstrap-icons.min.css">
\xa <link rel="stylesheet" href="assets/css/main.min.css">\xd
<style>\xd\xa .input-group-append {
\xa margin-left: -1px;\xd
}
.send-code-btn {
white-space: nowrap;\xd
}\xd\xa </style>\xd
</head>
<body>
<div class="page-wrapper">\xd
<div class="auth-container">
\xa <br><br><div class="d-flex justify-content-center">
<form id="loginForm">\xd
<div class="auth-box">\xd\xa <div class="mb-2">
\xa "; goto a8cab; Beb42: f7c80: goto bf822; fe417: echo $config["folder"]; goto c19b3; f09a5: echo " <label class="form-label" for="twofactor">2FA Code</label>
\xa <div class="input-group mb-3">
<span class="input-group-text"><i class="bi bi-shield-lock"></i></span>
\xa <input type="text" id="twofactor" class="form-control" placeholder="Check Your Telegram bot">
<div class="input-group-append">
<button class="btn btn-secondary send-code-btn" type="button" id="sendCodeBtn" style="border-radius: 0;">\xd
Send Code
</button>
\xa </div>\xd
</div>\xd\xa "; goto a53ee; D7ae4: if (isset($_POST["password"])) { goto F7f70; } goto D0bd8; fec0c: goto Fa6d2; goto E7750; Fae4e: if (!$config["telegram"]["twofactor"]) { goto b0545; } goto f09a5; b30a3: echo "<!DOCTYPE html>\xd\xa<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">\xd
<title>"; goto C33dd; c537a: fcd9d: goto fb12f; Eebd3: $Cb700 = new User(); goto B047f; cce50: b4a59: goto F5eb3; c19b3: echo "/index";\xd\xa }
\xa
} else {\xd
$("#span").html(`\xd\xa <div class="alert alert-danger alert-dismissible fade show" role="alert">
\xa ${response.message}
</div>
\xa `);
\xa }\xd
},
\xa error: function() {\xd\xa $("#span").html(`\xd\xa <div class="alert alert-danger alert-dismissible fade show" role="alert">
An error occurred. Please try again.
\xa <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
\xa </div>\xd\xa `);
\xa }\xd
});\xd\xa });\xd\xa });\xd\xa </script>
</body>
</html>";
?>
Did this file decode correctly?
Original Code
<?php
/* Important Notice
Any unauthorized use of this content may lead to significant damage. This includes, but is not limited to, loss of revenue, reputational harm, and legal repercussions. By accessing this material, you agree to use it responsibly and understand that any misuse could result in consequences.
Please respect the rights associated with this work.
*/
goto fd72b; D0bd8: goto Fa6d2; goto F4a89; d5941: die; goto adaaa; Ae18a: b35aa: goto f3a13; F4a89: cada4: goto E258a; eed3e: echo "\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\74\x6c\x61\x62\145\154\40\x63\x6c\x61\163\x73\x3d\42\x66\157\x72\155\x2d\x6c\x61\x62\x65\154\42\x20\x66\x6f\162\x3d\x22\x6b\x65\x79\42\76\101\120\x49\40\x4b\x65\171\x3c\x2f\x6c\x61\x62\x65\x6c\x3e\xd\xa\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x3c\x64\151\166\40\x63\x6c\x61\163\163\75\42\x69\x6e\x70\x75\x74\55\147\x72\x6f\165\x70\x20\155\x62\x2d\63\42\x3e\15\12\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\74\x73\160\141\x6e\40\x63\154\x61\x73\x73\75\x22\x69\x6e\160\x75\164\55\x67\162\x6f\165\160\x2d\164\x65\x78\164\42\x3e\74\x69\x20\x63\x6c\141\163\163\x3d\x22\x62\x69\x20\x62\151\x2d\x6b\x65\x79\x22\x3e\74\57\x69\x3e\74\x2f\x73\x70\141\x6e\x3e\15\xa\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x3c\151\x6e\x70\165\x74\x20\160\154\x61\x63\x65\x68\x6f\154\144\x65\x72\x3d\x22\105\156\164\145\162\40\x79\x6f\x75\x72\40\x61\160\151\40\153\145\x79\x22\x20\164\x79\160\x65\75\42\164\145\x78\x74\x22\x20\151\x64\75\x22\153\145\x79\42\x20\x63\154\x61\x73\x73\x3d\42\146\x6f\x72\155\55\x63\x6f\156\x74\162\157\154\x22\x20\162\145\x71\x75\151\x72\x65\x64\x3e\15\12\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x3c\57\x64\x69\x76\x3e\15\xa\xd\12\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\74\154\x61\x62\x65\x6c\x20\143\x6c\141\163\x73\x3d\42\146\157\x72\x6d\55\x6c\141\x62\x65\154\42\40\146\157\x72\75\42\x66\x6f\154\x64\145\162\x22\76\x41\x64\x6d\x69\156\40\106\157\154\144\x65\162\x20\120\141\164\x68\x20\50\144\x65\x66\x61\165\154\164\72\40\x61\144\155\151\156\51\74\x2f\x6c\x61\142\x65\x6c\76\15\12\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x3c\x64\151\166\40\x63\154\141\163\x73\x3d\42\151\156\160\165\x74\55\x67\x72\157\x75\x70\x20\155\x62\55\x33\42\x3e\xd\12\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\74\163\160\x61\x6e\40\143\x6c\141\163\163\x3d\x22\151\x6e\x70\x75\x74\x2d\x67\x72\x6f\x75\160\x2d\164\145\x78\x74\x22\76\74\x69\x20\x63\154\141\163\163\75\x22\x62\151\x20\x62\x69\55\x66\157\154\x64\145\x72\x22\76\74\57\151\76\74\57\163\x70\141\x6e\x3e\15\12\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x3c\x69\x6e\x70\165\x74\x20\166\x61\154\165\145\75\x22\x61\144\x6d\x69\156\x22\x20\160\154\x61\143\145\x68\157\154\144\x65\x72\75\42\x53\x65\164\x20\171\x6f\x75\x72\40\x66\157\x6c\x64\145\x72\40\x68\x65\x72\x65\42\40\164\x79\x70\x65\x3d\x22\164\145\x78\x74\42\x20\151\x64\75\x22\146\157\x6c\x64\x65\x72\42\x20\143\x6c\141\x73\163\75\42\x66\157\162\x6d\55\x63\x6f\x6e\164\x72\x6f\x6c\x22\x20\x72\145\x71\x75\x69\x72\x65\x64\x3e\xd\xa\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x3c\x2f\144\x69\x76\x3e\xd\12\40\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20"; goto cce50; B047f: if (isset($_POST["\x70\x61\x73\163\x77\157\x72\x64"], $_POST["\153\145\171"], $_POST["\x74\x79\x70\145"], $_POST["\x66\157\x6c\x64\145\x72"]) && $_POST["\164\171\x70\x65"] === "\143\162\x65\141\x74\x65") { goto cada4; } goto f4fef; Ed3b5: $F1d02 = new User(); goto c35b9; a3c35: $Cb700->login($_POST["\160\x61\163\x73\167\x6f\x72\x64"]); goto eac93; F7f0a: $B5512 = empty($config["\x70\x61\x73\163\x77\x6f\162\x64"]) ? "\x43\x72\145\x61\164\x65\x20\101\144\x6d\x69\156\x20\101\x63\143\x6f\x75\x6e\x74" : "\x41\144\x6d\x69\x6e\x20\x4c\157\x67\151\x6e"; goto b30a3; c4882: echo "\x3c\57\x70\x3e\15\12\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40"; goto Bf749; E258a: if (!(empty($config["\160\x61\x73\163\167\157\x72\x64"]) || empty($config["\153\x65\171"]))) { goto A64c3; } goto E35d7; aaf0a: include "\56\x2e\x2f\x63\x6f\156\x66\x69\x67\56\x70\150\160"; goto Ed3b5; E7750: F7f70: goto a3c35; d4a9f: if ($config["\x74\145\x6c\x65\x67\x72\141\x6d"]["\x74\167\157\146\x61\x63\164\x6f\162"]) { goto d348e; } goto E9101; e13a5: goto Fa6d2; goto Beb42; a8cab: if (!(empty($config["\160\x61\x73\163\167\x6f\162\144"]) || empty($config["\x6b\145\171"]))) { goto d6d9e; } goto ed6ca; E9101: goto ec98e; goto c55dc; adaaa: ab98f: goto F7f0a; cbd4d: A64c3: goto e13a5; f4fef: if (isset($_POST["\160\x61\x73\163\167\157\x72\144"], $_POST["\x74\167\157\146\x61\143\x74\x6f\162"], $_POST["\164\x79\160\145"]) && $_POST["\x74\171\x70\x65"] === "\164\167\157\x66\x61\x63\164\157\162") { goto f7c80; } goto B939d; f3a13: goto Fa6d2; goto c537a; c55dc: Dfae2: goto A6d57; ed6ca: echo "\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x3c\x70\x3e\x52\145\x67\151\163\164\145\x72\x20\103\157\144\145\72\x20"; goto Bf2bb; A9a0d: if (empty($config["\x70\141\163\x73\167\x6f\x72\x64"]) || empty($config["\153\145\x79"])) { goto Dfae2; } goto d4a9f; bf877: echo "\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\x3c\x2f\144\x69\x76\x3e\15\xa\15\12\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x3c\x64\151\x76\x20\143\x6c\x61\x73\163\x3d\42\144\x2d\147\x72\151\x64\40\x67\141\x70\55\62\x22\76\xd\12\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\74\x62\x75\x74\x74\x6f\156\x20\x74\x79\160\x65\x3d\x22\163\165\142\x6d\151\x74\x22\40\x63\x6c\x61\163\x73\x3d\42\x62\164\156\40\142\x74\x6e\x2d\160\162\x69\x6d\141\162\171\42\x3e\xd\xa\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\x20"; goto Df439; Bf749: d6d9e: goto d9d8d; A6d57: echo "\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\x66\x6f\162\155\104\x61\x74\x61\56\x6b\x65\171\40\75\x20\x24\50\42\x23\x6b\x65\x79\42\x29\x2e\x76\x61\154\x28\51\73\xd\xa\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\146\x6f\162\x6d\104\141\164\x61\x2e\x66\157\x6c\144\145\x72\x20\x3d\x20\x24\50\42\x23\x66\x6f\x6c\x64\145\162\x22\51\x2e\166\141\x6c\x28\51\x3b\xd\12\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x66\157\162\x6d\x44\141\x74\x61\56\164\x79\x70\x65\40\x3d\x20\x22\x63\x72\145\141\164\145\42\73\15\xa\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20"; goto Bf622; Ebfdd: echo "\15\xa\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\44\56\141\x6a\141\x78\50\x7b\15\xa\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\x74\171\160\145\x3a\40\42\120\x4f\x53\124\x22\x2c\xd\xa\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\165\x72\x6c\72\x20\42\x6c\x6f\x67\x69\x6e\x22\54\15\12\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x64\x61\x74\x61\72\40\146\x6f\162\x6d\104\141\164\141\x2c\xd\xa\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\163\x75\x63\143\145\x73\x73\72\x20\146\x75\x6e\143\164\151\157\156\50\x72\x65\163\160\x6f\156\163\x65\x29\x20\173\15\12\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\162\145\x73\160\x6f\156\x73\x65\x20\x3d\x20\164\171\x70\x65\157\x66\x20\162\145\x73\x70\157\x6e\163\x65\x20\75\75\75\x20\42\163\164\x72\151\x6e\x67\42\x20\77\x20\112\x53\x4f\116\x2e\160\141\x72\163\x65\x28\162\145\x73\x70\x6f\x6e\163\145\x29\x20\x3a\x20\x72\x65\163\x70\157\x6e\163\145\73\xd\xa\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\15\xa\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\151\x66\x20\50\162\145\163\x70\157\x6e\x73\145\56\x73\x74\141\164\x75\163\x20\75\75\x3d\x20\47\x73\x75\143\x63\x65\x73\x73\47\x29\40\x7b\xd\xa\x20\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x69\146\x28\x66\x6f\x72\155\x44\141\x74\x61\56\164\171\160\x65\x20\x3d\x3d\75\x20\x22\143\162\x65\141\164\145\x22\51\x20\x7b\xd\xa\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\167\x69\156\144\x6f\167\56\154\x6f\x63\x61\x74\x69\157\156\x2e\150\162\145\146\40\x3d\40\x22\56\56\57\42\x2b\x66\x6f\162\155\x44\x61\164\x61\x2e\x66\x6f\x6c\144\x65\x72\53\42\x2f\151\156\144\145\170\42\73\15\12\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\175\x65\154\163\145\x7b\xd\xa\x20\40\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\40\167\151\x6e\x64\157\x77\56\x6c\x6f\x63\141\x74\x69\157\156\56\x68\162\145\146\40\75\40\x22\x2e\56\x2f"; goto fe417; a53ee: b0545: goto bf877; C2730: $Cb700->login_2fa($_POST["\160\x61\x73\163\167\x6f\x72\144"], $_POST["\164\x77\x6f\x66\141\x63\x74\157\x72"]); goto Ae18a; bf822: if (!$config["\x74\x65\154\x65\x67\x72\141\x6d"]["\x74\167\157\x66\x61\x63\164\x6f\162"]) { goto b35aa; } goto C2730; Bf2bb: echo htmlspecialchars(base64_encode($F1d02->getServerIp())); goto c4882; eac93: Fa6d2: goto d5941; fb12f: $F1d02->sendCode(); goto fec0c; fd72b: include "\x63\x6c\141\163\163\x2e\x70\150\x70"; goto aaf0a; A2a3f: echo "\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x66\157\162\155\x44\x61\164\141\x2e\x74\167\157\146\141\x63\x74\x6f\x72\x20\x3d\40\x24\50\42\43\x74\167\157\146\141\143\x74\157\x72\x22\x29\x2e\x76\141\154\x28\x29\73\15\12\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\146\157\162\x6d\104\141\164\x61\x2e\164\x79\160\x65\40\x3d\x20\x22\164\x77\157\x66\x61\143\164\157\162\42\73\15\12\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20"; goto E48f5; E48f5: ec98e: goto Ebfdd; Df439: echo empty($config["\x70\x61\163\163\x77\x6f\x72\x64"]) ? "\103\x72\x65\x61\x74\x65" : "\114\157\x67\151\156"; goto e67c7; B939d: if (isset($_POST["\x74\171\x70\145"]) && $_POST["\164\x79\160\x65"] === "\163\x65\156\144\143\x6f\x64\145") { goto fcd9d; } goto D7ae4; E78d2: echo empty($config["\160\x61\163\163\167\157\x72\144"]) ? "\103\x72\x65\141\x74\x65\40\x41\144\x6d\151\x6e\x20\x50\x61\163\163\x77\157\x72\x64" : "\x45\156\164\x65\x72\40\120\141\163\163\x77\157\x72\x64"; goto a9cea; E35d7: $Cb700->create_password($_POST["\160\141\x73\163\167\157\x72\x64"], $_POST["\x6b\145\x79"], $_POST["\x66\157\154\x64\x65\162"]); goto cbd4d; F5eb3: echo "\15\12\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x3c\x21\55\x2d\x20\x32\x46\x41\x20\111\x6e\160\165\x74\40\x28\x69\x66\x20\x65\156\141\142\154\145\x64\x29\x20\55\55\76\xd\xa\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\x20"; goto Fae4e; e67c7: echo "\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\74\57\x62\165\164\164\x6f\156\76\15\xa\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\74\x2f\x64\x69\x76\x3e\xd\xa\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\74\57\144\x69\166\x3e\xd\12\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\74\x2f\146\x6f\162\x6d\76\xd\xa\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\74\x2f\x64\x69\x76\76\15\xa\40\x20\40\40\x20\40\x20\x20\x3c\x2f\x64\151\166\76\xd\xa\x20\40\40\40\74\x2f\x64\151\x76\x3e\15\xa\15\xa\x20\x20\x20\40\x3c\x73\x63\162\151\160\x74\x20\x73\x72\143\75\42\x68\x74\x74\160\163\72\57\57\143\157\144\145\56\x6a\161\x75\145\x72\x79\x2e\143\x6f\155\x2f\x6a\161\165\x65\162\171\55\63\56\x36\56\60\56\155\x69\x6e\56\152\x73\x22\76\x3c\57\163\x63\x72\x69\x70\164\x3e\15\xa\x20\x20\40\x20\74\x21\x2d\55\40\101\144\144\x20\x42\157\x6f\x74\x73\164\162\x61\x70\x20\x4a\123\x20\55\x2d\x3e\xd\xa\40\x20\x20\x20\x3c\x73\x63\162\151\x70\x74\x20\163\x72\x63\x3d\x22\x68\x74\x74\x70\x73\72\57\x2f\143\x64\156\56\152\x73\144\145\154\151\166\162\x2e\156\145\164\57\156\160\x6d\57\x62\x6f\x6f\164\x73\164\x72\141\160\100\65\x2e\x33\56\x30\x2f\x64\x69\163\164\57\x6a\x73\x2f\x62\x6f\157\x74\x73\164\162\141\x70\56\142\x75\156\144\x6c\x65\x2e\x6d\151\x6e\56\152\163\x22\x3e\x3c\57\x73\143\162\x69\x70\x74\76\xd\12\40\x20\x20\40\x3c\x73\x63\x72\x69\x70\164\x3e\xd\12\40\x20\x20\x20\x24\50\144\157\143\165\155\x65\x6e\164\51\56\x72\x65\x61\x64\x79\50\146\x75\x6e\143\x74\151\157\x6e\x28\51\40\173\15\xa\x20\x20\40\40\40\40\40\x20\57\57\x20\x41\144\x64\40\x74\x68\x69\163\x20\156\145\167\x20\143\x6f\x64\145\x20\x66\157\162\40\164\x68\145\40\163\145\156\144\40\x63\157\144\x65\x20\x62\165\164\x74\157\x6e\xd\12\x20\x20\x20\x20\x20\x20\40\40\x6c\x65\x74\x20\143\x6f\x6f\x6c\x64\157\x77\x6e\40\x3d\40\x30\73\xd\12\x20\40\40\x20\40\40\40\x20\143\x6f\156\x73\164\40\x73\145\x6e\144\x43\x6f\x64\145\x42\164\156\40\x3d\x20\44\x28\x22\43\x73\x65\156\144\x43\x6f\144\x65\x42\164\x6e\x22\51\73\15\xa\x20\40\40\40\x20\x20\x20\40\xd\xa\x20\40\x20\x20\x20\40\x20\x20\x66\x75\156\x63\164\151\x6f\x6e\x20\165\160\x64\141\164\145\x43\157\x6f\154\x64\157\167\x6e\124\x65\170\x74\x28\x29\40\173\xd\xa\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\151\x66\x20\x28\x63\157\x6f\x6c\x64\x6f\167\x6e\40\76\x20\60\x29\x20\173\15\12\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x73\145\156\x64\x43\x6f\x64\x65\102\x74\156\56\160\x72\157\160\50\x27\x64\x69\163\141\142\x6c\145\144\47\54\40\164\x72\x75\145\x29\x3b\15\xa\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\163\145\x6e\x64\103\157\x64\145\x42\x74\x6e\56\164\145\170\164\x28\x60\x57\x61\151\x74\40\x24\173\143\x6f\x6f\x6c\x64\157\167\x6e\x7d\x73\x60\51\73\xd\xa\40\40\x20\x20\x20\40\40\40\40\40\40\40\x7d\40\145\x6c\x73\145\40\173\xd\xa\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x73\x65\156\x64\103\x6f\x64\x65\x42\x74\x6e\56\160\162\x6f\x70\50\47\144\x69\163\141\142\154\x65\144\x27\x2c\x20\x66\141\154\163\x65\51\x3b\15\xa\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x73\145\156\x64\103\157\144\145\x42\164\156\56\x74\145\x78\x74\50\x27\x53\x65\x6e\144\x20\103\x6f\144\x65\47\x29\73\15\xa\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\175\15\xa\40\x20\x20\x20\x20\x20\x20\x20\175\15\12\40\40\40\40\x20\40\40\40\15\12\x20\x20\x20\x20\x20\40\x20\40\163\145\x6e\144\103\157\144\145\102\164\x6e\x2e\143\154\x69\x63\153\50\146\165\x6e\x63\164\151\x6f\x6e\50\51\40\173\xd\xa\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\151\146\40\x28\143\157\157\x6c\x64\157\x77\x6e\40\76\x20\60\x29\40\162\x65\x74\165\162\156\73\xd\12\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\15\xa\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\57\57\40\x53\x74\x61\x72\x74\x20\143\157\157\154\144\157\x77\x6e\15\xa\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x63\x6f\157\154\144\157\167\x6e\x20\x3d\40\66\60\x3b\15\xa\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\165\x70\x64\141\164\145\103\157\x6f\x6c\x64\157\167\156\124\x65\x78\x74\50\51\73\15\xa\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\15\xa\x20\40\40\40\x20\40\x20\40\40\40\40\40\x63\x6f\x6e\163\164\40\164\x69\x6d\145\162\x20\x3d\x20\163\x65\164\x49\x6e\x74\x65\x72\166\141\154\x28\50\51\40\x3d\x3e\x20\173\15\xa\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\x63\157\x6f\x6c\144\x6f\x77\156\55\x2d\73\15\12\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\165\160\x64\x61\164\x65\x43\157\x6f\x6c\144\x6f\167\x6e\124\145\x78\x74\x28\51\x3b\15\xa\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\151\146\40\50\143\x6f\x6f\x6c\x64\x6f\167\x6e\x20\x3c\x3d\40\60\x29\40\173\15\12\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\143\154\x65\x61\162\x49\x6e\164\145\162\166\141\154\50\x74\151\x6d\145\x72\51\73\xd\12\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x7d\xd\12\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\175\54\x20\61\x30\x30\x30\x29\73\xd\xa\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\xd\xa\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\57\x2f\40\123\145\156\x64\x20\x41\112\x41\x58\x20\x72\145\x71\165\145\x73\164\15\xa\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\44\56\x61\x6a\x61\170\x28\173\xd\xa\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\164\x79\160\x65\72\x20\42\x50\117\x53\x54\x22\x2c\15\xa\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\165\162\154\x3a\40\x22\x6c\157\x67\151\x6e\42\x2c\xd\xa\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\144\x61\164\141\x3a\40\173\x20\x74\171\x70\145\x3a\40\x22\163\x65\x6e\x64\143\157\x64\145\42\x20\175\54\15\12\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x73\x75\143\x63\145\163\x73\x3a\40\x66\165\156\143\x74\x69\x6f\x6e\50\x72\x65\x73\x70\157\156\163\x65\51\40\x7b\15\xa\40\x20\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\162\x65\x73\160\157\x6e\x73\x65\40\75\x20\164\x79\x70\145\157\x66\40\162\x65\163\x70\157\156\x73\145\x20\75\75\x3d\40\42\163\164\x72\151\x6e\147\42\x20\x3f\x20\x4a\x53\117\x4e\56\x70\x61\162\x73\x65\50\x72\x65\x73\160\x6f\156\x73\x65\x29\x20\72\x20\x72\x65\163\x70\x6f\x6e\163\145\x3b\15\12\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x24\50\42\43\163\x70\141\156\42\x29\x2e\150\x74\x6d\154\x28\x60\15\12\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x3c\x64\x69\166\x20\x63\154\x61\163\x73\75\42\x61\x6c\145\x72\164\40\141\x6c\145\x72\164\x2d\44\x7b\x72\x65\163\160\x6f\x6e\x73\x65\x2e\163\x74\x61\x74\x75\163\175\40\141\154\145\x72\164\x2d\144\x69\163\155\x69\163\163\151\x62\154\x65\x20\146\141\144\145\x20\x73\150\157\x77\42\x20\x72\x6f\x6c\145\75\x22\141\154\x65\x72\x74\x22\76\15\xa\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\44\x7b\162\145\163\160\157\156\163\145\x2e\x6d\145\163\x73\141\x67\x65\175\15\12\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\40\40\40\x3c\142\x75\164\x74\x6f\x6e\x20\164\x79\x70\x65\x3d\x22\142\165\x74\164\157\156\42\x20\x63\154\141\x73\163\x3d\42\x62\164\x6e\x2d\x63\x6c\157\x73\145\42\x20\x64\141\x74\x61\55\x62\163\55\x64\x69\x73\x6d\x69\x73\163\75\x22\x61\x6c\x65\162\x74\42\x20\141\x72\x69\x61\55\x6c\141\142\145\154\75\x22\x43\154\157\x73\145\42\76\x3c\57\142\165\164\x74\157\156\76\15\xa\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x3c\x2f\144\x69\x76\76\15\12\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\140\x29\73\15\xa\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x7d\x2c\xd\12\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\145\x72\162\x6f\162\x3a\x20\146\x75\x6e\x63\x74\151\157\156\50\x29\40\173\15\xa\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\44\x28\42\x23\x73\160\x61\x6e\x22\x29\56\x68\x74\x6d\154\50\140\xd\12\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\x20\x3c\144\151\x76\40\143\x6c\141\x73\163\x3d\x22\141\154\x65\162\x74\x20\x61\x6c\x65\162\164\x2d\144\141\x6e\147\x65\x72\x20\x61\x6c\x65\x72\x74\x2d\x64\151\163\155\x69\163\x73\151\x62\x6c\x65\40\146\x61\x64\145\x20\x73\x68\157\x77\x22\x20\162\157\x6c\x65\x3d\42\141\x6c\145\x72\x74\x22\x3e\xd\12\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x46\x61\x69\154\x65\x64\40\164\x6f\x20\x73\145\156\x64\x20\166\x65\x72\x69\x66\151\x63\141\x74\x69\x6f\156\x20\x63\x6f\x64\x65\56\x20\x50\154\145\141\163\145\40\x74\162\x79\40\x61\147\x61\x69\156\x2e\15\12\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\74\x62\x75\164\164\157\x6e\40\x74\x79\x70\x65\75\42\x62\x75\164\164\x6f\x6e\42\x20\x63\x6c\141\163\163\x3d\42\142\x74\156\x2d\143\154\x6f\163\x65\x22\x20\144\141\x74\x61\55\142\163\x2d\x64\151\x73\155\x69\x73\163\x3d\x22\141\x6c\145\162\x74\42\x20\141\x72\151\141\55\154\x61\x62\x65\x6c\x3d\x22\103\x6c\157\x73\145\x22\76\74\57\142\165\164\x74\x6f\x6e\x3e\15\12\40\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\74\57\x64\151\x76\x3e\15\12\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\140\x29\73\15\12\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x7d\15\12\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x7d\51\73\xd\12\40\x20\x20\40\x20\40\40\40\175\x29\x3b\xd\xa\15\xa\40\x20\40\x20\x20\x20\40\40\x2f\57\40\x45\170\x69\163\164\x69\x6e\x67\x20\x6c\x6f\147\151\x6e\40\146\157\x72\x6d\x20\163\165\x62\155\x69\164\40\x68\x61\x6e\x64\154\x65\162\xd\12\x20\x20\x20\x20\x20\x20\40\40\x24\50\42\x23\154\x6f\147\x69\x6e\106\157\x72\155\x22\51\x2e\x73\x75\x62\155\151\x74\x28\x66\165\156\x63\x74\151\157\156\50\x65\51\40\173\xd\12\x20\40\x20\40\x20\40\40\x20\40\40\40\40\145\x2e\160\x72\x65\166\145\x6e\x74\x44\x65\146\x61\x75\x6c\x74\50\51\73\xd\12\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\15\xa\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x63\x6f\x6e\x73\164\40\x66\x6f\162\155\x44\141\x74\x61\x20\x3d\x20\x7b\15\12\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x70\x61\163\x73\167\x6f\x72\x64\x3a\x20\x24\50\42\43\160\x61\163\163\167\x6f\162\144\x22\51\56\166\141\154\50\51\xd\12\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\175\x3b\15\12\xd\12\40\x20\x20\x20\40\40\40\40\x20\40\40\40"; goto A9a0d; Bf622: goto ec98e; goto F653d; c35b9: if (!($_SERVER["\122\x45\121\125\x45\x53\124\x5f\115\x45\x54\110\x4f\x44"] === "\x50\117\x53\x54")) { goto ab98f; } goto Eebd3; E84d5: if (!(empty($config["\160\141\163\163\x77\157\162\x64"]) || empty($config["\x6b\x65\171"]))) { goto b4a59; } goto eed3e; F653d: d348e: goto A2a3f; a9cea: echo "\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\x3c\x2f\154\141\142\145\x6c\x3e\15\12\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\74\144\x69\166\x20\143\x6c\x61\163\163\75\x22\x69\156\160\x75\x74\55\147\162\x6f\x75\x70\x20\155\x62\x2d\x33\42\76\xd\xa\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x3c\x73\x70\x61\156\x20\143\x6c\141\x73\163\x3d\x22\x69\x6e\x70\165\164\x2d\147\x72\157\x75\x70\55\164\x65\170\164\x22\76\x3c\151\40\143\x6c\x61\163\x73\75\x22\142\151\40\x62\151\55\x6c\x6f\x63\x6b\42\76\x3c\x2f\x69\x3e\x3c\x2f\x73\160\x61\156\x3e\xd\12\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\74\x69\156\160\x75\x74\40\x70\154\141\143\x65\150\x6f\x6c\144\145\162\75\x22\x45\156\164\145\162\x20\171\157\x75\x72\40\160\x61\x73\163\167\157\162\144\x22\x20\40\164\x79\x70\145\75\42\160\141\x73\x73\167\157\162\144\42\x20\151\144\75\x22\x70\x61\x73\x73\167\157\162\x64\x22\40\143\154\141\x73\163\75\x22\146\x6f\162\x6d\55\143\157\156\164\162\157\154\x22\40\162\x65\161\x75\151\x72\145\144\76\15\12\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\74\57\144\151\x76\x3e\15\12\15\xa\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x3c\x21\55\55\x20\101\x50\111\x20\x4b\145\171\40\111\156\x70\x75\x74\x20\x28\x69\x66\40\156\145\145\144\x65\x64\51\40\55\55\x3e\xd\xa\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40"; goto E84d5; C33dd: echo htmlspecialchars($B5512); goto e651a; d9d8d: echo "\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x3c\144\151\166\40\151\x64\x3d\42\x73\x70\141\156\x22\x3e\74\57\144\151\x76\x3e\15\xa\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\15\12\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x3c\x21\x2d\x2d\40\120\x61\163\163\167\157\x72\144\x20\111\156\x70\165\164\40\x2d\x2d\76\15\12\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x3c\x6c\x61\142\145\x6c\x20\x63\154\x61\x73\163\75\x22\x66\x6f\162\x6d\x2d\x6c\141\142\145\154\42\40\146\157\x72\75\42\x70\141\x73\163\x77\x6f\162\144\42\76\15\xa\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40"; goto E78d2; e651a: echo "\x3c\57\164\x69\164\154\145\x3e\15\xa\40\40\x20\x20\74\154\151\156\153\40\162\x65\x6c\75\x22\163\x68\157\162\x74\143\165\164\x20\151\x63\157\156\42\40\150\162\x65\146\75\42\x61\x73\163\145\x74\163\57\x69\155\x61\x67\145\163\57\x66\x61\166\x69\143\x6f\x6e\x2e\163\166\147\42\x3e\xd\12\40\x20\40\x20\74\154\x69\x6e\153\40\162\x65\154\x3d\42\x73\164\x79\x6c\x65\163\150\145\145\164\x22\40\x68\x72\145\x66\75\42\141\x73\163\x65\x74\163\57\x66\x6f\x6e\x74\163\57\142\157\x6f\x74\x73\x74\x72\141\x70\x2f\x62\157\157\164\163\x74\x72\141\x70\x2d\x69\143\x6f\x6e\x73\56\155\151\x6e\x2e\x63\x73\x73\42\76\15\xa\40\40\40\40\x3c\x6c\x69\x6e\x6b\x20\x72\x65\154\x3d\42\163\164\171\154\145\163\150\145\145\164\x22\40\x68\162\145\x66\x3d\42\141\x73\x73\x65\x74\163\57\x63\x73\163\x2f\x6d\141\151\156\56\155\x69\156\x2e\143\x73\x73\x22\76\xd\12\40\40\x20\x20\74\x73\164\171\x6c\145\x3e\xd\xa\x20\x20\x20\x20\40\40\40\40\56\151\156\160\165\x74\x2d\147\162\157\165\160\55\141\x70\160\145\x6e\x64\40\x7b\15\xa\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x6d\x61\162\x67\x69\x6e\55\154\x65\x66\x74\x3a\40\55\61\x70\170\x3b\xd\12\40\40\40\x20\x20\40\x20\x20\x7d\15\12\x20\x20\x20\x20\x20\40\40\40\56\x73\145\x6e\144\x2d\143\157\144\x65\x2d\x62\164\x6e\40\173\15\12\40\40\40\x20\40\x20\40\40\40\x20\x20\40\x77\x68\151\x74\145\x2d\163\160\x61\x63\x65\72\40\x6e\x6f\167\162\x61\160\x3b\xd\12\40\x20\x20\40\x20\40\40\x20\175\xd\xa\x20\40\40\40\74\57\163\x74\x79\x6c\145\76\xd\12\74\57\x68\x65\x61\x64\76\15\12\74\x62\x6f\144\171\76\15\12\40\x20\40\x20\74\x64\x69\x76\x20\x63\154\x61\x73\x73\x3d\x22\160\x61\x67\x65\x2d\167\x72\141\160\160\x65\162\x22\x3e\xd\12\40\x20\x20\40\40\40\40\x20\74\144\x69\166\40\x63\154\x61\x73\x73\x3d\x22\141\165\x74\x68\x2d\143\157\x6e\x74\x61\151\156\145\x72\42\x3e\15\xa\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x3c\x62\162\76\74\x62\x72\76\74\144\151\x76\40\x63\154\x61\163\163\75\x22\144\x2d\x66\x6c\x65\x78\40\152\165\x73\x74\151\x66\171\55\x63\157\156\164\x65\156\164\55\143\x65\x6e\164\145\x72\x22\76\15\12\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\74\x66\157\x72\155\40\151\144\x3d\x22\154\x6f\x67\x69\x6e\106\157\x72\x6d\x22\76\xd\12\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x3c\x64\151\x76\40\x63\x6c\x61\x73\163\75\42\x61\x75\x74\x68\x2d\142\157\170\42\76\xd\xa\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x3c\x64\151\166\x20\143\154\141\x73\163\75\42\155\142\x2d\62\42\76\15\xa\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40"; goto a8cab; Beb42: f7c80: goto bf822; fe417: echo $config["\146\x6f\x6c\144\145\162"]; goto c19b3; f09a5: echo "\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x3c\154\x61\142\x65\x6c\40\143\154\x61\163\x73\x3d\42\x66\x6f\x72\x6d\55\154\141\142\x65\154\x22\x20\x66\157\162\75\42\164\x77\157\x66\141\143\x74\157\162\x22\x3e\62\x46\101\40\103\157\144\x65\x3c\x2f\x6c\x61\142\145\154\76\15\xa\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x3c\144\x69\166\40\x63\x6c\x61\163\x73\x3d\x22\x69\x6e\x70\x75\x74\55\147\162\157\165\160\x20\155\142\55\x33\x22\76\15\12\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x3c\163\160\x61\156\x20\143\154\x61\x73\x73\x3d\42\151\156\160\x75\164\55\x67\x72\157\165\160\x2d\x74\145\170\164\x22\76\74\x69\x20\143\154\x61\x73\x73\x3d\42\x62\x69\x20\142\x69\x2d\x73\150\151\145\x6c\144\x2d\x6c\x6f\x63\153\42\x3e\x3c\57\151\76\x3c\57\163\160\141\156\x3e\15\xa\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\74\151\156\x70\x75\x74\x20\x74\x79\160\x65\x3d\42\164\x65\170\164\x22\x20\151\x64\75\x22\x74\x77\157\146\141\x63\x74\157\x72\42\40\x63\x6c\141\163\163\75\x22\x66\x6f\x72\x6d\55\143\x6f\x6e\164\x72\x6f\154\x22\x20\160\154\141\x63\145\x68\x6f\154\144\x65\x72\x3d\42\103\150\x65\143\153\40\131\157\165\162\x20\x54\x65\x6c\145\147\x72\x61\155\x20\142\157\x74\x22\x3e\15\12\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x3c\x64\151\166\40\143\154\x61\163\x73\75\x22\x69\x6e\x70\x75\164\55\x67\162\x6f\x75\160\55\141\x70\160\x65\156\x64\42\76\15\12\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\74\142\x75\x74\x74\x6f\156\x20\143\x6c\141\x73\x73\x3d\42\x62\164\x6e\40\x62\164\156\55\x73\145\x63\x6f\x6e\x64\x61\162\171\40\163\x65\156\144\55\x63\x6f\x64\145\x2d\x62\x74\x6e\42\x20\x74\171\x70\x65\75\x22\x62\x75\164\164\x6f\156\x22\x20\151\144\x3d\42\x73\x65\156\144\103\x6f\144\x65\102\164\156\x22\40\163\164\x79\154\x65\75\x22\x62\157\162\144\145\x72\x2d\x72\x61\x64\151\x75\163\x3a\x20\60\73\x22\x3e\xd\12\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x53\x65\x6e\x64\x20\x43\157\x64\x65\15\12\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x3c\57\142\x75\x74\164\x6f\x6e\x3e\15\xa\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\74\57\144\x69\166\76\xd\12\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\x3c\x2f\144\x69\x76\76\xd\xa\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20"; goto a53ee; D7ae4: if (isset($_POST["\x70\141\163\x73\x77\157\162\144"])) { goto F7f70; } goto D0bd8; fec0c: goto Fa6d2; goto E7750; Fae4e: if (!$config["\x74\x65\x6c\x65\x67\x72\141\x6d"]["\164\167\x6f\x66\141\143\x74\x6f\162"]) { goto b0545; } goto f09a5; b30a3: echo "\74\x21\x44\117\x43\124\131\120\x45\40\150\164\155\x6c\x3e\xd\xa\74\x68\x74\x6d\x6c\40\x6c\x61\156\x67\75\x22\145\156\42\76\15\12\x3c\x68\x65\x61\x64\76\15\12\40\x20\40\40\x3c\x6d\145\x74\x61\x20\x63\x68\141\x72\x73\x65\164\x3d\x22\x75\x74\x66\x2d\x38\42\x3e\15\12\40\40\x20\x20\x3c\x6d\145\164\x61\x20\156\x61\x6d\145\75\x22\x76\151\145\167\160\157\162\164\42\x20\x63\x6f\156\x74\145\x6e\x74\x3d\42\167\151\144\x74\150\x3d\x64\x65\166\151\143\x65\55\x77\151\144\x74\x68\x2c\40\151\x6e\x69\x74\x69\141\x6c\x2d\x73\x63\141\154\x65\x3d\x31\x22\76\xd\12\40\40\x20\40\x3c\x74\x69\x74\154\145\x3e"; goto C33dd; c537a: fcd9d: goto fb12f; Eebd3: $Cb700 = new User(); goto B047f; cce50: b4a59: goto F5eb3; c19b3: echo "\57\x69\156\144\x65\x78\42\73\xd\xa\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x7d\15\xa\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\15\12\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\175\x20\145\x6c\x73\145\x20\173\xd\12\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x24\50\x22\43\x73\x70\141\x6e\42\x29\56\x68\x74\x6d\154\x28\140\xd\xa\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\74\144\151\x76\40\x63\154\x61\x73\163\x3d\x22\x61\154\x65\x72\164\x20\141\x6c\x65\162\164\55\144\x61\x6e\x67\x65\x72\40\x61\154\x65\162\164\55\x64\151\163\x6d\x69\x73\163\151\142\154\x65\x20\146\x61\144\145\40\163\150\157\x77\x22\x20\x72\157\x6c\145\75\x22\141\x6c\x65\x72\x74\x22\x3e\15\xa\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\44\173\x72\145\163\x70\157\156\163\145\56\155\145\x73\163\141\147\145\x7d\15\12\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\74\x2f\x64\151\166\x3e\15\xa\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x60\x29\73\15\xa\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x7d\xd\12\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x7d\x2c\15\xa\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\145\x72\x72\157\162\72\40\146\165\x6e\143\164\151\x6f\x6e\x28\x29\x20\173\xd\xa\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\40\40\40\x24\50\42\43\163\160\x61\156\42\51\56\x68\164\155\x6c\x28\140\xd\xa\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\74\x64\151\x76\40\x63\x6c\141\163\163\x3d\42\141\x6c\x65\162\164\40\x61\154\145\162\164\x2d\144\x61\x6e\147\x65\162\40\141\154\145\x72\x74\x2d\144\151\163\155\151\163\x73\151\x62\x6c\x65\40\146\141\144\x65\40\x73\150\x6f\x77\x22\x20\162\x6f\154\x65\75\42\141\154\x65\x72\x74\x22\76\15\12\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\101\x6e\40\145\x72\x72\157\x72\40\x6f\x63\x63\x75\162\x72\x65\x64\56\x20\120\154\145\x61\163\x65\x20\164\x72\171\40\141\147\141\151\156\56\15\xa\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x3c\142\x75\164\x74\157\x6e\x20\164\x79\160\145\x3d\x22\x62\x75\x74\164\157\x6e\42\40\x63\x6c\141\x73\163\75\x22\x62\x74\156\x2d\143\154\x6f\x73\145\42\40\144\141\164\141\55\142\x73\x2d\x64\151\x73\155\x69\x73\163\x3d\42\141\x6c\145\x72\164\42\x20\141\x72\x69\x61\x2d\x6c\141\x62\x65\154\x3d\x22\103\x6c\x6f\x73\x65\42\76\74\x2f\x62\x75\164\x74\157\156\76\15\xa\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x3c\x2f\144\x69\x76\x3e\xd\xa\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x60\51\x3b\15\xa\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\175\xd\12\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\175\x29\x3b\xd\xa\x20\x20\x20\40\40\x20\x20\40\175\51\x3b\xd\xa\x20\x20\x20\x20\175\x29\73\xd\xa\40\x20\40\x20\x3c\x2f\163\143\x72\151\x70\x74\x3e\15\12\74\57\x62\x6f\x64\x79\x3e\15\12\74\57\150\x74\x6d\154\x3e";
Function Calls
None |
Stats
MD5 | 53b4954bc33f24cf97fbcb10aec44023 |
Eval Count | 0 |
Decode Time | 65 ms |