mitmproxy/examples/redirect_requests.py

19 lines
601 B
Python
Raw Normal View History

2014-05-15 12:37:05 +00:00
from libmproxy.protocol.http import HTTPResponse
2013-04-07 17:16:01 +00:00
from netlib.odict import ODictCaseless
"""
This example shows two ways to redirect flows to other destinations.
"""
2014-05-15 12:37:05 +00:00
2013-04-07 17:16:01 +00:00
def request(context, flow):
2014-09-03 21:44:54 +00:00
if flow.request.pretty_host(hostheader=True).endswith("example.com"):
2014-05-15 12:37:05 +00:00
resp = HTTPResponse(
[1, 1], 200, "OK",
ODictCaseless([["Content-Type", "text/html"]]),
"helloworld")
2014-09-03 22:10:01 +00:00
flow.reply(resp)
2014-09-03 21:44:54 +00:00
if flow.request.pretty_host(hostheader=True).endswith("example.org"):
2013-04-07 17:16:01 +00:00
flow.request.host = "mitmproxy.org"
2014-09-03 21:44:54 +00:00
flow.request.update_host_header()