Skip to content

Commit

Permalink
better detection for EXP and low grade ciphers in stats
Browse files Browse the repository at this point in the history
EXP is self explanatory - export grade
DES-CBC3-MD5 is available only in SSLv2 - not secure
RC4-64-MD5 is also a weakened version (though not marked as export grade)
  • Loading branch information
tomato42 committed May 29, 2015
1 parent 3bc8dc5 commit 341f657
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion top1m/parse_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ def natural_sort(l):
temp_client_incompat[client_name][entry['cipher']] = 1

""" store the ciphers supported """
if 'ADH' in entry['cipher'] or 'AECDH' in entry['cipher']:
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']:
ciphertypes += 1
name = "z:" + entry['cipher']
tempcipherstats[name] = 1
Expand Down

0 comments on commit 341f657

Please sign in to comment.