A tool to create a simple map of a specific domain dns records
python3 dnsmapper.py -d google.com -v -a -n
It will take about 30 seconds to finish
For yahoo.com the result should look like this:
import dnsmapper
dnsmapper.init_all(extract_subdomains_from_any_return=True,verbous=True)
ret = dnsmapper.main("google.com")
print(ret[0])
print("return_ipv4 = {}".format(ret[1]))
print("return_ipv6 = {}".format(ret[2]))
Extract IPv4 & IPv6 from any return data and passing them through the loop
