diff options
author | Ujjwal Verma <ujjwalverma1111@gmail.com> | 2017-08-02 18:01:03 +0530 |
---|---|---|
committer | Ujjwal Verma <ujjwalverma1111@gmail.com> | 2017-08-02 18:01:03 +0530 |
commit | 7c1d20d3431fded4d1b973ca3d30f13cb9f2a3ae (patch) | |
tree | 1089f8a714b60e1736f79b7bdad2e41bc89c0451 | |
parent | 422c6de6cc9d321a51d12434ad41a2f4f4710f0a (diff) | |
download | mitmproxy-7c1d20d3431fded4d1b973ca3d30f13cb9f2a3ae.tar.gz mitmproxy-7c1d20d3431fded4d1b973ca3d30f13cb9f2a3ae.tar.bz2 mitmproxy-7c1d20d3431fded4d1b973ca3d30f13cb9f2a3ae.zip |
Improve intercept toggle
-rw-r--r-- | mitmproxy/tools/console/consoleaddons.py | 6 | ||||
-rw-r--r-- | mitmproxy/tools/console/defaultkeys.py | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/mitmproxy/tools/console/consoleaddons.py b/mitmproxy/tools/console/consoleaddons.py index 0b0993c8..853447cf 100644 --- a/mitmproxy/tools/console/consoleaddons.py +++ b/mitmproxy/tools/console/consoleaddons.py @@ -68,12 +68,14 @@ class ConsoleAddon: """ return ["single", "vertical", "horizontal"] - @command.command("intercept_toggle") + @command.command("console.intercept.toggle") def intercept_toggle(self) -> None: """ Toggles interception on/off leaving intercept filters intact. """ - ctx.options.intercept_active = not ctx.options.intercept_active + ctx.options.update( + intercept_active = not ctx.options.intercept_active + ) @command.command("console.layout.cycle") def layout_cycle(self) -> None: diff --git a/mitmproxy/tools/console/defaultkeys.py b/mitmproxy/tools/console/defaultkeys.py index 4634b1e2..8139569e 100644 --- a/mitmproxy/tools/console/defaultkeys.py +++ b/mitmproxy/tools/console/defaultkeys.py @@ -24,7 +24,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", "console.command intercept_toggle", ["global"], "Toggle intercept") + km.add("I", "console.intercept.toggle", ["global"], "Toggle intercept") 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") |