网络营销电子商务研究中心  
How to buy the best prescription safety glasses in Canada? Let's study!
Go Back   网络营销电子商务研究中心 > 网站设计 > PHP
User Name
Password
 
FAQ Members List Calendar Cheap Glasses

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1   IP: 49.87.40.69
Old 2015-02-07, 08:37 AM
Gloversville Gloversville is offline
初级会员
 
Join Date: 2013-11-21
Posts: 1
Gloversville 现在声名狼藉
Default php 威盾解密 批量解密方法

*把该程序放到网站程序的目录下,即可针对文件所在目录及子目录的文件进行破解,源加密文件被更改名为.bak.php.
Code:
<?php
 
//decode("Image.class.php");
 
function explorerdir($dir)
{
	$dp=opendir($dir); //打开目录句柄
	//echo " ".$dir."\r\n"; //输出目录
	while ($file = readdir($dp)) //遍历目录
	{
	   if ($file !='.'&&$file !='..') //如果文件不是当前目录及父目录
	   {
		$path=$dir.DIRECTORY_SEPARATOR.$file; //获取路径
		if(is_dir($path)) //如果当前文件为目录
		{
		 explorerdir($path);   //递归调用
		}
		else   //如果不是目录
		{
 
		 //echo "-".$path."\n"; //输出文件名
 
		echo decode($path);
 
		}
	   }
	}
	closedir($dp);    //关闭文件名柄
 
}
explorerdir(".");    //调用当前目录
 
function decode($filename="")
{
 
	if(pathinfo($filename, PATHINFO_EXTENSION)!="php" || strpos($filename,".bak.php") || realpath($filename) == __FILE__ ){return;}
 
	//$filename="intro.class.php";//要解密的文件  
 
	if(!file_exists($filename))
	{
		exit("file is not exist;");
 
	}
 
	$lines = file($filename);//0,1,2行  
 
	//第一次base64解密
	$content="";
	if(preg_match("/O0O0000O0\('.*'\)/",$lines[1],$y))
	{
		$content=str_replace("O0O0000O0('","",$y[0]);
		$content=str_replace("')","",$content);
		$content=base64_decode($content);
	}
	else
	{
		weidun_log(false,realpath($filename)." is not Encrypted!");
		return false;
 
	}
	//第一次base64解密后的内容中查找密钥
	$decode_key="";
	if(preg_match("/\),'.*',/",$content,$k))
	{
		$decode_key=str_replace("),'","",$k[0]);
		$decode_key=str_replace("',","",$decode_key);
	}
	//查找要截取字符串长度
	$str_length="";
	if(preg_match("/,\d*\),/",$content,$k))
	{
		$str_length=str_replace("),","",$k[0]);
		$str_length=str_replace(",","",$str_length);
	}
	//截取文件加密后的密文
	$Secret=substr($lines[2],$str_length);
	//echo $Secret;  
 
	//直接还原密文输出
	echo "<!-- <?php\n".base64_decode(strtr($Secret,$decode_key,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'))."?> -->"; //很奇怪,去掉这行,下面的代码就出现问题,可能跟编码有关,在这里我就暂时不做进一步分析了,注视掉避免界面缭乱。
	//echo "解密中....\<br>";
	$filecontent = "<?php\n".base64_decode(strtr($Secret,$decode_key,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'))."?>";
	//echo $filecontent;
	$filenamebak = str_replace(".php",".bak.php",$filename);
 
	if(!file_exists($filenamebak)){
 
		if(rename($filename,$filenamebak))
		{
 
			if(!file_exists($filename) && file_exists($filenamebak))//文件被更改成功
			{
 
				$fp = fopen($filename,"w");
				fwrite($fp,$filecontent);
				fclose($fp);
 
			}
 
		}
 
	}else{
 
	    //return("备份文件".$filenamebak."已存在,停止解密。");
		weidun_log(false,realpath($filenamebak)." is exist!");
		return false;
 
	}
		weidun_log(true,realpath($filename)." - successful!");
	return $filename." - successful! \n";
 
}
 
function weidun_log($s = true,$c ="")
{
 
	if($s)
	{
		$fp = fopen("./log.txt","a+");
		fwrite($fp,$c."\n");
		fclose($fp);
	}
	else
	{
		$fp = fopen("./log_error.txt","a+");
		fwrite($fp,$c."\n");
		fclose($fp);
	}
 
}
?>
Reply With Quote
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
X-Cart Multiple Input Validation Holes Permit SQL Injection and Cross-Site Scripting topvip X-Cart 0 2009-07-21 10:03 AM
用php语言来编写shell脚本 car 代码交流 0 2008-05-05 08:09 PM
Php教程.经验技巧(上) sunshine 代码交流 0 2006-12-15 08:13 PM
Php入门速成 smiling 代码交流 0 2006-12-15 07:30 PM
php.ini中文解释 sunshine 服务器环境搭建 0 2006-02-04 11:05 PM

Prescription-glasses.com offers prescription glasses online at discount prices.
All times are GMT +8. The time now is 11:08 AM.


Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.