From 86aacf4d5bf987f1b04b6d02c8cd63b32dda051b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20so=C3=B3s?= Date: Fri, 27 Sep 2019 10:00:50 +0200 Subject: [PATCH] ssl_insecure added to option_whitelist because it was missing --- mitmproxy/tools/web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/tools/web/app.py b/mitmproxy/tools/web/app.py index 6e6b62236..6bfce34e0 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" }