1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-03 05:09:14 +00:00

Add xmloutput to tls-nextprotoneg.nse

This commit is contained in:
dmiller
2013-10-18 18:34:54 +00:00
parent 35dbe4fe37
commit 1b07c5ce54

View File

@@ -26,6 +26,12 @@ For more information , see:
-- | spdy/3
-- | spdy/2
-- |_ http/1.1
--
-- @xmloutput
-- <elem>spdy/4a4</elem>
-- <elem>spdy/3.1</elem>
-- <elem>spdy/3</elem>
-- <elem>http/1.1</elem>
author = "Hani Benhabiles"
@@ -171,6 +177,6 @@ action = function(host, port)
if status and response then
-- Analyze response
local results = check_npn(response)
return stdnse.format_output(true, results)
return results
end
end