• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Ddos or ping help

Kristoffer

Web designer
Joined
Apr 15, 2009
Messages
83
Reaction score
3
Location
Norway
we got a ot, and we got DDoS or ping or wtf..

we are losing our network while their doing it... how to fix?
 
If they're attacking your Port 80 only, you can use this php code to shitlist them from visiting your webpage. :D

PHP:
<?
$banned[0]="xxx.xxx.xxx.xxx"; // IP 
$banned[1]="yyy.yyy.yyy.yyy";
$banned[2]="zzz.zzz.zzz.zzz";

// add as many as you wish

if (in_array($_SERVER['REMOTE_ADDR'],$banned)) header("HTTP/1.1 403 Forbidden");
?>

:p
 
Back
Top