mirror of
https://github.com/nmap/nmap.git
synced 2026-08-03 22:29:06 +00:00
Fix a bug (false-negative) in ssl-poodle
This commit is contained in:
parent
814bf97a8f
commit
db098b4e8d
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ local function find_ciphers(host, port, protocol)
|
|||
table.insert(results, name)
|
||||
end
|
||||
-- Another POODLE shortcut
|
||||
if protocol_worked then return results end
|
||||
if protocol_worked and next(results) then return results end
|
||||
end
|
||||
return results
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue