From 9f43f3df2d8c774ca6be7867a1f134777f627764 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Sat, 5 Apr 2014 01:33:33 +0200 Subject: [PATCH] add ability to ignore results from untrusted servers --- top1m/parse_results.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/top1m/parse_results.py b/top1m/parse_results.py index 0a9817b..9edf509 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -9,6 +9,8 @@ import sys from collections import defaultdict import os +report_untrused=False + cipherstats = defaultdict(int) pfsstats = defaultdict(int) protocolstats = defaultdict(int) @@ -43,6 +45,7 @@ for r,d,flist in os.walk(path): TLS1_2 = False dualstack = False ECDSA = False + trusted = False """ process the file """ f_abs = os.path.join(r,f) @@ -62,6 +65,9 @@ for r,d,flist in os.walk(path): """ loop over list of ciphers """ for entry in results['ciphersuite']: + if 'True' in entry['trusted']: + trusted = True + """ store the ciphers supported """ if 'AES-GCM' in entry['cipher']: if not AESGCM: @@ -126,6 +132,10 @@ for r,d,flist in os.walk(path): TLS1_2 = True json_file.close() + """ don't store stats from unusued servers """ + if report_untrused == False and trusted == False: + continue + """ done with this file, storing the stats """ if DHE or ECDHE: pfsstats['Support PFS'] += 1