From e8911a992cb85da3b296dbfd363fb1e932d3b011 Mon Sep 17 00:00:00 2001 From: dmiller Date: Mon, 7 Aug 2017 15:51:29 +0000 Subject: [PATCH] Note better way to scan all addresses in resolveall.nse --- scripts/resolveall.nse | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/resolveall.nse b/scripts/resolveall.nse index 46cac4c23..2da6640e5 100644 --- a/scripts/resolveall.nse +++ b/scripts/resolveall.nse @@ -120,6 +120,7 @@ preaction = function() else table.insert(output, "Use the 'newtargets' script-arg to add the results as targets") end + table.insert(output, "Scanning 'hostname*all' will scan all resolved addresses for 'hostname' without using this script.") return xmloutput, stdnse.format_output(true, output) end @@ -151,6 +152,7 @@ hostaction = function(host) else table.insert(output, "Use the 'newtargets' script-arg to add the results as targets") end + table.insert(output, ("Scanning '%s*all' will scan all resolved addresses without using this script."):format(host.targetname)) return xmloutput, stdnse.format_output(true, output) end