summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/nmap
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/nmap
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/nmap')
-rw-r--r--zsh/oh-my-zsh/plugins/nmap/README.md27
-rw-r--r--zsh/oh-my-zsh/plugins/nmap/nmap.plugin.zsh32
2 files changed, 0 insertions, 59 deletions
diff --git a/zsh/oh-my-zsh/plugins/nmap/README.md b/zsh/oh-my-zsh/plugins/nmap/README.md
deleted file mode 100644
index 0a60068..0000000
--- a/zsh/oh-my-zsh/plugins/nmap/README.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# Nmap plugin
-
-Adds some useful aliases for [Nmap](https://nmap.org/) similar to the profiles in zenmap.
-
-To use it, add `nmap` to the plugins array in your zshrc file:
-
-```zsh
-plugins=(... nmap)
-```
-
-## Aliases
-
-- `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_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.
-- `nmap_ping_scan`: ICMP scan for active hosts.
diff --git a/zsh/oh-my-zsh/plugins/nmap/nmap.plugin.zsh b/zsh/oh-my-zsh/plugins/nmap/nmap.plugin.zsh
deleted file mode 100644
index 406870f..0000000
--- a/zsh/oh-my-zsh/plugins/nmap/nmap.plugin.zsh
+++ /dev/null
@@ -1,32 +0,0 @@
-# Some useful nmap aliases for scan modes
-
-# Nmap options are:
-# -sS - TCP SYN scan
-# -v - verbose
-# -T1 - timing of scan. Options are paranoid (0), sneaky (1), polite (2), normal (3), aggressive (4), and insane (5)
-# -sF - FIN scan (can sneak through non-stateful firewalls)
-# -PE - ICMP echo discovery probe
-# -PP - timestamp discovery probe
-# -PY - SCTP init ping
-# -g - use given number as source port
-# -A - enable OS detection, version detection, script scanning, and traceroute (aggressive)
-# -O - enable OS detection
-# -sA - TCP ACK scan
-# -F - fast scan
-# --script=vuln - also access vulnerabilities in target
-
-alias nmap_open_ports="nmap --open"
-alias nmap_list_interfaces="nmap --iflist"
-alias nmap_slow="sudo nmap -sS -v -T1"
-alias nmap_fin="sudo nmap -sF -v"
-alias nmap_full="sudo nmap -sS -T4 -PE -PP -PS80,443 -PY -g 53 -A -p1-65535 -v"
-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=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 "
-alias nmap_web_safe_osscan="sudo nmap -p 80,443 -O -v --osscan-guess --fuzzy "
-alias nmap_ping_scan="nmap -n -sP"