Network Mapper is a utility for network discovery and security auditing.

nmap -sV -sC -A -p- T4 -v [IP_ADDRESS]
nmap -sV -n -v -Pn -p- -T4 [IP_ADDRESS]
nmap -sV –script vuln -v [IP_ADDRESS]

<aside> đź’ˇ Nmap defaults:

<aside> 💡 It is advisable to use root privileges while scanning the network for more accurate information.

</aside>

<aside> đź’ˇ Add -Pn if ICMP probe request are blocked. -Pn basically says that treat all hosts as alive and no need to ping them (skips host discovery)

</aside>

Vulnerability Scanning

sudo nmap -sV -p 21-8080 –script vulners 192.168.1.1