aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple/redirect_requests.py
blob: 51876df74f74a7bf15ad3655386b4a91f87572a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
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"