mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
0c6663d0d5
- Add an options parameter to the start() event. This is to be used by addons on startup to add custom options. - Add a running() event that is called once the proxy is up and running. - With the new paradigm we can't log during master __init__, so add a tiny termstatus addon to print proxy status to terminal once we're running. |
||
---|---|---|
.. | ||
change_upstream_proxy.py | ||
dns_spoofing.py | ||
dup_and_replay.py | ||
flowbasic.py | ||
full_transparency_shim.c | ||
har_dump.py | ||
mitmproxywrapper.py | ||
nonblocking.py | ||
README.md | ||
remote_debug.py | ||
sslstrip.py | ||
stream_modify.py | ||
stream.py | ||
tcp_message.py | ||
tls_passthrough.py | ||
xss_scanner.py |
Complex Examples
Filename | Description |
---|---|
change_upstream_proxy.py | Dynamically change the upstream proxy. |
dns_spoofing.py | Use mitmproxy in a DNS spoofing scenario. |
dup_and_replay.py | Duplicates each request, changes it, and then replays the modified request. |
flowbasic.py | Basic use of mitmproxy's FlowMaster directly. |
full_transparency_shim.c | Setuid wrapper that can be used to run mitmproxy in full transparency mode, as a normal user. |
har_dump.py | Dump flows as HAR files. |
mitmproxywrapper.py | Bracket mitmproxy run with proxy enable/disable on OS X |
nonblocking.py | Demonstrate parallel processing with a blocking script |
remote_debug.py | This script enables remote debugging of the mitmproxy UI with PyCharm. |
sslstrip.py | sslstrip-like funtionality implemented with mitmproxy |
stream.py | Enable streaming for all responses. |
stream_modify.py | Modify a streamed response body. |
tcp_message.py | Modify a raw TCP connection |
tls_passthrough.py | Use conditional TLS interception based on a user-defined strategy. |