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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user