From 353f23fb0d1279220ffb73e765160f183a6078c0 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sun, 29 Oct 2023 02:12:17 -0400 Subject: [PATCH] Fixed root nameserver axfr --- mdaxfr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdaxfr.py b/mdaxfr.py index f88e227..4cfb484 100644 --- 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()