程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 如何清除網頁病毒

如何清除網頁病毒

編輯:關於PHP編程

現在比較狂的網頁病毒代碼,常常讓你的網站飽受網頁病毒代碼困擾,我公司服務器也碰到同樣的問題了,早上煩躁中寫了一個清除網頁病毒的php程序,原理是每次訪問是都會調用這種程序,讀取一個index文件是否有毒如果有就把執行程序把病毒替換掉就OK了,只是臨時的辦法了,希望高手出更高級的方法處理吧.

<?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();
?>
本站原創轉載請注明:  www.111cn.cn/phper/php.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved