]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/nmap/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / nmap / README.md
1 # Nmap plugin
2
3 Adds some useful aliases for [Nmap](https://nmap.org/) similar to the profiles in zenmap.
4
5 To use it, add `nmap` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... nmap)
9 ```
10
11 ## Aliases
12
13 - `nmap_open_ports`: scan for open ports on target.
14 - `nmap_list_interfaces`: list all network interfaces on host where the command runs.
15 - `nmap_slow`: slow scan that avoids to spam the targets logs.
16 - `nmap_fin`: scan to see if hosts are up with TCP FIN scan.
17 - `nmap_full`: aggressive full scan that scans all ports, tries to determine OS and service versions.
18 - `nmap_check_for_firewall`: TCP ACK scan to check for firewall existence.
19 - `nmap_ping_through_firewall`: host discovery with SYN and ACK probes instead of just pings to avoid firewall restrictions.
20 - `nmap_fast`: fast scan of the top 300 popular ports.
21 - `nmap_detect_versions`: detects versions of services and OS, runs on all ports.
22 - `nmap_check_for_vulns`: uses vulscan script to check target services for vulnerabilities.
23 - `nmap_full_udp`: same as full but via UDP.
24 - `nmap_traceroute`: try to traceroute using the most common ports.
25 - `nmap_full_with_scripts`: same as nmap_full but also runs all the scripts.
26 - `nmap_web_safe_osscan`: little "safer" scan for OS version  as connecting to only HTTP and HTTPS ports doesn't look so attacking.
27 - `nmap_ping_scan`: ICMP scan for active hosts.