Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
$pass = "fuVlViAMtRkDOBD7zkTSnQ=="; $key = "9a274b$%0dF0AA15#8*fb99Ef@cGa88f"; ..
Decoded Output download
<? $pass = "fuVlViAMtRkDOBD7zkTSnQ==";
$key = "9a274b$%0dF0AA15#8*fb99Ef@cGa88f";
//Method for decryption
$method = 'aes-256-cbc';
// IV must be exact 16 chars (128 bit)
$iv = chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0);
$decrypted = openssl_decrypt(base64_decode($pass), $method, $key, OPENSSL_RAW_DATA, $iv);
?>
Did this file decode correctly?
Original Code
$pass = "fuVlViAMtRkDOBD7zkTSnQ==";
$key = "9a274b$%0dF0AA15#8*fb99Ef@cGa88f";
//Method for decryption
$method = 'aes-256-cbc';
// IV must be exact 16 chars (128 bit)
$iv = chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0) . chr(0x0);
$decrypted = openssl_decrypt(base64_decode($pass), $method, $key, OPENSSL_RAW_DATA, $iv);
Function Calls
chr | 16 |
base64_decode | 1 |
Stats
MD5 | 06cd329a2bd8400a93678d638fcb1dbe |
Eval Count | 0 |
Decode Time | 50 ms |