mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
12 lines
352 B
Python
12 lines
352 B
Python
|
"""
|
||
|
This example shows two ways to redirect flows to another server.
|
||
|
"""
|
||
|
|
||
|
|
||
|
def request(flow):
|
||
|
# pretty_host takes the "Host" header of the request into account,
|
||
|
# which is useful in transparent mode where we usually only have the IP
|
||
|
# otherwise.
|
||
|
if flow.request.pretty_host == "example.org":
|
||
|
flow.request.host = "mitmproxy.org"
|