- 1. phpMyAdmin(支持對(duì)數(shù)據(jù)庫進(jìn)行建立、復(fù)制,刪除數(shù)據(jù)等...
- 2. QuickPHP V1.12.1(php腳本調(diào)試工具) 綠色免費(fèi)版
- 3. phpMyAdmin(支持對(duì)數(shù)據(jù)庫進(jìn)行完全操控) V3.4.2.0 F...
- 4. phpMyAdmin(通過互聯(lián)網(wǎng)控制操作MYSQL的軟件) V3.4....
- 5. phpMyAdmin 3.4.0 RC2 多語綠色版_很方便的網(wǎng)絡(luò)遠(yuǎn)M...
- 6. 基于PHP和MySql的個(gè)人文章發(fā)布/管理平臺(tái)Swan v1.0.0
- 7. 強(qiáng)大的PHP在線購物系統(tǒng)Avactis購物車系統(tǒng) V2.1
- 8. 教你如何更好地與上司溝通這樣和上司說話 PDF電子書
- 9. 不懂會(huì)計(jì)/計(jì)算機(jī)也能輕松運(yùn)用零天房屋出租管理系統(tǒng)...
- 10. 免費(fèi)解密php程序的黑刀Dezender 5.0 簡(jiǎn)體中文版
教你如何運(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
[收藏此文章]
- 1. 教你編寫安全的ASP代碼
- 2. 教你輕松備份和恢復(fù)Windows IIS服務(wù)器設(shè)置
- 3. 動(dòng)態(tài)網(wǎng)頁編程語言中的三大帝國ASP.JSP.PHP之間的較...
- 4. 教你清理Windows7字體提高開機(jī)速度
- 5. 教你如何使用Calendar日歷選擇器
- 6. 關(guān)于PHP Parse Error: syntax error, unexpected $...
- 7. PHP的date()獲得比當(dāng)前時(shí)間少八小時(shí)的解決方法
- 8. php判斷值是否為空的實(shí)例分析
- 9. 教你配置xampp在php中使用sqlite3
- 10. 教你用ASP代碼寫文件記錄不用數(shù)據(jù)庫的實(shí)例代碼分享