Skip to content

ndr-repo/C99DomainHunter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C99DomainHunter

Subdomain enumeration & visualization tool for api.c99.nl. Written in PowerShell for Linux & Neo4J AuraDB.

Created for external penetration testers, red team operators, & network security engineers.

Getting started

  • Clone the C99DomainHunter repository
git clone https://github.com/ndr-repo/C99DomainHunter.git
  • Add your C99.nl API key to the .key file
  • Run the collection & enrichment script for your target domain.
pwsh ./C99DomainHunter.ps1 targetDomain.tld
  • Downloads results from C99.nl Subdomain Finder API.
  • Enriches results with DNS type ALL resolutions via DoH.
  • Parses results and saves enriched data to CSV.
    • Results are saved to the log folder inside your C99DomainHunter directory

Visualization in AuraDB

  • Import the enriched CSV results using the included DoH graph model
  • Create a dashboard using the included Cypher queries
image image

Visualization Panel - Unique Resolutions

  • Displays top 10 hosts with most unique resolved DNS entries
MATCH (n:Name)-[r:Resolves]->(d:Data)
RETURN d.data as name, count(DISTINCT n.name) AS uniqueResolvedCount 
ORDER BY uniqueResolvedCount DESC LIMIT 10
image

About

Subdomain enumeration & visualization tool for c99.nl

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published