1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-15 20:29:03 +00:00

Remove incomplete certificate_request parser in tls.record_read

This commit is contained in:
dmiller
2014-12-02 18:36:17 +00:00
parent 5d6a024c7b
commit e50e802c4b

View File

@@ -1183,11 +1183,6 @@ function record_read(buffer, i)
-- parse these with sslcert.parse_ssl_certificate
table.insert(b["certificates"], cert)
end
elseif b["type"] == "certificate_request" then
local num_types
j, num_types = bin.unpack("C", buffer, j)
for i = 1, num_types do
end
else
-- TODO: implement other handshake message types
stdnse.debug2("Unknown handshake message type: %s", b["type"])