From c55d8166c5a70c54900a53f1ed36879e608d113e Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Tue, 31 Mar 2015 23:51:43 +0200 Subject: [PATCH] don't limit client specific RC4 Only to servers with multiple ciphers --- top1m/parse_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/top1m/parse_results.py b/top1m/parse_results.py index 2bf9ce6..6eba070 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -447,7 +447,7 @@ for r,d,flist in os.walk(path): client_selected_cipherstats[client_name][client_selected[client_name]] += 1 - if client_RC4_Only[client_name] and ciphertypes != 1: + if client_RC4_Only[client_name]: cipherstats['x:' + client_name + ' RC4 Only'] += 1 for cipher in temp_client_incompat[client_name]: client_RC4_Only_cipherstats[client_name][cipher] += 1