ipdiscover is a golang tool designed to obtain long lists of IPs from domains. It helps penetration tester and bug bounty hunters to quickly collect IPs to work with other tools, for example, nmap.
โถ go get -u github.com/JavierOlmedo/ipdiscover
ipdiscover accepts line-delimited domains on stdin
:
โถ cat domains.txt
google.es
google.net
google.com
google.edu
โถ cat domains.txt | ipdiscover
google.es;172.217.16.227
google.net;216.58.211.36
google.com;172.217.17.14
google.edu;Unknown
Only one domain:
โถ ipdiscover google.es
google.es;172.217.16.227
You can set the concurrency level with the -t
flag and specifying a number (default 23 concurrencies):
โถ cat domains.txt | ipdiscover -t 99
You can get all ips of a domain that solves nslookup using the -a
flag:
โถ cat domains.txt | ipdiscover -a
This tool was inspired by @tomnomnom scripts. Thanks to them I learned to program in Go!
Made with โค๏ธ in Spain