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 $filePath = file_get_contents('lzff_SQ.txt'); $filePath = openssl_decrypt(base64..

Decoded Output download

<?php 
 
$filePath = file_get_contents('lzff_SQ.txt'); 
$filePath = openssl_decrypt(base64_decode(HEX2BIN(F_dec($filePath))), 'AES-128-CBC', base64_decode(HEX2BIN(F_dec('1C0Q12352Q0C12351e2116772Q272Q0N29272Q0Q2Q2120091C7Q1932290Q03331C351979290Q100I1C21163C'))), OPENSSL_RAW_DATA, base64_decode(HEX2BIN(F_dec('010e1e34062829791C1116331C1119331C7Q12721I073C3C')))); 
 
function F_dec($str) 
{ 
    define('CHARACTER_MAP', [ 
        'Q' => 'a', 
        'N' => 'b', 
        'I' => 'c', 
        'Z' => 'f', 
        'C' => 'd', 
        '4' => '0', 
        '6' => '1', 
        '5' => '2', 
        '3' => '3', 
        '1' => '4', 
        '2' => '5', 
        '0' => '6', 
    ]); 
    return strtr($str, CHARACTER_MAP); 
} ?>

Did this file decode correctly?

Original Code

<?php

$filePath = file_get_contents('lzff_SQ.txt');
$filePath = openssl_decrypt(base64_decode(HEX2BIN(F_dec($filePath))), 'AES-128-CBC', base64_decode(HEX2BIN(F_dec('1C0Q12352Q0C12351e2116772Q272Q0N29272Q0Q2Q2120091C7Q1932290Q03331C351979290Q100I1C21163C'))), OPENSSL_RAW_DATA, base64_decode(HEX2BIN(F_dec('010e1e34062829791C1116331C1119331C7Q12721I073C3C'))));

function F_dec($str)
{
    define('CHARACTER_MAP', [
        'Q' => 'a',
        'N' => 'b',
        'I' => 'c',
        'Z' => 'f',
        'C' => 'd',
        '4' => '0',
        '6' => '1',
        '5' => '2',
        '3' => '3',
        '1' => '4',
        '2' => '5',
        '0' => '6',
    ]);
    return strtr($str, CHARACTER_MAP);
}

Function Calls

None

Variables

None

Stats

MD5 e5b53f375803e9fba5947e798349d5d4
Eval Count 0
Decode Time 41 ms