NSE Scripts
SWITCH | EXAMPLE | DESCRIPTION |
---|---|---|
-sC | nmap 192.168.1.1 -sC | Scan with default NSE scripts. Considered useful for discovery and safe |
-script default | nmap 192.168.1.1 -script default | Scan with default NSE scripts. Considered useful for discovery and safe |
-script | nmap 192.168.1.1 -script=banner | Scan with a single script. Example banner |
-script | nmap 192.168.1.1 -script=http* | Scan with a wildcard. Example http |
-script | nmap 192.168.1.1 -script=http,banner | Scan with two scripts. Example http and banner |
-script | nmap 192.168.1.1 -script "not intrusive" | Scan default, but remove intrusive scripts |
-script-args | nmap -script snmp-sysdescr -script-args snmpcommunity=admin 192.168.1.1 | NSE script with arguments |
Comments
Related