From 37f1d15af12ad1037cb6831e73e4f467e20b5d29 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Tue, 31 Mar 2015 23:45:51 +0200 Subject: [PATCH] count SSLv2 IDEA as insecure --- top1m/parse_results.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/top1m/parse_results.py b/top1m/parse_results.py index 2a4a228..2bf9ce6 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -209,7 +209,8 @@ for r,d,flist in os.walk(path): if 'ADH' in entry['cipher'] or 'AECDH' in entry['cipher'] or \ 'EXP' in entry['cipher'] or \ 'DES-CBC3-MD5' in entry['cipher'] or \ - 'RC4-64-MD5' in entry['cipher']: + 'RC4-64-MD5' in entry['cipher'] or \ + 'IDEA-CBC-MD5' in entry['cipher']: ciphertypes += 1 name = "z:" + entry['cipher'] tempcipherstats[name] = 1