**php网页病毒清除办法**
你的网页是不是经常被无故的在php,asp,html,js 等文件后台加上一些木马地址呢?我以前有个站就是这样,所以一恨之下写了这段代码,文章虽然有一点浪费资源了,但是总比我们手动清除要好吧,下面我为讲讲程序的清除病毒的原理吧.
首先们要读取 $checkFile 文件这个文章是判断一个文章 是否被感染了,如果是就会执行$savafile变量里面的txt文件路径的所有文件,进行按你infecFile病毒列表清除一次.
```
> 1. <?php
> 2. Class clear\_virus{
> 3. //public $content;
> 4. public$infectFile ='virus.txt';//病毒文件列表文件
> 5. public$savefile ="save.txt";//所在查看病毒的文件列表
> 6. public$timep ='time.txt';//些记录清除病毒时间
> 7. public$checkFile ='e.php';//这里是设置
> 8. public$run =0;
> 9. public$virus\_type;
> 10. public$replace ;
> 11. public$filepath ;
> 12. public$tag =0;
>
> 14. function open\_file(){
> 15. $this\->read\_virus();
> 16. $this\->check\_File();
> 17. if($this\->run){
> 18. $this\->update\_time();
> 19. $this\->read\_file() ;
> 20. foreach($this\->filepath as$tmppath){
> 21. if(file\_exists($tmppath)){
> 22. $tmp\_file =file\_get\_contents($tmppath);
> 23. print\_r( $this\->virus\_type);
> 24. for( $i\=0;$ivirus\_type);$i++ ){
> 25. if( strrpos($tmp\_file,$this\->virus\_type\[$i\])!== false){
> 26. $tmp\_file =str\_replace($this\->virus\_type\[$i\],'',$tmp\_file);
> 27. $this\->tag =1;
> 28. }
> 29. }
> 30. if( $this\->tag ){
> 31. $handle =fopen($tmppath,'w');
> 32. fwrite($handle,$tmp\_file);
> 33. fclose($handle);
> 34. unset($tmp\_file);
> 35. }
>
> 37. }else{
> 38. ;
> 39. }
> 40. }
> 41. }
> 42. }
>
> 44. function check\_File(){
> 45. if(file\_exists($this\->checkFile) ){
> 46. $temp =file\_get\_contents($this\->checkFile) ;
> 47. echo$temp;
> 48. foreach( $this\->virus\_type as$v\_tmp ){
> 49. if( strrpos($temp,$v\_tmp)!== false ){
> 50. $this\->run =1;
> 51. break;
> 52. }
> 53. }
> 54. echo$this\->run;
> 55. unset($temp);
> 56. }else{
> 57. $this\->show\_error(5);
> 58. }
> 59. }
>
> 61. function update\_time(){
> 62. if(file\_exists($this\->timep) ){
> 63. $tmp\_time =date("Y-m-d H:i:s").chr(13).'|';
> 64. $tmp\_fp =fopen($this\->timep,'a+');
> 65. fwrite($tmp\_fp,$tmp\_time);
> 66. fclose($tmp\_fp);
> 67. }
>
> 69. }
>
> 72. function read\_File(){
> 73. if(file\_exists($this\->savefile) ){
> 74. $this\->content =file($this\->savefile);
> 75. if(is\_array($this\->content)){
> 76. $this\->filepath =$this\->content;
> 77. }else{
> 78. $this\->show\_error(3);
> 79. }
> 80. }else{
> 81. $this\->show\_error(4);
> 82. }
> 83. }
>
> 86. function read\_virus(){
> 87. if(file\_exists($this\->infectFile) ){
> 88. $this\->replace =file($this\->infectFile);
> 89. if(is\_array($this\->replace)){
> 90. $this\->virus\_type=$this\->replace;
> 91. }else{
> 92. $this\->show\_error(1);
> 93. }
> 94. }else{
> 95. $this\->show\_error(2);
> 96. }
> 97. }
>
> 100. function show\_error($number){
> 101. $array = array(
> 102. '1'\=>'病毒文件未不能读取!',
> 103. '2'\=>'病毒文件列表不存在!',
> 104. '3'\=>'文件列表不存了',
> 105. '4'\=>'查杀的文件不存',
> 106. '5'\=>$this\->$checkFile.'不存在了,请设置病毒感染文件'
> 107. );//开源代码phpfensi.com
> 108. echo$array\[$number\];
> 109. }
>
> 111. }
> 112. $virus =new clear\_virus;
> 113. $virus\->open\_file();
> 114. ?>
```
- 课程介绍
- thinkphp5.0
- 安装
- 开发规范
- 目录结构
- 配置参数
- 系统常量
- tp5自带的函数
- 助手函数
- 扩展类库
- 基本类库
- Workerman
- think-queue
- 验证码
- 图片
- 权限认证
- 课前准备
- 数据库设计
- 模块设计
- 管理员管理
- 添加
- 编辑
- 删除和批量删除
- 列表页
- 实列
- 权限管理
- 操作日志
- 基于行为的日记录
- 行为日志的扩展
- 助手类库
- 自建函数
- 将数组转成uri字符串
- 获取当前服务器的IP
- curl-post
- 截取文字中间的字符串
- 检查中文姓名
- 省市区分别截取
- 抽奖概率问题
- 短信邮箱模板替换
- 生成csv
- PHP 图片转base64
- 银行卡验证
- json返回接口封装
- 无限极分类
- 病毒
- xml和数组互转
- xml转成数组
- 数组转xml
- tp控制器相关
- 获取thinkph5下控制器和方法名
- 后台查询的简单封装
- 网址信息
- 获取网站logo
- 判断url是否存在
- 获取title
- 判断远程文件是否存在
- 获取页面所有链接
- 过滤
- 截取
- 时间
- 获取服务器信息
- 根据id生成唯一邀请码
- 随机颜色
- 数组字符串互换
- 创建多级目录
- 懒人查询
- 时间和时间戳转换
- 房间id生菜
- 获取需要的数组元素
- 文件和文件夹
- 文件类库
- 文件夹
- 七牛云
- 七牛云运用场景
- 七牛云使用实例
- 邮箱
- 邮箱验证
- 邮箱发送
- 数据库
- 数据库在thinkphp中的补充方法
- 备份和安全
- sql执行
- 数据库备份2
- 时间日历
- 时间格式化
- 日历
- 图片相关
- 自动获取图片主题颜色
- 获取html中的图片路径
- 获取图片场景
- 获取图片实践
- 图片处理类
- 图片处理场景
- 图片处理实践
- 数据验证分析
- 身份证相关
- 新闻
- 自建类库
- 简易分类库
- php 压缩CSS代码
- 身份证
- 分词和抽词
- 分词应用场景
- 分词实践
- 中文转拼音
- 中文转拼音场景
- 中文转拼音实践
- 二维码操作
- 二维码场景
- 二维码实践
- 短地址
- PHPWord
- 插件化
- 插件扩展库
- 插件列表
- 插件安装和卸载
- 插件实践
- 插件的离线安装
- 计划任务
- 计划任务安装
- 计划任务实践
- 定时器
- 注册登录
- 普通登录注册
- 第三方登录注册
- jwt接口登录注册
- 短信
- 飞鸽短信
- 阿里短信
- 消息队列
- 网站地图
- 全站静态化
- 缓存
- 文件导出
- PDF生成
- phpword
- PHPExcel
- 其他类库
- 百度
- 百度语音
- 快递
- 跨域问题
- 宝塔
- 搜索记录