summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFadi Hadzh <fdhadzh@gmail.com>2018-08-30 00:06:11 +0300
committerMarc Cornellà <marc.cornella@live.com>2018-08-29 23:06:11 +0200
commitdc8811f81779d0e06ac2cd1372a586576e2c8aef (patch)
treed956e08dae9f61356bd7eaf5abea70061f901998
parent94df5038632df5453ffd0ff4b6367399bc5fe7e8 (diff)
downloadzsh-dc8811f81779d0e06ac2cd1372a586576e2c8aef.tar.gz
zsh-dc8811f81779d0e06ac2cd1372a586576e2c8aef.tar.bz2
zsh-dc8811f81779d0e06ac2cd1372a586576e2c8aef.zip
fix nmap vuln category name (#7044)
-rw-r--r--plugins/nmap/nmap.plugin.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/nmap/nmap.plugin.zsh b/plugins/nmap/nmap.plugin.zsh
index 82c275f23..8c691bdaa 100644
--- a/plugins/nmap/nmap.plugin.zsh
+++ b/plugins/nmap/nmap.plugin.zsh
@@ -13,7 +13,7 @@
# -O - enable OS detection
# -sA - TCP ACK scan
# -F - fast scan
-# --script=vulscan - also access vulnerabilities in target
+# --script=vuln - also access vulnerabilities in target
alias nmap_open_ports="nmap --open"
alias nmap_list_interfaces="nmap --iflist"
@@ -24,7 +24,7 @@ alias nmap_check_for_firewall="sudo nmap -sA -p1-65535 -v -T4"
alias nmap_ping_through_firewall="nmap -PS -PA"
alias nmap_fast="nmap -F -T5 --version-light --top-ports 300"
alias nmap_detect_versions="sudo nmap -sV -p1-65535 -O --osscan-guess -T4 -Pn"
-alias nmap_check_for_vulns="nmap --script=vulscan"
+alias nmap_check_for_vulns="nmap --script=vuln"
alias nmap_full_udp="sudo nmap -sS -sU -T4 -A -v -PE -PS22,25,80 -PA21,23,80,443,3389 "
alias nmap_traceroute="sudo nmap -sP -PE -PS22,25,80 -PA21,23,80,3389 -PU -PO --traceroute "
alias nmap_full_with_scripts="sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 -PA80,113,443,10042 -PO --script all "