mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
Fix bug in ssl-enum-ciphers: Strength not defined (broken)
This commit is contained in:
parent
7dbabbac65
commit
32dfcdc2e6
1 changed files with 4 additions and 3 deletions
|
|
@ -533,9 +533,10 @@ CIPHERS = {
|
|||
}
|
||||
|
||||
cipherstrength = {
|
||||
["weak"] = 0,
|
||||
["unknown strength"] = 1,
|
||||
["strong"] = 2
|
||||
["broken"] = 0,
|
||||
["weak"] = 1,
|
||||
["unknown strength"] = 2,
|
||||
["strong"] = 3
|
||||
}
|
||||
|
||||
local rankedciphers={}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue