我的网站受到 DDos 攻击(UDP 泛滥)!
我无法访问 linux shell,只有 cpanel 可供我使用!:(
是否可以通过 php 脚本来防止这种攻击?
有没有办法配置 cpanel 以减少或重定向攻击?如何?
根据虚拟主机服务台:攻击在 6 到 10 Gbit/s 之间!!!
下面的代码有用吗?
<?PHP
if (!isset($_SESSION)) { session_start(); }
// anti flood protection
IF($_SESSION['last_session_request'] > time() - 2){
// users will be redirected to this page if it makes requests faster than 2 seconds
header("Location: /flood.html");
exit; }
$_SESSION['last_session_request'] = time();
?>
硬件防火墙太贵了。