From 2917b9620a4da2f332648c9ce866341d9a2cdb40 Mon Sep 17 00:00:00 2001 From: rugk Date: Thu, 6 Aug 2020 21:42:35 +0200 Subject: [PATCH] Fix intercept toggeling Fixes https://github.com/mitmproxy/mitmproxy/issues/4109 --- mitmproxy/tools/console/defaultkeys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/tools/console/defaultkeys.py b/mitmproxy/tools/console/defaultkeys.py index a27fd85ce..3bab168b2 100644 --- a/mitmproxy/tools/console/defaultkeys.py +++ b/mitmproxy/tools/console/defaultkeys.py @@ -26,7 +26,7 @@ def map(km): km.add("ctrl f", "console.nav.pagedown", ["global"], "Page down") km.add("ctrl b", "console.nav.pageup", ["global"], "Page up") - km.add("I", "set intercept_active toggle", ["global"], "Toggle intercept") + km.add("I", "set intercept_active toggle", ["global"], "Toggle whether the filtering via the intercept option is enabled") km.add("i", "console.command.set intercept", ["global"], "Set intercept") km.add("W", "console.command.set save_stream_file", ["global"], "Stream to file") km.add("A", "flow.resume @all", ["flowlist", "flowview"], "Resume all intercepted flows")