DOS IP with local port

From James Dooley's Wiki
Revision as of 18:38, 8 April 2011 by Smsldoo (talk | contribs) (Created page with "==Overview== Gets current netstat connections and shows each IP address with local port connection. ==Script== <code>[bash,n]netstat -ntu | awk '{print $5 $4}' | cut -d: -f1,3...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Overview

Gets current netstat connections and shows each IP address with local port connection.

Script

[bash,n]netstat -ntu | awk '{print $5 $4}' | cut -d: -f1,3 | sort | uniq -c | grep -v o | sort -n

What to change