diff options
author | Jorge Villacorta <jvillacorta@fusepowered.com> | 2015-12-11 11:09:02 -0500 |
---|---|---|
committer | Jorge Villacorta <jvillacorta@fusepowered.com> | 2015-12-11 11:09:02 -0500 |
commit | ba53c7c9a22fd0061f5271db598806247942aa5e (patch) | |
tree | 6ee752ca3dd151f3965ad450dd2040c34019b171 | |
parent | f446dc4b83b8d92bf7b4430d4ba62ae0d7213a17 (diff) | |
download | mitmproxy-ba53c7c9a22fd0061f5271db598806247942aa5e.tar.gz mitmproxy-ba53c7c9a22fd0061f5271db598806247942aa5e.tar.bz2 mitmproxy-ba53c7c9a22fd0061f5271db598806247942aa5e.zip |
Add default ciphers to avoid issue with iOS9 App Transport Security
-rw-r--r-- | libmproxy/proxy/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/proxy/config.py b/libmproxy/proxy/config.py index 0b45d83e..c7b51311 100644 --- a/libmproxy/proxy/config.py +++ b/libmproxy/proxy/config.py @@ -56,7 +56,7 @@ class ProxyConfig: tcp_hosts=tuple(), http2=False, rawtcp=False, - ciphers_client=None, + ciphers_client=DEFAULT_CLIENT_CIPHERS, ciphers_server=None, certs=tuple(), ssl_version_client="secure", |