Example 01: Exploiting Windows
Example Windows Host: 10.10.120.190
nmap -sV -sC --script vuln -oN blue.nmap 10.10.120.190The host is being scanned using nmap, storing the results in a file: blue.nmap
-sV = Check versions and services
-sC = Run default scripts (--script=default)
--script vuln = Run all vulnerability scripts
-oN = Save results to file
Last updated