From ee0486e7f293bbd6cf1bdb925345eb40e6e15942 Mon Sep 17 00:00:00 2001 From: Henry Vindin Date: Tue, 24 Oct 2017 08:33:57 +1100 Subject: [PATCH] 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 --- pages/common/nmap.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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`