2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2024-10-05 18:53:40 +02:00

count SSLv2 IDEA as insecure

This commit is contained in:
Hubert Kario 2015-03-31 23:45:51 +02:00
parent b673fb976a
commit 37f1d15af1

View File

@ -209,7 +209,8 @@ for r,d,flist in os.walk(path):
if 'ADH' in entry['cipher'] or 'AECDH' in entry['cipher'] or \ if 'ADH' in entry['cipher'] or 'AECDH' in entry['cipher'] or \
'EXP' in entry['cipher'] or \ 'EXP' in entry['cipher'] or \
'DES-CBC3-MD5' 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 ciphertypes += 1
name = "z:" + entry['cipher'] name = "z:" + entry['cipher']
tempcipherstats[name] = 1 tempcipherstats[name] = 1