diff --git a/pages/common/mitmproxy.md b/pages/common/mitmproxy.md index 51e1f48b56..c12d5947b3 100644 --- a/pages/common/mitmproxy.md +++ b/pages/common/mitmproxy.md @@ -1,12 +1,17 @@ # mitmproxy > An interactive man-in-the-middle HTTP proxy. -> More information: . +> See also: `mitmweb`. +> More information: . -- Start mitmproxy with default settings: +- Start `mitmproxy` with default settings: `mitmproxy` -- Start mitmproxy bound to custom address and port: +- Start `mitmproxy` bound to a custom address and port: -`mitmproxy -b {{ip_address}} -p {{port}}` +`mitmproxy --listen-host {{ip_address}} --listen-port {{port}}` + +- Start `mitmproxy` using a script to process traffic: + +`mitmproxy --scripts {{path/to/script.py}}` diff --git a/pages/common/mitmweb.md b/pages/common/mitmweb.md new file mode 100644 index 0000000000..689058edb2 --- /dev/null +++ b/pages/common/mitmweb.md @@ -0,0 +1,17 @@ +# mitmweb + +> A web-based interactive man-in-the-middle HTTP proxy. +> See also: `mitmproxy`. +> More information: . + +- Start `mitmweb` with default settings: + +`mitmweb` + +- Start `mitmweb` bound to a custom address and port: + +`mitmweb --listen-host {{ip_address}} --listen-port {{port}}` + +- Start `mitmweb` using a script to process traffic: + +`mitmweb --scripts {{path/to/script.py}}`