Hednsextractor
A suite for hunting suspicious targets, expose domains and phishing discovery
#install
go install -v github.com/HuntDownProject/hednsextractor/cmd/hednsextractor@latest
#usage
Getting the IP Addresses used for nasa.gov, and enumerating only the networks.
nslookup nasa.gov | awk '/Address: / {print $2}' | hednsextractor -silent -only-networks
---
Getting the IP Addresses used for nasa.gov, and enumerating only the domains
nslookup nasa.gov | awk '/Address: / {print $2}' | hednsextractor -silent -only-domains | tail -n 10
---
Pipe into httpx
nslookup nasa.gov | awk '/Address: / {print $2}' | hednsextractor -silent -only-domains | httpx -mc 200 -title -ip -td
---
Hunt for file exposures en masse (in this case, git config file, modify path accordingly)
hednsextractor -target nasa.gov -silent | httpx -path /.git/config mc -200 -silent
Last updated