1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-10 15:36:33 +00:00

Send SSLv3 as record version in ClientHello for compatibility

This commit is contained in:
dmiller
2015-03-06 19:59:57 +00:00
parent ee1156eb51
commit 40945dc702

View File

@@ -1323,7 +1323,8 @@ function client_hello(t)
table.insert(h, b)
return record_write("handshake", t["protocol"], table.concat(h))
-- Record layer version should be SSLv3 (lowest compatible record version)
return record_write("handshake", "SSLv3", table.concat(h))
end
local function read_atleast(s, n)