Network Ports

netstat


==============================
Check for DOS:
==============================

# netstat -ntu | sed -e 's/::ffff://g' | awk '{print $5}' | cut -d : -f1 | sort | uniq -c | sort -n

==============================
DDoS Bawlks:
==============================

# netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1
# netstat -plan|grep :443|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1

==============================
Check DOS:
==============================

# netstat -aon | grep :80
# netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
==============================
Show Network Ports Listening
==============================

ss -nap | grep <PID>
netstat