mitmproxy/examples/addons/http-reply-from-proxy.py

12 lines
425 B
Python
Raw Normal View History

"""Send a reply from the proxy without sending any data to the remote server."""
from mitmproxy import http
2017-04-28 21:56:14 +00:00
def request(flow: http.HTTPFlow) -> None:
if flow.request.pretty_url == "http://example.com/path":
flow.response = http.Response.make(
200, # (optional) status code
b"Hello World", # (optional) content
2022-04-26 11:53:35 +00:00
{"Content-Type": "text/html"}, # (optional) headers
)