dnsmap: add page (#8706)

* add dnsmap command

* csv file path is a variable

* Descriptions should start with a capital

* Description items should end with periods.

* invalid IP

* Update pages/linux/dnsmap.md

* fix typo and remove absolute paths
This commit is contained in:
FL
2022-10-04 11:06:24 +02:00
committed by GitHub
parent 8fac55b54f
commit 7c1c7b3266

20
pages/linux/dnsmap.md Normal file
View File

@@ -0,0 +1,20 @@
# 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}}`