How to Check DDOS attack on server
Filed in security on Dec.15, 2009
An useful and useful command for checking if a server is under ddos?:
netstat -anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n
This command will list the IPs checking the most amounts of connections to a server, it’s important to note that the ddos is [...]

