ubuntu:network:finding_ddos_attacks
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:network:finding_ddos_attacks [2020/07/15 09:30] – external edit 127.0.0.1 | ubuntu:network:finding_ddos_attacks [2021/01/08 12:31] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ubuntu - Network - Finding DDOS attacks ====== | ||
- | |||
- | Some useful commands to check during DDOS attack. | ||
- | |||
- | ---- | ||
- | |||
- | ===== List the connections to the target IPs ===== | ||
- | |||
- | <code bash> | ||
- | netstat -alpn | grep :80 | awk ' | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== List connections from source IPs ===== | ||
- | |||
- | <code bash> | ||
- | netstat -alpn | grep :80 | awk ' | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== See the state of each connection ===== | ||
- | |||
- | <code bash> | ||
- | netstat -an|grep ": | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Identify the attacker ===== | ||
- | |||
- | <code bash> | ||
- | tcpdump -c -n -i eth" | ||
- | </ | ||
- | |||
- | where x can be 0 or 1, | ||
- | |||
- | For Example: | ||
- | |||
- | <code bash> | ||
- | tcpdump -c 100 -i br0 -p host 5.42.134.35 | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Check if a server is under a DoS attack ===== | ||
- | |||
- | <code bash> | ||
- | netstat -ntu | awk ' | ||
- | </ | ||
- | |||
- | If the output of below command returns a result like 2000 or 3000 connections!, | ||
- | |||
- | ---- | ||
- | |||
- | ===== Detect a SYN flood ===== | ||
- | |||
- | <code bash> | ||
- | netstat -nap | grep SYN | wc -l | ||
- | </ | ||
- | |||
- | If the output returns a value of 1032,1032 SYNs per second is quite a high number and except if the server is not serving let’s say 5000 user requests per second, therefore as the above output reveals it’s very likely the server is under attack, if however I get results like 100/200 SYNs, then obviously there is no SYN flood targeting. | ||
- | |||
- | ---- | ||
- | |||
- | ===== Check for a UDP Denial of Service ===== | ||
- | |||
- | <code bash> | ||
- | netstat -nap | grep ' | ||
- | </ | ||
- | |||
- | The above command will list information concerning possible UDP DoS. | ||
- | |||
- | The command can easily be accustomed also to check for both possible TCP and UDP denial of service, like so : | ||
- | |||
- | <code bash> | ||
- | netstat -anp |grep ' | ||
- | </ | ||
- | |||
- | You can see the output as : | ||
- | |||
- | < | ||
- | 104 109.161.198.86 | ||
- | 115 112.197.147.216 | ||
- | 129 212.10.160.148 | ||
- | 227 201.13.27.137 | ||
- | 3148 91.121.85.220 | ||
- | </ | ||
- | |||
- | If after getting an IP that has too many connections to the server and is almost certainly a DoS host you would like to filter this IP. | ||
- | |||
- | ---- | ||
- | |||
- | ===== Remove hosts to not be able to route packets to the server ===== | ||
- | |||
- | <code bash> | ||
- | route add 110.92.0.55 reject | ||
- | </ | ||
- | |||
- | The above command would null route the access of IP 110.92.0.55 to my server. | ||
- | |||
- | Later on to look up for a null routed IP to my host, I use: | ||
- | |||
- | <code bash> | ||
- | route -n |grep -i 110.92.0.55 | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Useful commands ===== | ||
- | |||
- | 1. tcpdump -i igb1 -nnn -c 10 dst port 80 host | ||
- | |||
- | This is for freebsd cmd where " | ||
- | |||
- | 2. time tcpdump -i igb1 -nnn -c 1000 dst port 80 host 192.168.0.5 | tail | ||
- | |||
- | 3. tail -1000 / | ||
- | |||
- | 4. netstat -n | awk '{ print $5 }' | cut -d ":" | ||
- | |||
- | 5. awk ' | ||
- | |||
- | 6. netstat -nt | grep :80 | wc -l | ||
- | |||
- | 7. tcpdump -A dst 192.168.1.14 -s 500 | grep -i refer | ||
- | |||
- | 8. tcpdump -i eth0 -vvv -nn -s 1700 -w ddos | ||
- | |||
- | tcpdump -nn -vv -r ddos | awk ' | ||
- | |||
- | 9. / | ||
- | |||
ubuntu/network/finding_ddos_attacks.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1