mirror of
https://github.com/nmap/nmap.git
synced 2025-12-12 02:39:03 +00:00
Fix bug in ssl-enum-ciphers: Strength not defined (broken)
This commit is contained in:
@@ -533,9 +533,10 @@ CIPHERS = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cipherstrength = {
|
cipherstrength = {
|
||||||
["weak"] = 0,
|
["broken"] = 0,
|
||||||
["unknown strength"] = 1,
|
["weak"] = 1,
|
||||||
["strong"] = 2
|
["unknown strength"] = 2,
|
||||||
|
["strong"] = 3
|
||||||
}
|
}
|
||||||
|
|
||||||
local rankedciphers={}
|
local rankedciphers={}
|
||||||
|
|||||||
Reference in New Issue
Block a user