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 $retval = mcrypt_decrypt( ...etc ...); $retval = rtrim($retval, "\0"); ..
Decoded Output download
<?php
$retval = mcrypt_decrypt( ...etc ...);
$retval = rtrim($retval, ""); // trim ONLY the nulls at the END
?>
Did this file decode correctly?
Original Code
<?php
$retval = mcrypt_decrypt( ...etc ...);
$retval = rtrim($retval, "\0"); // trim ONLY the nulls at the END
?>
Function Calls
| None |
Stats
| MD5 | ff2c1bf90cfccb1b14617cd0e336f11e |
| Eval Count | 0 |
| Decode Time | 83 ms |