php 解密eval(gzinflate(str_rot13(base64_decode
程序员文章站
2022-07-01 09:03:28
From 黑客笔记
这样加密作者很无赖和变态,因为明明知道这样的加密破解是易如反掌的,而却还变态的把代码加密无数次。
我写了下面两个PHP文件:
//B.PHP
From 黑客笔记
这样加密作者很无赖和变态,因为明明知道这样的加密破解是易如反掌的,而却还变态的把代码加密无数次。
我写了下面两个PHP文件:
//B.PHP
<?php
$str=file_get_contents(2.txt);
while (preg_match("/eval(gzinflate(str_rot13(base64_decode(([^]*)/",$str,$match)){
$fp=fopen(1.txt,w);
fputs($fp,$match[1]);
fclose($fp);
system(php a.php);
$str=file_get_contents(2.txt);
}
?>
//A.PHP
<?php
$str=file_get_contents(1.txt);
$str=base64_decode($str);
$str=str_rot13($str);
$str=gzinflate($str);
$fp=fopen(2.txt,w);
fputs($fp,$str);
fclose($fp);
?>
把你的代码保存为2.TXT,在CMD下运行下面的命令:
PHP B.PHP
过一会程序执行完毕,2.TXT就是解密后的代码。
推荐阅读
-
php中base64_decode与base64_encode加密解密函数实例
-
php使用N层加密eval gzinflate str_rot13 base64 破解方法汇总
-
php 解密eval(gzinflate(str_rot13(base64_decode
-
php中base64_decode与base64_encode加密解密函数实例
-
PHP $O00OO0=urldecode & eval 解密,记一次商业源码的去后门
-
php中base64_decode与base64_encode加密解密函数实例_PHP
-
求问关于php 混淆字符+eval的解密构思。希望xuzuning等高手来帮忙
-
php 基于eval的 N层加密 gzinflate str_rot13 base64 破解方法
-
安全 - PHP页面被非法注入eval(base64_decode)后怎么办
-
php 基于eval的 N层加密 gzinflate str_rot13 base64 破解方法_PHP教程