1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-16 12:49:02 +00:00

Fix a bug (false-negative) in ssl-poodle

This commit is contained in:
dmiller
2014-10-22 17:01:17 +00:00
parent 814bf97a8f
commit db098b4e8d

View File

@@ -294,7 +294,7 @@ local function find_ciphers(host, port, protocol)
table.insert(results, name) table.insert(results, name)
end end
-- Another POODLE shortcut -- Another POODLE shortcut
if protocol_worked then return results end if protocol_worked and next(results) then return results end
end end
return results return results
end end