mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-22 14:23:41 +01:00
don't count export grade ciphers towards PFS
This commit is contained in:
parent
1b360153a0
commit
82f643244e
@ -230,16 +230,18 @@ for r,d,flist in os.walk(path):
|
|||||||
tempcipherstats['Insecure'] = 1
|
tempcipherstats['Insecure'] = 1
|
||||||
|
|
||||||
""" store key handshake methods """
|
""" store key handshake methods """
|
||||||
if 'ECDHE' in entry['cipher']:
|
if 'EXP' in entry['cipher']:
|
||||||
|
pass
|
||||||
|
elif 'AECDH' in entry['cipher']:
|
||||||
|
AECDH = True
|
||||||
|
elif 'ADH' in entry['cipher']:
|
||||||
|
ADH = True
|
||||||
|
elif 'ECDHE' in entry['cipher']:
|
||||||
ECDHE = True
|
ECDHE = True
|
||||||
temppfsstats[entry['pfs']] = 1
|
temppfsstats[entry['pfs']] = 1
|
||||||
elif 'DHE' in entry['cipher'] or 'EDH' in entry['cipher']:
|
elif 'DHE' in entry['cipher'] or 'EDH' in entry['cipher']:
|
||||||
DHE = True
|
DHE = True
|
||||||
temppfsstats[entry['pfs']] = 1
|
temppfsstats[entry['pfs']] = 1
|
||||||
elif 'AECDH' in entry['cipher']:
|
|
||||||
AECDH = True
|
|
||||||
elif 'ADH' in entry['cipher']:
|
|
||||||
ADH = True
|
|
||||||
elif 'ECDH' in entry['cipher']:
|
elif 'ECDH' in entry['cipher']:
|
||||||
ECDH = True
|
ECDH = True
|
||||||
elif 'DH' in entry['cipher']:
|
elif 'DH' in entry['cipher']:
|
||||||
|
Loading…
Reference in New Issue
Block a user