Please enable JavaScript.
Coggle requires JavaScript to display documents.
Network scaning (Technics (Icmp ping, Tcp ping, Sync packets, Firewalking,…
Network scaning
-
Tools
-
Commands
nmap -sP 10.0.0.0/24
Ping scans the network, listing machines that respond to ping.
nmap -p 1-65535 -sV -sS -T4 target
Full TCP port scan using with service version detection - usually my first scan, I find T4 more accurate than T5 and still "pretty quick".
nmap -v -sS -A -T4 target
Prints verbose output, runs stealth syn scan, T4 timing, OS and version detection + traceroute and scripts against target services.
nmap -iL ip-addresses.txt
Scans a list of IP addresses, you can add options before / after.
-
-