mitmproxy/examples/simple/modify_body_inject_iframe.py

30 lines
832 B
Python
Raw Normal View History

# Usage: mitmdump -s "iframe_injector.py url"
# (this script works best with --anticache)
2016-06-14 01:17:09 +00:00
import sys
from bs4 import BeautifulSoup
class Injector:
def __init__(self, iframe_url):
self.iframe_url = iframe_url
def response(self, flow):
if flow.request.host in self.iframe_url:
return
2016-12-10 11:06:33 +00:00
html = BeautifulSoup(flow.response.content, "html.parser")
if html.body:
iframe = html.new_tag(
"iframe",
src=self.iframe_url,
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
2017-03-23 21:15:41 +00:00
def load(opts):
2016-06-14 01:17:09 +00:00
if len(sys.argv) != 2:
raise ValueError('Usage: -s "iframe_injector.py url"')
return Injector(sys.argv[1])