mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 09:02:08 +02:00
mitmweb: add page, mitmproxy: update page (#10262)
* mitmproxy: replace deprecated arguments and add example * mitmweb: add page --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
parent
481d29f45d
commit
081e4c0b8b
2 changed files with 26 additions and 4 deletions
|
@ -1,12 +1,17 @@
|
||||||
# mitmproxy
|
# mitmproxy
|
||||||
|
|
||||||
> An interactive man-in-the-middle HTTP proxy.
|
> An interactive man-in-the-middle HTTP proxy.
|
||||||
> More information: <https://mitmproxy.org>.
|
> See also: `mitmweb`.
|
||||||
|
> More information: <https://docs.mitmproxy.org/stable/concepts-options>.
|
||||||
|
|
||||||
- Start mitmproxy with default settings:
|
- Start `mitmproxy` with default settings:
|
||||||
|
|
||||||
`mitmproxy`
|
`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}}`
|
||||||
|
|
17
pages/common/mitmweb.md
Normal file
17
pages/common/mitmweb.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# mitmweb
|
||||||
|
|
||||||
|
> A web-based interactive man-in-the-middle HTTP proxy.
|
||||||
|
> See also: `mitmproxy`.
|
||||||
|
> More information: <https://docs.mitmproxy.org/stable/concepts-options>.
|
||||||
|
|
||||||
|
- 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}}`
|
Loading…
Add table
Reference in a new issue