码迷,mamicode.com
首页 > Web开发 > 详细

php简单的查找当前目录下的非法文件

时间:2014-12-16 16:44:17      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   io   os   sp   on   文件   div   2014   

<?php
	/**
	*只遍历当前目录下的文档
	*@return bool
	*/
	$new = microtime();
	 function read_all_file($path)
	{
		if(empty($path))
		{
			return false;
		}
		$path = rtrim($path,‘/‘);
		static $file_arr = array();
		if(! is_readable($path))
		{
			
			echo $path.‘无权限读取文件或文件夹不存在‘;
			return false;
		}
		//$oldtime = strtotime(‘2014-12-12‘);
		$new_path = ‘‘;$x = ‘‘;$ext = ‘‘;$content = ‘‘;
	    if($handler = opendir($path))
		{ 
			while (($sub = readdir($handler)) !== FALSE) 
			{ 
				if ($sub != "." && $sub != ".." && $sub != "Thumb.db" && $sub != "Thumbs.db") 
				{ 	$new_path = $path."/".$sub;
					if(is_file($path."/".$sub)) 
					{ 
						$x = explode(‘.‘, $new_path);
						$ext = strtolower(end($x));
						
						if($ext == ‘php‘ || $ext == ‘asp‘)
						{
							$content = file_get_contents($new_path);
							$time    = filemtime($new_path);
							//记录非法文件位置
							if(preg_match(‘/eval|cmd|system|exec|fopen|file_put_contents/i‘,$content)){
							file_put_contents(‘gua.txt‘,$new_path.PHP_EOL, FILE_APPEND);
							}
							/*if($time>$oldtime){
							file_put_contents(‘gua-date.txt‘,$new_path.PHP_EOL, FILE_APPEND);
							}*/
							unset($content);
						}
						else
						{
							continue;
						}
						
						
					}
					/*else //如果是文件夹输出文件名称继续
					{
						//read_all_file($path."/".$sub);
					}*/
					
				}
             } 
        } 
        closedir($handler);
    }
read_all_file(dirname(__FILE__).‘/phpcms‘);
echo microtime() - $new;
?>

 

php简单的查找当前目录下的非法文件

标签:blog   ar   io   os   sp   on   文件   div   2014   

原文地址:http://www.cnblogs.com/phplhs/p/4167132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!