mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-05 07:23:42 +01:00
count SSLv2 IDEA as insecure
This commit is contained in:
parent
b673fb976a
commit
37f1d15af1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user