-
-
Save yashodhank/4b2734d5d8d867f7c4fefb1c9866d205 to your computer and use it in GitHub Desktop.
Decode evil scripts encoded with eval(gzinflate(base64_decode()))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Basic script to decrypt files encoded with eval(gzinflate(base64_decode($data))); | |
*/ | |
$file = 'encrypted.php'; | |
$content = file_get_contents($file); | |
function evaldecode($content, $step = 0) { | |
//echo "STEP $step\n"; | |
$step++; | |
if(preg_match('/^eval\(/', $content)) { | |
$content = str_replace('eval(', 'print(', $content); | |
ob_start(); | |
eval($content); | |
$content = ob_get_contents(); | |
ob_end_clean(); | |
} | |
$content = trim($content); | |
if(preg_match('/^eval\(/', $content)) { | |
$content = evaldecode($content, $step); | |
} | |
return $content; | |
} | |
echo evaldecode($content)."\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment