Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-17 00:19:47 +00:00
parent b18a761896
commit aa594e72af
88 changed files with 444 additions and 114 deletions

View File

@@ -13,7 +13,7 @@ source: https://github.com/tldr-pages/tldr.git
`nmap -v{{1|2|3}} {{ip_or_hostname}}`
- Run a ping sweep over an entire subnet or individual hosts very aggressively:
- Run a ping sweep over an entire [s]ub[n]et or individual hosts very aggressively:
`nmap -T5 -sn {{192.168.0.0/24|ip_or_hostname1,ip_or_hostname2,...}}`
@@ -21,7 +21,7 @@ source: https://github.com/tldr-pages/tldr.git
`sudo nmap -A -iL {{path/to/file.txt}}`
- Scan a specific list of ports (use `-p-` for all ports from 1 to 65535):
- Scan a specific list of [p]orts (use `-p-` for all ports from 1 to 65535):
`nmap -p {{port1,port2,...}} {{ip_or_host1,ip_or_host2,...}}`
@@ -33,10 +33,10 @@ source: https://github.com/tldr-pages/tldr.git
`nmap --script "default and safe" {{ip_or_host1,ip_or_host2,...}}`
- Scan for web servers running on standard ports 80 and 443 using all available `http-*` NSE scripts:
- Scan for web servers running on standard [p]orts 80 and 443 using all available `http-*` NSE scripts:
`nmap --script "http-*" {{ip_or_host1,ip_or_host2,...}} -p 80,443`
- Attempt evading IDS/IPS detection by using an extremely slow scan (`-T0`), decoy source addresses (`-D`), [f]ragmented packets, random data and other methods:
- Attempt evading IDS/IPS detection by using an extremely slow scan (`-T0`), [D]ecoy source addresses, [f]ragmented packets, random data and other methods:
`sudo nmap -T0 -D {{decoy_ip1,decoy_ip2,...}} --source-port {{53}} -f --data-length {{16}} -Pn {{ip_or_host}}`