Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.6 KB

README.md

File metadata and controls

57 lines (36 loc) · 1.6 KB

domainator

This tool searches all the domains for your name

git clone $REPO
cd $REPO
go get
go build

Dependencies

Operation

You must create the dns-list and tld-list files first.

Then run ./domainator --name=example and it will check for all the domains.

You may have to set ulimit -n 2048 to make this work, since it opens a lot of ports all at once.

DNS and TLD files

This tool uses two files ./dns-list.tab and tld-list.tab which have been manually constructed. The dns-list is the list of servers we'll query, round-robin. The tld-list is the set of TLDs that will be queried.

You can get some details on domains [https://www.iana.org/domains/root/files](from IANA).

TLD Files

Run these in the project directory.

  • wget 'https://www.internic.net/domain/root.zone'
  • wget 'https://data.iana.org/TLD/tlds-alpha-by-domain.txt'

Domain Stats

Misc Notes