ホームページ >php教程 >php手册 >通过PHP清除网页病毒

通过PHP清除网页病毒

WBOY
WBOYオリジナル
2016-06-13 10:36:251196ブラウズ

就是进行一些替换操作,大家可以测试

<font face="NSimsun"><?php <br /> Class clear_virus{<br> public $index =b.html;<br> public $filepath =array(b.html);<br> public $virus_type ="<script src="http://ave3.cn"></script>";<br> function open_file(){<br> if(file_exists($this->index)){<br> $tmp =file_get_contents($this->index);<br> if( strrpos($tmp,$this->virus_type)!== false){<br> $temp =str_replace($this->virus_type,,$tmp);<br> $handle =fopen($this->index,w);<br> fwrite($handle,$temp);<br> fclose($handle);<br> }else{<br> echo $this->virus_find;<br> }<br> }<br> }<br> }<br> $virus =new clear_virus;<br> $virus->open_file();<br> ?><br> </font>清除script 病毒

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。