mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
* Update http-reply-from-proxy.py Fix #6115 * Update CHANGELOG.md Add one line to unreleased mitmproxy next * Update CHANGELOG.md Correct reference to PR --------- Co-authored-by: Maximilian Hils <git@maximilianhils.com>
11 lines
428 B
Python
11 lines
428 B
Python
"""Send a reply from the proxy without sending the request 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.Response.make(
|
|
200, # (optional) status code
|
|
b"Hello World", # (optional) content
|
|
{"Content-Type": "text/html"}, # (optional) headers
|
|
)
|