1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 20:51:30 +00:00

Update TLS-ALPN ids from IANA. Closes #1849

This commit is contained in:
dmiller
2020-01-09 17:59:17 +00:00
parent 52e3939e85
commit d63d6a8c97

View File

@@ -159,6 +159,10 @@ end
action = function(host, port) action = function(host, port)
local alpn_protos = { local alpn_protos = {
-- IANA-registered names -- IANA-registered names
-- https://www.iana.org/assignments/tls-extensiontype-values/alpn-protocol-ids.csv
-- Last-Modified: Thu, 31 Oct 2019 22:30:11 GMT
"http/0.9",
"http/1.0",
"http/1.1", "http/1.1",
"spdy/1", "spdy/1",
"spdy/2", "spdy/2",
@@ -173,6 +177,11 @@ action = function(host, port)
"imap", "imap",
"pop3", "pop3",
"managesieve", "managesieve",
"coap",
"xmpp-client",
"xmpp-server",
"acme-tls/1",
"mqtt",
-- Other sources -- Other sources
"grpc-exp", -- gRPC, see grpc.io "grpc-exp", -- gRPC, see grpc.io
} }