特别说明:此php eval加密解密程序好像一定得在php5上面使用,
我在php4上面测试eval(gzinflate(base64_decode(codes)))内加密的代码始终无法正常解密
以下是php eval加密破解的代码:
?php /* taken from http://www.php.net/manual/
de/function.eval.php#59862 directions: 1. save this snippet as decrypt.php 2. save encoded php code in coded.txt 3. create a blank file called decoded.txt
(from shell do chmod 0666 decoded.txt) 4. execute this script (visit decrypt.php in
a web browser or do php decrypt.php in the shell) 5. open decoded.txt, the php should be decrypted
if not post the code on http://www.ariadoss.
com/forums/web-development/lamp gzinflate执行php eval加密代码的解密方法翻译为中文后的文字
(此段汉字原始文件里面可没.嘿) 1. 把这整段脚本保存为decrypt.php 2. 把需要解密的代码保存为coded.txt并且和decrypt.php在同一目录. 3. 创建一个空白文件命名为 decoded.txt (必须把 decoded.
txt 的权限设置为chmod 0666,也就是可以写入的.当然,你可以
不创建文件文件.只要文件夹有写入权限,脚本便会自动创建一个
名为decoded.txt的文档. ) 4. 运行php eval加密解密脚本 (浏览器中运行decrypt.php 即访问 http:
//您的域名/存放目录/decrypt.php) 5. 打开 decoded.txt, 代码应该已经解密完成,如果出现错误请
把代码发送到 http://www.ariadoss.com/forums/web-
development/lamp */ 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,这个里面放的是php eval加密过的代码,也就是eval(gzinflate(base64_decode(codes)))当中的codes;
再说明白点就是是要解密的eval(gzinflate(base64_decode(codes)))里面执行的密原文.执行保存过的文件decrypt.php,这样便会在同一目录生成一个decoded.txt的txt文档,打开此文档.里面就是那些php eval加密的原始代码.
http://www.bkjia.com/phpjc/445972.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/445972.htmltecharticle今天我们来深入的了解一下php语言的深层次概念。 特别说明:此php eval加密解密程序好像一定得在php5上面使用, 我在php4上面测试eval(gzinflat...
