mdaxfr- Mass DNS AXFR |
git clone git://git.acid.vegas/mdaxfr.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 353f23fb0d1279220ffb73e765160f183a6078c0
parent 10717c83d0455ff7db2c5f06f36730e80d5ada9e Author: acidvegas <acid.vegas@acid.vegas> Date: Sun, 29 Oct 2023 02:12:17 -0400 Fixed root nameserver axfr Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git a/mdaxfr.py b/mdaxfr.py @@ -89,7 +89,7 @@ if __name__ == '__main__': dns.resolver._DEFAULT_TIMEOUT = args.timeout with concurrent.futures.ThreadPoolExecutor(max_workers=args.concurrency) as executor: - futures = [executor.submit(attempt_axfr, '', root + '.root-servers.net', os.path.join(args.output, root + '-root.txt')) for root in get_root_nameservers()] + futures = [executor.submit(attempt_axfr, '', root, os.path.join(args.output, root + '.txt')) for root in get_root_nameservers()] for future in concurrent.futures.as_completed(futures): try: future.result() |