1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 22:21:29 +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 = {
["weak"] = 0,
["unknown strength"] = 1,
["strong"] = 2
["broken"] = 0,
["weak"] = 1,
["unknown strength"] = 2,
["strong"] = 3
}
local rankedciphers={}