diff options
author | Robby Russell <robby@planetargon.com> | 2015-10-03 14:33:35 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-10-03 14:33:35 -0700 |
commit | 80179c10bef39bd687e217f30dcbde81125dd949 (patch) | |
tree | 69188fc1c86aca56c77b9a6cb05ddd19d5c64a70 /plugins/nmap/README.md | |
parent | 5d24ba4228256acabf543879ba2d63eebec2ff75 (diff) | |
parent | df5e1f9c2cca5722e09bef3787571d7d948fe467 (diff) | |
download | zsh-80179c10bef39bd687e217f30dcbde81125dd949.tar.gz zsh-80179c10bef39bd687e217f30dcbde81125dd949.tar.bz2 zsh-80179c10bef39bd687e217f30dcbde81125dd949.zip |
Merge pull request #4453 from uberspot/master
Add 3 more nmap aliases to nmap plugin
Diffstat (limited to 'plugins/nmap/README.md')
-rw-r--r-- | plugins/nmap/README.md | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/plugins/nmap/README.md b/plugins/nmap/README.md index 8bb8e0648..5cd646277 100644 --- a/plugins/nmap/README.md +++ b/plugins/nmap/README.md @@ -19,14 +19,19 @@ Nmap options are: ## Aliases explained - * nmap_open_ports - scan for open ports on target - * nmap_list_interfaces - list all network interfaces on host where the command runs - * nmap_slow - slow scan that avoids to spam the targets logs - * nmap_fin - scan to see if hosts are up with TCP FIN scan - * nmap_full - aggressive full scan that scans all ports, tries to determine OS and service versions + * nmap_open_ports - Scan for open ports on target + * nmap_list_interfaces - List all network interfaces on host where the command runs + * nmap_slow - Slow scan that avoids to spam the targets logs + * nmap_fin - Scan to see if hosts are up with TCP FIN scan + * nmap_full - Aggressive full scan that scans all ports, tries to determine OS and service versions * nmap_check_for_firewall - TCP ACK scan to check for firewall existence * nmap_ping_through_firewall - Host discovery with SYN and ACK probes instead of just pings to avoid firewall restrictions * nmap_fast - Fast scan of the top 300 popular ports - * nmap_detect_versions - detects versions of services and OS, runs on all ports - * nmap_check_for_vulns - uses vulscan script to check target services for vulnerabilities + * nmap_detect_versions - Detects versions of services and OS, runs on all ports + * nmap_check_for_vulns - Uses vulscan script to check target services for vulnerabilities + * nmap_full_udp - Same as full but via UDP + * nmap_traceroute - Try to traceroute using the most common ports + * nmap_full_with_scripts - Same as nmap_full but also runs all the scripts + * nmap_web_safe_osscan - Little "safer" scan for OS version as connecting to only HTTP and HTTPS ports doesn't look so attacking. + |