1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-02 19:49:11 +00:00

Fix dns-fuzz portrule (was defaulting to tcp)

This commit is contained in:
dmiller
2014-01-31 15:32:23 +00:00
parent b4994505c3
commit 32936167c2

View File

@@ -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.