From d999f798d763315079521f700b07974cc835a21d Mon Sep 17 00:00:00 2001 From: jaxBCD <43739719+jaxBCD@users.noreply.github.com> Date: Tue, 25 Oct 2022 15:44:37 +0700 Subject: [PATCH 1/2] Update Subdomain enumeration --- Methodology and Resources/Subdomains Enumeration.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Methodology and Resources/Subdomains Enumeration.md b/Methodology and Resources/Subdomains Enumeration.md index 2de3136..d5ad30d 100644 --- a/Methodology and Resources/Subdomains Enumeration.md +++ b/Methodology and Resources/Subdomains Enumeration.md @@ -14,6 +14,7 @@ * AltDNS * MassDNS * Nmap + * Dnsdumpster * Subdomain take over * tko-subs * HostileSubBruteForcer @@ -163,6 +164,13 @@ cat /tmp/results_subfinder.txt | massdns -r $DNS_RESOLVERS -t A -o S -w /tmp/res nmap -sn --script hostmap-crtsh host_to_scan.tld ``` +### +``` +using dnsdumpster +git clone https://github.com/nmmapper/dnsdumpster +python dnsdumpster.py -d domainname.com +``` + ## Subdomain take over Check [Can I take over xyz](https://github.com/EdOverflow/can-i-take-over-xyz) by EdOverflow for a list of services and how to claim (sub)domains with dangling DNS records. From 3dd7f467175b5ac5a8e7c7456411a0fc440d2adf Mon Sep 17 00:00:00 2001 From: Swissky <12152583+swisskyrepo@users.noreply.github.com> Date: Thu, 3 Nov 2022 21:34:34 +0100 Subject: [PATCH 2/2] Update Subdomains Enumeration.md --- Methodology and Resources/Subdomains Enumeration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Methodology and Resources/Subdomains Enumeration.md b/Methodology and Resources/Subdomains Enumeration.md index d5ad30d..09c2a5e 100644 --- a/Methodology and Resources/Subdomains Enumeration.md +++ b/Methodology and Resources/Subdomains Enumeration.md @@ -164,9 +164,9 @@ cat /tmp/results_subfinder.txt | massdns -r $DNS_RESOLVERS -t A -o S -w /tmp/res nmap -sn --script hostmap-crtsh host_to_scan.tld ``` -### -``` -using dnsdumpster +### Using dnsdumpster + +```ps1 git clone https://github.com/nmmapper/dnsdumpster python dnsdumpster.py -d domainname.com ```