Skip to main content
Attack Surface Management
Created bytrickest-mhmdiaa
Last updated7/4/2024

Input Parameters

file
required
List of hostnames
file
Custom wordlist for level-2 enumeration (FUZZ.1.example.com)
file
Custom wordlist for level-3 enumeration (FUZZ.2.1.example.com)
file
Custom wordlist for level-4, and higher, enumeration (FUZZ.3.2.1.example.com, FUZZ.4.3.2.1.example.com, ...)
string
Number of hostnames to brute-force at each level. Default: 200

Outputs

hostnameshostname-details

Enumerate Hostnames via Recursive DNS Brute Force

Description

Enumerate sub-subdomains of a list of hostnames using DNS brute force on the most likely hostnames. The module starts by determining which hostnames have the highest probability of having valid hostnames at other levels and then generates the permutations. For example, given a subdomain like test.foo.bar.baz.example.com, it will try variations like FUZZ.foo.bar.baz.example.com, FUZZ.bar.baz.example.com, FUZZ.baz.example.com, and so on. It uses regularly updated wordlists made specifically for this purpose, based on analyzing the hostnames of hundreds of organizations. You can also use custom wordlists tailored to your organization’s naming conventions.

Features

  • Discovers different environments, regions, and associated software based on the input hostnames.
  • Faster than standard permutation scanning, focusing on high-probability hostnames.
  • Built-in wordlists with the option to use custom ones tailored to your target.
  • A daily validated list of resolvers to ensure accuracy.
  • Result verification using manually curated trusted resolvers.
  • A wildcard filter takes care of false positives.

Inputs

Required

  • subdomains: a list of subdomains

Optional

  • hostnames-per-levell: the number of hostnames to brute-force at each level - a higher value will lead to more comprehensive results but also require more time and/or machines (default: 200)
  • level-2-wordlist: a custom wordlist for level-2 enumeration FUZZ.1.example.com
  • level-3-wordlist” a custom wordlist for level-3 enumeration FUZZ.2.1.example.com
  • level-4-wordlist: a custom wordlist for level-4 (and higher) enumeration FUZZ.3.2.1.example.com

Outputs

  • subdomains: a list of found subdomains
  • subdomain-details: JSONLines records of subdomain discovery details.

Changelog

  • v1.0.0
    • Initial release
  • v1.0.1
    • Improve wildcard filtering