%PDF- %PDF-
Direktori : /usr/share/doc/mitmproxy/examples/addons/ |
Current File : //usr/share/doc/mitmproxy/examples/addons/http-reply-from-proxy.py |
"""Send a reply from the proxy without sending any data to the remote server.""" from mitmproxy import http def request(flow: http.HTTPFlow) -> None: 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 )