Nmap
Network scanning tool with enumeration script to get detailed information about TCP/UDP ports, and the underlying system
Last updated
Network scanning tool with enumeration script to get detailed information about TCP/UDP ports, and the underlying system
Last updated
nmap [options] 10.10.10.10# Scan all TCP ports with all enumeration options, disabling unnecessary features
sudo nmap -sV -O -sC -Pn -n -sS -T4 -oN nmap.txt -p- -vv 10.10.10.10
# Scan top 100 UDP ports relatively quickly with enumeration
sudo nmap -Pn -n -sV -sC -O -vv -oN nmap-udp.txt --top-ports 100 -sU --version-intensity 0 -T4 10.10.10.10