From 32936167c237b7e088a2f84b7d7772269becfd7a Mon Sep 17 00:00:00 2001 From: dmiller Date: Fri, 31 Jan 2014 15:32:23 +0000 Subject: [PATCH] Fix dns-fuzz portrule (was defaulting to tcp) --- scripts/dns-fuzz.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dns-fuzz.nse b/scripts/dns-fuzz.nse index 4df16c1c1..846bbc573 100644 --- a/scripts/dns-fuzz.nse +++ b/scripts/dns-fuzz.nse @@ -40,7 +40,7 @@ license = "Same as Nmap--See http://nmap.org/book/man-legal.html" categories = {"fuzzer", "intrusive"} -portrule = shortport.portnumber(53) +portrule = shortport.portnumber(53, {"tcp", "udp"}) -- How many ms should we wait for the server to respond. -- Might want to make this an argument, but 500 should always be more then enough.