diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-18 11:27:40 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-18 11:27:40 +0100 |
commit | bf024cd15320119e341cdf9bf0fd4d69df233c64 (patch) | |
tree | 05a6338d94c665421ae1eab07f14aed61b8bd2b1 /examples/iframe_injector.py | |
parent | f42af9061220ec0373e94e96b69434575f60281d (diff) | |
parent | 31ab3a231e540815009ffe5aeae108db2babd8a9 (diff) | |
download | mitmproxy-bf024cd15320119e341cdf9bf0fd4d69df233c64.tar.gz mitmproxy-bf024cd15320119e341cdf9bf0fd4d69df233c64.tar.bz2 mitmproxy-bf024cd15320119e341cdf9bf0fd4d69df233c64.zip |
Merge branch 'master' of https://github.com/mitmproxy/mitmproxy
Diffstat (limited to 'examples/iframe_injector.py')
-rw-r--r-- | examples/iframe_injector.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/iframe_injector.py b/examples/iframe_injector.py new file mode 100644 index 00000000..fc38b136 --- /dev/null +++ b/examples/iframe_injector.py @@ -0,0 +1,27 @@ +# Usage: mitmdump -s "iframe_injector.py url" +# (this script works best with --anticache) +from bs4 import BeautifulSoup +from mitmproxy.models import decoded + + +def start(context, argv): + if len(argv) != 2: + raise ValueError('Usage: -s "iframe_injector.py url"') + context.iframe_url = argv[1] + + +def response(context, flow): + if flow.request.host in context.iframe_url: + return + with decoded(flow.response): # Remove content encoding (gzip, ...) + html = BeautifulSoup(flow.response.content) + if html.body: + iframe = html.new_tag( + "iframe", + src=context.iframe_url, + frameborder=0, + height=0, + width=0) + html.body.insert(0, iframe) + flow.response.content = str(html) + context.log("Iframe inserted.") |