diff options
Diffstat (limited to 'examples/redirect_requests.py')
-rw-r--r-- | examples/redirect_requests.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/redirect_requests.py b/examples/redirect_requests.py index ca24c42a..5cc81633 100644 --- a/examples/redirect_requests.py +++ b/examples/redirect_requests.py @@ -5,12 +5,12 @@ from libmproxy.models import HTTPResponse from netlib.http import Headers def request(context, flow): - # pretty_host(hostheader=True) takes the Host: header of the request into account, + # 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. # Method 1: Answer with a locally generated response - if flow.request.pretty_host(hostheader=True).endswith("example.com"): + if flow.request.pretty_host.endswith("example.com"): resp = HTTPResponse( [1, 1], 200, "OK", Headers(Content_Type="text/html"), @@ -18,6 +18,5 @@ def request(context, flow): flow.reply(resp) # Method 2: Redirect the request to a different server - if flow.request.pretty_host(hostheader=True).endswith("example.org"): - flow.request.host = "mitmproxy.org" - flow.request.update_host_header() + if flow.request.pretty_host.endswith("example.org"): + flow.request.host = "mitmproxy.org"
\ No newline at end of file |