mitmproxy/examples/contrib/modify_body_inject_iframe.py

27 lines
761 B
Python
Raw Permalink Normal View History

# (this script works best with --anticache)
from bs4 import BeautifulSoup
2017-04-28 21:56:14 +00:00
from mitmproxy import ctx, http
class Injector:
def load(self, loader):
loader.add_option(
"iframe", str, "", "IFrame to inject"
)
2017-04-28 21:56:14 +00:00
def response(self, flow: http.HTTPFlow) -> None:
if ctx.options.iframe:
html = BeautifulSoup(flow.response.content, "html.parser")
if html.body:
iframe = html.new_tag(
"iframe",
src=ctx.options.iframe,
frameborder=0,
height=0,
width=0)
html.body.insert(0, iframe)
flow.response.content = str(html).encode("utf8")
2016-07-08 01:37:33 +00:00
addons = [Injector()]