Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
$encrypted = file_get_contents('path/to/encrypted/controller/file'); // Baca file terenkri..
Decoded Output download
<? $encrypted = file_get_contents('path/to/encrypted/controller/file'); // Baca file terenkripsi
$decrypted = openssl_decrypt($encrypted, 'AES-256-CBC', '616015', 0, 'ABCDEF0123456789'); // Dekripsi konten
if ($decrypted === false) {
die('Dekripsi gagal.');
}
eval($decrypted); // Eksekusi konten terdekripsi
?>
Did this file decode correctly?
Original Code
$encrypted = file_get_contents('path/to/encrypted/controller/file'); // Baca file terenkripsi
$decrypted = openssl_decrypt($encrypted, 'AES-256-CBC', '616015', 0, 'ABCDEF0123456789'); // Dekripsi konten
if ($decrypted === false) {
die('Dekripsi gagal.');
}
eval($decrypted); // Eksekusi konten terdekripsi
Function Calls
openssl_decrypt | 1 |
file_get_contents | 1 |
Stats
MD5 | 9a621756192de54d93a37562f0600961 |
Eval Count | 0 |
Decode Time | 37 ms |