mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 18:18:25 +00:00
18 lines
595 B
Python
18 lines
595 B
Python
|
# Usage: mitmdump -s "iframe_injector.py url"
|
||
|
# (this script works best with --anticache)
|
||
|
from libmproxy.protocol.http import decoded
|
||
|
|
||
|
|
||
|
def start(ctx, argv):
|
||
|
if len(argv) != 2:
|
||
|
raise ValueError('Usage: -s "iframe_injector.py url"')
|
||
|
ctx.iframe_url = argv[1]
|
||
|
|
||
|
|
||
|
def handle_response(ctx, flow):
|
||
|
with decoded(flow.response): # Remove content encoding (gzip, ...)
|
||
|
c = flow.response.replace(
|
||
|
'<body>',
|
||
|
'<body><iframe src="%s" frameborder="0" height="0" width="0"></iframe>' % ctx.iframe_url)
|
||
|
if c > 0:
|
||
|
ctx.log("Iframe injected!")
|