Add more examples for nmap for common activities such as:

- scanning a host with nse scripts
- scanning enabled SSL/TLS ciphers/protocols on a host on port 443
This commit is contained in:
Henry Vindin
2017-10-24 08:33:57 +11:00
committed by Agniva De Sarker
parent 4f5ce89bd5
commit ee0486e7f2

View File

@@ -26,3 +26,11 @@
- Perform TCP and UDP scanning (use -sU for UDP only, -sZ for SCTP, -sO for IP): - Perform TCP and UDP scanning (use -sU for UDP only, -sZ for SCTP, -sO for IP):
`nmap -sSU {{address_or_addresses}}` `nmap -sSU {{address_or_addresses}}`
- Perform scan using an nmap nse script:
`nmap --script {{script_name_without_nse_extension}} {{address_or_addresses}}`
- Perform TLS cipher scan against a host to determine supported ciphers and SSL/TLS protocols:
`nmap --script ssl-enum-ciphers {{address_or_addresses}} -p 443`