aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerenc soós <eluch@different.hu>2019-09-27 10:00:50 +0200
committerFerenc soós <eluch@different.hu>2019-09-27 10:00:50 +0200
commit86aacf4d5bf987f1b04b6d02c8cd63b32dda051b (patch)
treeb2e4ca3e12bc7a61c6a7c69ea376ffe55cfeb50e
parent1021f3cae666289f2ef0b385e93ebe6a52be2650 (diff)
downloadmitmproxy-86aacf4d5bf987f1b04b6d02c8cd63b32dda051b.tar.gz
mitmproxy-86aacf4d5bf987f1b04b6d02c8cd63b32dda051b.tar.bz2
mitmproxy-86aacf4d5bf987f1b04b6d02c8cd63b32dda051b.zip
ssl_insecure added to option_whitelist because it was missing
-rw-r--r--mitmproxy/tools/web/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/web/app.py b/mitmproxy/tools/web/app.py
index 6e6b6223..6bfce34e 100644
--- a/mitmproxy/tools/web/app.py
+++ b/mitmproxy/tools/web/app.py
@@ -432,7 +432,7 @@ class Settings(RequestHandler):
def put(self):
update = self.json
option_whitelist = {
- "intercept", "showhost", "upstream_cert",
+ "intercept", "showhost", "upstream_cert", "ssl_insecure",
"rawtcp", "http2", "websocket", "anticache", "anticomp",
"stickycookie", "stickyauth", "stream_large_bodies"
}