How to Find Subdomains Using Various Tools and Methods

4 months ago 30
BOOK THIS SPACE FOR AD
ARTICLE AD

J0k3R

Photo by rivage on Unsplash

Hello! This is my first blog on Medium, and I’m excited to share insights on finding subdomains using various tools and resources.

Nmap (“Network Mapper”) is a free and open source utility for network discovery and security auditing.

nmap --script dns-brute <DOMAIN>

dnsmap scans a domain for common subdomains using a built-in or an external wordlist

dnsmap <DOMAIN>

If you want using a custom wordlist:

dnsmap <DOMAIN> -w <WORDLIST>

Fierce is a semi-lightweight scanner that helps locate non-contiguous IP space and hostnames against specified domains.

fierce --domain <DOMAIN>

Sublist3r enumerates subdomains using many search engines such as Google, Yahoo, Bing, Baidu, and Ask. Sublist3r also enumerates subdomains using Netcraft, Virustotal, ThreatCrowd, DNSdumpster, and ReverseDNS.

sublist3r -d <DOMAIN>

subfinder is a subdomain discovery tool that returns valid subdomains for websites, using passive online sources.

subfinder -d <DOMAIN>

Amass contains a tool to help information security professionals perform network mapping of attack surfaces and perform external asset discovery using open source information gathering and active reconnaissance techniques.

amass enum -d <DOMAIN>

assetfinder is a command-line tool designed to find domains and subdomains associated with a specific domain.

assetfinder --subs-only <DOMAIN>

When you want to use a custom wordlist, visit Assetnote Wordlists, which includes a variety of wordlists.

Next, you can use the FFuF tool to find subdomains with your chosen wordlist. Here’s a simple guide to get you started:

Download a Wordlist: Go to the Assetnote Wordlists website and select a wordlist that fits your needs.Install FFuF: If you haven’t already, install FFuF by following the instructions on their GitHub page.Run FFuF with the Custom Wordlist

Here are some additional resources for finding subdomains:

https://pentest-tools.com/information-gathering/find-subdomains-of-domainhttps://subdomainfinder.c99.nl/https://searchdns.netcraft.com/https://crt.sh/https://securitytrails.com/
Read Entire Article