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 $obfuscatedCode = "\x70\x65\x7a\x4a\x39\x32\x57\x4b\x39\x75\x56\x33\x46\x59\x66\x36\..
Decoded Output download
<?php $obfuscatedCode = "pezJ92WK9uV3FYf6vqINY1ACmfJcWSQPpxeZl5SM9rKP4lrl1ysKGy6T7FrSSwSB"; $hashedKey = "c99e8848b0cd9542730ad1f3ee0b8d03"; foreach (hash_algos() as $algo) { $hashedKey = hash($algo, $hashedKey); } eval(@openssl_decrypt(base64_decode($hashedKey), "aes-256-cbc", "YourEncryptionKey", OPENSSL_RAW_DATA, substr($hashedKey, 0, 16))); ?>
Did this file decode correctly?
Original Code
<?php $obfuscatedCode = "\x70\x65\x7a\x4a\x39\x32\x57\x4b\x39\x75\x56\x33\x46\x59\x66\x36\x76\x71\x49\x4e\x59\x31\x41\x43\x6d\x66\x4a\x63\x57\x53\x51\x50\x70\x78\x65\x5a\x6c\x35\x53\x4d\x39\x72\x4b\x50\x34\x6c\x72\x6c\x31\x79\x73\x4b\x47\x79\x36\x54\x37\x46\x72\x53\x53\x77\x53\x42"; $hashedKey = "c99e8848b0cd9542730ad1f3ee0b8d03"; foreach (hash_algos() as $algo) { $hashedKey = hash($algo, $hashedKey); } eval(@openssl_decrypt(base64_decode($hashedKey), "aes-256-cbc", "YourEncryptionKey", OPENSSL_RAW_DATA, substr($hashedKey, 0, 16))); ?>
Function Calls
hash_algos | 1 |
Stats
MD5 | 1ff40c2ec6f9901cfc0e7031a8065885 |
Eval Count | 0 |
Decode Time | 59 ms |