From 22ccfdc9af7d6ca5e6f2c8be06d5efc337dcce27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Kriz=CC=8Cnar?= Date: Mon, 23 Dec 2024 21:38:01 +0100 Subject: [PATCH] Use passed NS servers --- dnsrecon/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dnsrecon/cli.py b/dnsrecon/cli.py index cdd8a87c..1b8e4cf3 100755 --- a/dnsrecon/cli.py +++ b/dnsrecon/cli.py @@ -1838,6 +1838,7 @@ def main(): spf_enum = arguments.s wildcard_filter = arguments.f proto = 'tcp' if arguments.tcp else 'udp' + ns_server = arguments.ns_server.split(',') if arguments.ns_server else [] # Initialize an empty list to hold all records all_returned_records = []