Loading...
🚀 Chia sẽ code

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

Admin Published on 17 May, 2021

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:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?tendomain.com [NC]
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:

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

Admin Published on 17 May, 2021

Bài viết cùng chuyên mục