NSE
Update the NSE scripts database
└──╼ $sudo nmap --script-updatedb
Search for available scripts with a certain word
└──╼ $sudo find / -name dns* 2>/dev/null | grep scripts
Trace NSE script sent
└──╼ $sudo nmap --script-trace
Useful NSE scripts
SMTP + Banner Grabbing
└──╼ $sudo nmap 10.10.10.10 -p 25 --script banner,smtp-commands
Aggressive scan
└──╼ $sudo nmap 10.10.10.10 -p 80 -A
It does all the following :
Service Detection
-sV
OS Detection
-O
Trace the probes' routes
--traceroute
Default NSE scripts
-sC
Choose scripts by category
└──╼ $sudo nmap 10.10.10.10 -p 80 -sV --script vuln

Last updated