summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/nmap/README.md
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/README.md
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/nmap/README.md')
-rw-r--r--zsh/oh-my-zsh/plugins/nmap/README.md27
1 files changed, 0 insertions, 27 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.