Home > php教程 > php手册 > 通过PHP清除网页病毒

通过PHP清除网页病毒

WBOY
Release: 2016-06-13 10:36:25
Original
1193 people have browsed it

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

<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 病毒

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template