From 453131b8201a22c618b01f6cc09b174c11529bb1 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 30 Jul 2012 18:58:25 +0000 Subject: [PATCH] set_port_version in servicetags.nse. The name, servicetags, is the same one as for the TCP port, but it doesn't have enough popularity in nmap-services-all to appear in nmap-services. --- scripts/servicetags.nse | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/servicetags.nse b/scripts/servicetags.nse index af92be8db..45de96510 100644 --- a/scripts/servicetags.nse +++ b/scripts/servicetags.nse @@ -188,6 +188,9 @@ action = function(host, port) end end + port.name = "servicetags" + nmap.set_port_version(host, port) + return stdnse.format_output(true, output) end