aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Kriechbaumer <Kriechi@users.noreply.github.com>2019-09-28 11:29:54 +0200
committerGitHub <noreply@github.com>2019-09-28 11:29:54 +0200
commite791720920ff890f24cc3f0eccec5796fe0c393d (patch)
treeb2e4ca3e12bc7a61c6a7c69ea376ffe55cfeb50e
parent1021f3cae666289f2ef0b385e93ebe6a52be2650 (diff)
parent86aacf4d5bf987f1b04b6d02c8cd63b32dda051b (diff)
downloadmitmproxy-e791720920ff890f24cc3f0eccec5796fe0c393d.tar.gz
mitmproxy-e791720920ff890f24cc3f0eccec5796fe0c393d.tar.bz2
mitmproxy-e791720920ff890f24cc3f0eccec5796fe0c393d.zip
Merge pull request #3648 from Eluch/master
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"
}