%PDF- %PDF-
| Direktori : /proc/thread-self/root/usr/share/doc/mitmproxy/examples/addons/ |
| Current File : //proc/thread-self/root/usr/share/doc/mitmproxy/examples/addons/internet_in_mirror.py |
"""
Mirror all web pages.
Useful if you are living down under.
"""
from mitmproxy import http
def response(flow: http.HTTPFlow) -> None:
reflector = b"<style>body {transform: scaleX(-1);}</style></head>"
flow.response.content = flow.response.content.replace(b"</head>", reflector)