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 $encoded = "Sy1LzNFQKyzNL7G2V0svsYYw9YpLiuKL8ksMjTXSqzLz0nISS1KBrNK85PzcgqLU4mLqCCc..
Decoded Output download
b'eval("?>".str_rot13(gzinflate(gzuncompress(gzinflate(gzuncompress(gzinflate(gzuncompress(gzinflate(gzuncompress(base64_decode(strrev($Lix))))))))))));'
Did this file decode correctly?
Original Code
<?php
$encoded = "Sy1LzNFQKyzNL7G2V0svsYYw9YpLiuKL8ksMjTXSqzLz0nISS1KBrNK85PzcgqLU4mLqCCclFqeamcSnpCbnp6RqAO0sSi3TUPHJrNBEAtYA...";
$decoded = base64_decode($encoded);
$decompressed = gzinflate($decoded);
echo $decompressed; // This will display the plain text
?>
Function Calls
gzinflate | 1 |
base64_decode | 1 |
Stats
MD5 | 51bfd16ec0948e52be1127a4211f1cc9 |
Eval Count | 0 |
Decode Time | 74 ms |