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 error_reporting(0); $dirSystems = 'kaybotFiles'; $DateTime = date('Y-m-d H:i:s')..
Decoded Output download
<?php
error_reporting(0);
$dirSystems = 'kaybotFiles';
$DateTime = date('Y-m-d H:i:s');
header('Content-type: application/json');
date_default_timezone_set('Asia/Jakarta');
$fileVersion = 'kaybotFiles/kaybot.version';
$PediainGuard = base64_encode("PediainGuard:!>PediainGuard<!");
function clearTerminal(){
if (PHP_SAPI === 'cli') {
system('clear');
} else {
system('cls');
}
}
function getPediain($versionUrl, $PediainGuard) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $versionUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Basic ' . $PediainGuard,
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
return $response;
} ?>
Did this file decode correctly?
Original Code
<?php
error_reporting(0);
$dirSystems = 'kaybotFiles';
$DateTime = date('Y-m-d H:i:s');
header('Content-type: application/json');
date_default_timezone_set('Asia/Jakarta');
$fileVersion = 'kaybotFiles/kaybot.version';
$PediainGuard = base64_encode("PediainGuard:!>PediainGuard<!");
function clearTerminal(){
if (PHP_SAPI === 'cli') {
system('clear');
} else {
system('cls');
}
}
function getPediain($versionUrl, $PediainGuard) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $versionUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Basic ' . $PediainGuard,
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
Function Calls
None |
Stats
MD5 | ba6a33459aea87f538200ac1ccacb1a1 |
Eval Count | 0 |
Decode Time | 52 ms |