2016-11-21 01:16:20 +00:00
|
|
|
"""
|
|
|
|
This example shows how to send a reply from the proxy immediately
|
|
|
|
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:
|
2016-11-21 01:16:20 +00:00
|
|
|
# pretty_url takes the "Host" header of the request into account, which
|
|
|
|
# is useful in transparent mode where we usually only have the IP otherwise.
|
|
|
|
|
|
|
|
if flow.request.pretty_url == "http://example.com/path":
|
|
|
|
flow.response = http.HTTPResponse.make(
|
|
|
|
200, # (optional) status code
|
|
|
|
b"Hello World", # (optional) content
|
|
|
|
{"Content-Type": "text/html"} # (optional) headers
|
|
|
|
)
|