(not set) | |
Blog | (not set) |
Website | http://cookietronics.net/ |
7
score
|
Displays the quantity of connections to port 80 on a per IP basis$ clear;while x=0; do clear;date;echo "";echo " [Count] | [IP ADDR]";echo "-------------------";netstat -np|grep :80|grep -v LISTEN|awk '{print $5}'|cut -d: -f1|uniq -c; sleep 5;done |