From 1b360153a0a7b02e841699b4920c8c097a06d750 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Mon, 24 Nov 2014 13:21:35 +0100 Subject: [PATCH] sum servers that support SSL3 or TLS1 as the highest protocol --- top1m/parse_results.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/top1m/parse_results.py b/top1m/parse_results.py index 09766a3..e604e7c 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -464,10 +464,14 @@ for r,d,flist in os.walk(path): protocolstats['SSL3'] += 1 if not SSL2 and not TLS1 and not TLS1_1 and not TLS1_2: protocolstats['SSL3 Only'] += 1 + if not TLS1 and not TLS1_1 and not TLS1_2: + protocolstats['SSL3 or lower Only'] += 1 if TLS1: protocolstats['TLS1'] += 1 if not SSL2 and not SSL3 and not TLS1_1 and not TLS1_2: protocolstats['TLS1 Only'] += 1 + if not TLS1_1 and not TLS1_2: + protocolstats['TLS1 or lower Only'] += 1 if not SSL2 and (SSL3 or TLS1) and not TLS1_1 and not TLS1_2: protocolstats['SSL3 or TLS1 Only'] += 1 if not SSL2 and not SSL3 and not TLS1: