From 32dfcdc2e643307c6ae799abdd39d4452d714ae3 Mon Sep 17 00:00:00 2001 From: dmiller Date: Thu, 9 Aug 2012 21:50:26 +0000 Subject: [PATCH] Fix bug in ssl-enum-ciphers: Strength not defined (broken) --- scripts/ssl-enum-ciphers.nse | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/ssl-enum-ciphers.nse b/scripts/ssl-enum-ciphers.nse index 6583d45d1..3c9fd3d76 100644 --- a/scripts/ssl-enum-ciphers.nse +++ b/scripts/ssl-enum-ciphers.nse @@ -533,9 +533,10 @@ CIPHERS = { } cipherstrength = { - ["weak"] = 0, - ["unknown strength"] = 1, - ["strong"] = 2 + ["broken"] = 0, + ["weak"] = 1, + ["unknown strength"] = 2, + ["strong"] = 3 } local rankedciphers={}