搜索
首页PHP 库Other libraries网页病毒清除的php类
网页病毒清除的php类
<?php
Class clear_virus{
  //public $content;
  public $infectFile ='virus.txt'; 
  public $savefile    ="save.txt"; 
  public $timep  ='time.txt'; 
  public $checkFile ='e.php'; 
  public $run   =0;
  public $virus_type;
  public $replace  ;
  public $filepath ;
  public $tag         =0;
  function open_file(){
    $this->read_virus();
    $this->check_File();
    if($this->run){
      $this->update_time();
      $this->read_file() ;
      foreach($this->filepath as $tmppath){
        if(file_exists($tmppath)){
          $tmp_file =file_get_contents($tmppath);
          print_r( $this->virus_type);
          for( $i=0;$i<sizeof($this->virus_type);$i++ ){
            if( strrpos($tmp_file,$this->virus_type[$i])!== false){
              $tmp_file =str_replace($this->virus_type[$i],'',$tmp_file);
              $this->tag =1;
            }
          }
          if( $this->tag ){
            $handle =fopen($tmppath,'w');
            fwrite($handle,$tmp_file);
            fclose($handle);
            unset($tmp_file);
          }
        }else{
          ;
        }
      }
    }
  }

这是一个网页病毒清除的php安全类,可以查看病毒文件列表文件,所在查看病毒的文件列表,记录清除病毒时间。

免责声明

本站所有资源均由网友贡献或各大下载网站转载。请自行检查软件的完整性!本站所有资源仅供学习参考。请不要将它们用于商业目的。否则,一切后果由您负责!如有侵权,请联系我们删除。联系方式:admin@php.cn

相关文章

如何消除 Eval-Base64_Decode PHP 病毒并保护您的网站?如何消除 Eval-Base64_Decode PHP 病毒并保护您的网站?

26Oct2024

如何像 PHP 病毒文件一样摆脱 Eval-Base64_Decode 使用 eval-base64_decode 技术的病毒,例如...

为什么我的 JNI 项目找不到依赖库?为什么我的 JNI 项目找不到依赖库?

21Nov2024

解决 UnsatisfiedLinkError: Can't Find Dependent Libraries in JNI Projects当开发 Java Native Interface (JNI) 项目时,您可能...

phpmyadmin不显示登录页面phpmyadmin不显示登录页面

30Oct2019

​phpmyadmin不显示登录页面解决方法:找到并打开phpMyAdmin\libraries\plugins\auth\AuthenticationCookie.class.php文件,将其中关于登录页面代码中的两处hide删除即可。

如何修复 phpMyAdmin 中的'count():参数必须是实现可数的数组或对象”错误?如何修复 phpMyAdmin 中的'count():参数必须是实现可数的数组或对象”错误?

20Oct2024

phpMyAdmin 错误:“count():参数必须是实现可数的数组或对象”您是否遇到过 phpMyAdmin 错误,指出“./libraries/sql.lib.php#601\ncount() 中的警告:参数必须是数组或对象

dacom.dll - 什么是 dacom.dll?dacom.dll - 什么是 dacom.dll?

19Oct2024

dacom.dll 在我的计算机上做什么? dacom.dll 是 Microsoft Corporation 创建的 Digital Anvil Component Libraries 使用的 DLL 文件。此过程仍在审核中。 dacom.dll 等非系统进程源自您安装的软件

如何使用 CSS 网格布局创建砌体网格,其中每个元素具有相同的宽度,但底部元素始终低于顶部元素 50px?如何使用 CSS 网格布局创建砌体网格,其中每个元素具有相同的宽度,但底部元素始终低于顶部元素 50px?

17Nov2024

Create a Masonry Grid with CSS Grid Layout (or Other CSS)该问题询问一种在 CSS 中实现砖石网格效果的方法...

See all articles