Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

25
linux/dnsmap Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# dnsmap
> The dnsmap command scans a domain for common subdomains e.g. smtp.domain.org.
> More information: <https://github.com/resurrecting-open-source-projects/dnsmap>.
- Scan for subdomains using the internal wordlist:
`dnsmap {{example.com}}`
- Specify a list of subdomains to check for:
`dnsmap {{example.com}} -w {{path/to/wordlist.txt}}`
- Store results to a CSV file:
`dnsmap {{example.com}} -c {{path/to/file.csv}}`
- Ignore 2 IPs that are false positives (up to 5 possible):
`dnsmap {{example.com}} -i {{123.45.67.89,98.76.54.32}}`