程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP禁止同一IP頻繁訪問以防止網站被防攻擊或采集的代碼

PHP禁止同一IP頻繁訪問以防止網站被防攻擊或采集的代碼

編輯:PHP綜合
PHP禁止同一IP頻繁訪問以防止網站被防攻擊或采集的代碼

<?php
/*
*通過禁止IP頻繁訪問防止網站被防攻擊代碼
*/
header('Content-type: text/html; charset=utf-8');
$ip=$_SERVER['REMOTE_ADDR'];//獲取當前訪問者的ip
$logFilePath='./log/';//日志記錄文件保存目錄
$fileht='.htaccess2';//被禁止的ip記錄文件
$allowtime=60;//防刷新時間
$allownum=5;//防刷新次數
$allowRefresh=120;//在允許刷新次數之後加入禁止ip文件中

if(!file_exists($fileht)){
    file_put_contents($fileht,'');
}
$filehtarr=@file($fileht);
if(in_array($ip."\r\n",$filehtarr)){
    exit('警告:你的IP已經被禁止了!');
}
//加入禁止ip
$time=time();
$fileforbid=$logFilePath.'forbidchk.dat';
if(file_exists($fileforbid)){
    if($time-filemtime($fileforbid)>30){
        @unlink($fileforbid);
    }else{
        $fileforbidarr=@file($fileforbid);
        if($ip==substr($fileforbidarr[0],0,strlen($ip))){
            if($time-substr($fileforbidarr[1],0,strlen($time))>120){
                @unlink($fileforbid);
            }else if($fileforbidarr[2]>$allowRefresh){
                file_put_contents($fileht,$ip."\r\n",FILE_APPEND);
                @unlink($fileforbid);
            }else{
                $fileforbidarr[2]++;
                file_put_contents($fileforbid,$fileforbidarr);
            }
        }
    }
}
//防刷新
$str='';
$file=$logFilePath.'ipdate.dat';
if(!file_exists($logFilePath)&&!is_dir($logFilePath)){
    mkdir($logFilePath,0777);
}
if(!file_exists($file)){
    file_put_contents($file,'');
}
$uri=$_SERVER['REQUEST_URI'];//獲取當前訪問的網頁文件地址
$checkip=md5($ip);
$checkuri=md5($uri);
$yesno=true;
$ipdate=@file($file);
foreach($ipdate as $k=>$v){
    $iptem=substr($v,0,32);
    $uritem=substr($v,32,32);
    $timetem=substr($v,64,10);
    $numtem=substr($v,74);
    if($time-$timetem<$allowtime){
        if($iptem!=$checkip){
            $str.=$v;
        }else{
            $yesno=false;
            if($uritem!=$checkuri){
                $str.=$iptem.$checkuri.$time."\r\n";
            }else if($numtem<$allownum){
                $str.=$iptem.$uritem.$timetem.($numtem+1)."\r\n";
            }
            else{
                if(!file_exists($fileforbid)){
                    $addforbidarr=array($ip."\r\n",time()."\r\n",1);
                    file_put_contents($fileforbid,$addforbidarr);
                }
                file_put_contents($logFilePath.'forbided_ip.log',$ip.'--'.date('Y-m-d H:i:s',time()).'--'.$uri."\r\n",FILE_APPEND);
                $timepass=$timetem+$allowtime-$time;
                exit('警告:不要刷新的太頻繁!');
            }
        }
    }
}
if($yesno){
    $str.=$checkip.$checkuri.$time."\r\n";
}
file_put_contents($file,$str); *
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved