Chia sẻ code 17 May, 2021 15:05

Cách hạn chế tấn công DDOS ?

Tạo file .htaccess tại thư mục bị DDoS access/request liên tục (thông thường là các thư mục public_html, forum,…)

Bước 1: Tạo file .htaccess tại thư mục bị DDoS access/request liên tục (thông thường là các thư mục public_html, forum,…). Nội dung file như sau:


  1. RewriteEngine on  
  2. RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?tendomain.com [NC]  
  3. RewriteRule !antiddos.phtml http://tendomain.com/antiddos.phtml?%{REQUEST_URI} [QSA]  



Bước 2: Tại cùng thư mục file .htaccess , tạo file antiddos.phtml với nội dung:


  1. <?php  
  2.   
  3. $text=$HTTP_SERVER_VARS[‘QUERY_STRING’];  
  4. $text = preg_replace(“#php\&#si”,’php?’,$text);  
  5. echo(‘<div><a href=http://tendomain.com’.$text.’>Welcome</div>’);  

Leave a reply

Your email address will not be published. Required fields are marked *

0 comments