From b3070fabdd38b77faa164e4a300160dc6b30ca6d Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Tue, 27 Feb 2018 16:44:50 -0800 Subject: [PATCH] Revert "Merge pull request #67 from vbanos/update-ssl-ciphers" This reverts commit a6fa04bcae47d1f61d8dac519fba66af0b129d4b, reversing changes made to 6d6f2c9aa0c7a2bf2aa54f7d74e25e072135fae4. --- warcprox/mitmproxy.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/warcprox/mitmproxy.py b/warcprox/mitmproxy.py index e0d6fb6..1bbd930 100644 --- a/warcprox/mitmproxy.py +++ b/warcprox/mitmproxy.py @@ -64,7 +64,6 @@ import urlcanon import time import collections import cProfile -from urllib3.util.ssl_ import DEFAULT_CIPHERS class ProxyingRecorder(object): """ @@ -260,7 +259,6 @@ class MitmProxyHandler(http_server.BaseHTTPRequestHandler): context = ssl.create_default_context() context.check_hostname = False context.verify_mode = ssl.CERT_NONE - context.ciphers = DEFAULT_CIPHERS self._remote_server_sock = context.wrap_socket( self._remote_server_sock, server_hostname=self.hostname) except AttributeError: