mitmproxy/examples/redirect_requests.py

19 lines
576 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):
if flow.request.host.endswith("example.com"):
2014-05-15 12:37:05 +00:00
resp = HTTPResponse(
[1, 1], 200, "OK",
ODictCaseless([["Content-Type", "text/html"]]),
"helloworld")
2013-04-07 17:16:01 +00:00
flow.request.reply(resp)
if flow.request.host.endswith("example.org"):
flow.request.host = "mitmproxy.org"
flow.request.headers["Host"] = ["mitmproxy.org"]