1
0
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:
dmiller
2012-08-09 21:50:26 +00:00
parent 7dbabbac65
commit 32dfcdc2e6

View File

@@ -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={}