diff --git a/pages/common/nmap.md b/pages/common/nmap.md index 8258a91e5..c0e340693 100644 --- a/pages/common/nmap.md +++ b/pages/common/nmap.md @@ -26,3 +26,11 @@ - Perform TCP and UDP scanning (use -sU for UDP only, -sZ for SCTP, -sO for IP): `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`