PHP使用eval(gzinflate(str_rot13(base64_decode(‘BASE64加密后内容’))))核心代码的解密下非扩展方式的php加密方法.
这里有个在线的,还不错,木马防杀还行,要保护代码可就不行了,对应的写了一个简单的解密的,专门针对eval,这个原理很有用途.
特别说明:此解密程序好像一定得在PHP5上面使用,我在PHP4上面测试eval(gzinflate(str_rot13(base64_decode(‘BASE64加密后内容’))))内加密的代码始终无法正常解密.
- <?php
-
- $a=”eval(gzinflate(str_rot13(base64_decode(‘这里面放BASE64代码’))));”;
- function decodephp($a) {
- $max_level=300;
- for($i=0;$i<$max_level;$i++) {
- ob_start();
- eval(str_replace(‘eval’,'echo’,$a));
- $a = ob_get_clean();
- if(strpos($a,’eval(gzinflate(str_rot13(base64_decode’)===false) {
- return $a;
- }
- }
- }
- echo decodephp($a);
- ?>
php使用N层加密eval(gzinflate(base64_decode(“codes”)))的破解,首先申明一下,这个并非是我原创,是我转自一个国外的BLOG上面的,自己测试了下,觉得很好用的.
如果您想看的是PHP使用eval(gzinflate(str_rot13(base64_decode(‘BASE64加密后内容’))))核心代码的解密,请移步这里查看:PHP使用eval(gzinflate(str_rot13(base64_decode(‘BASE64加密后内容’))))核心代码的解密.
特别说明:此解密程序好像一定得在PHP5上面使用,我在PHP4上面测试eval(gzinflate(base64_decode(“codes”)))内加密的代码始终无法正常解密,以下是代码:
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- //开源代码phpfensi.com
- echo “nDECODE nested eval(gzinflate()) by DEBO Jurgen <mailto:jurgen@person.benn”;
- echo “1. Reading coded.txtn”;
- $fp1 = fopen (“coded.txt”, “r”);
- $contents = fread ($fp1, filesize (“coded.txt”));
- fclose($fp1);
- echo “2. Decodingn”;
- while (preg_match(“/eval(gzinflate/”,$contents)) {
- $contents=preg_replace(“/<?|?>/”, “”, $contents); eval(preg_replace(“/eval/”, “$contents=”, $contents)); } echo “3. Writing decoded.txtn”; $fp2 = fopen(“decoded.txt”,”w”); fwrite($fp2, trim($contents)); fclose($fp2);
- ?>
再简单的说下gzinflate,eval(gzinflate(base64_decode(“codes”)));decoding-eval-gzinflate-base64_decode的使用方法,保存上面的程序文件decrypt.php,当然文件名可以自己设置.
在此文件的同一目录建立一个coded.txt,这个里面放的是加密过的代码,也就是eval(gzinflate(base64_decode(“codes”)))当中的codes;
再说明白点就是是要解密的eval(gzinflate(base64_decode(“codes”)))里面执行的密原文.执行保存过的文件decrypt.php,这样便会在同一目录生成一个decoded.txt的txt文档,打开此文档.里面就是那些被加密的原始代码. |