D3F4
>Loading command center_

Network exploration and security auditing scanner. Discover hosts, open ports, services, and vulnerabilities across a network.
Scan a single host for open ports
nmap 192.168.1.1Detect the operating system of the target
nmap -O 192.168.1.1Detect software versions running on open ports
nmap -sV 192.168.1.1Enable OS detection, version detection, script scanning, and traceroute
nmap -A 192.168.1.1Scan all 65535 TCP ports
nmap -p- 192.168.1.1Half-open TCP scan — faster and less likely to be logged
nmap -sS 192.168.1.1Scan for open UDP ports on the target
nmap -sU 192.168.1.1Run NSE vulnerability scripts against the target
nmap --script vuln 192.168.1.1Scan an entire /24 subnet for live hosts
nmap 192.168.1.0/24Save scan results to XML, grepable, and normal format
nmap -oA scan_results 192.168.1.1