From 7c1c7b32669198a326ccb3959724d45c786a5bef Mon Sep 17 00:00:00 2001 From: FL Date: Tue, 4 Oct 2022 11:06:24 +0200 Subject: [PATCH] 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 --- pages/linux/dnsmap.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/dnsmap.md diff --git a/pages/linux/dnsmap.md b/pages/linux/dnsmap.md new file mode 100644 index 000000000..f597dd5c3 --- /dev/null +++ b/pages/linux/dnsmap.md @@ -0,0 +1,20 @@ +# dnsmap + +> The dnsmap command scans a domain for common subdomains e.g. smtp.domain.org. +> More information: . + +- 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}}`