mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 10:16:27 +00:00
Add redirect example
This commit is contained in:
parent
51b775cfd4
commit
7a7914463f
19
examples/redirect_requests.py
Normal file
19
examples/redirect_requests.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
from libmproxy.flow import Response
|
||||||
|
from netlib.odict import ODictCaseless
|
||||||
|
|
||||||
|
"""
|
||||||
|
This example shows two ways to redirect flows to other destinations.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def request(context, flow):
|
||||||
|
if flow.request.host.endswith("example.com"):
|
||||||
|
resp = Response(flow.request,
|
||||||
|
[1,1],
|
||||||
|
200, "OK",
|
||||||
|
ODictCaseless([["Content-Type","text/html"]]),
|
||||||
|
"helloworld",
|
||||||
|
None)
|
||||||
|
flow.request.reply(resp)
|
||||||
|
if flow.request.host.endswith("example.org"):
|
||||||
|
flow.request.host = "mitmproxy.org"
|
||||||
|
flow.request.headers["Host"] = ["mitmproxy.org"]
|
Loading…
Reference in New Issue
Block a user