Finally it came up to an end!
I have found one of the best anti-ddos.
The "DoS Deflate"!
(D)DoS Deflate is a lightweight bash shell script designed to assist in the process of blocking a dos. It utilizes the command below to create a list of IP addresses connected to the server, along with their total number of CONNECTIONS. It is one of the simplest and easiest to install solutions at the software level.
1
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
IP addresses with over a pre-configured number of CONNECTIONS are automatically blocked in the server's firewall, which can be direct iptables.







1
2
3
4
5
2
3
4
5
wget http://www.inetbase.com/scripts/ddos/install.sh chmod 0700 install.sh ./install.sh

1
2
3
2
3
wget http://www.inetbase.com/scripts/ddos/uninstall.ddos chmod 0700 uninstall.ddos ./uninstall.ddos