diff options
author | Aldo Cortesi <aldo@corte.si> | 2017-04-26 09:03:03 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 09:03:03 +1200 |
commit | 02c82b1b602b7d5ab03c1e25d7d89f44c593174a (patch) | |
tree | 2e221b195393ccf320bc24400b63940129df4b0f /examples/simple/modify_body_inject_iframe.py | |
parent | 7ee0abbe0c6500540b8becca7021958d55870a18 (diff) | |
parent | e6eeab60946e61047ed858422badbda189a6f9e8 (diff) | |
download | mitmproxy-02c82b1b602b7d5ab03c1e25d7d89f44c593174a.tar.gz mitmproxy-02c82b1b602b7d5ab03c1e25d7d89f44c593174a.tar.bz2 mitmproxy-02c82b1b602b7d5ab03c1e25d7d89f44c593174a.zip |
Merge pull request #2261 from cortesi/addonrevamp
Revamp how addons work
Diffstat (limited to 'examples/simple/modify_body_inject_iframe.py')
-rw-r--r-- | examples/simple/modify_body_inject_iframe.py | 42 |
1 files changed, 22 insertions, 20 deletions
diff --git a/examples/simple/modify_body_inject_iframe.py b/examples/simple/modify_body_inject_iframe.py index 442a5118..d54468d2 100644 --- a/examples/simple/modify_body_inject_iframe.py +++ b/examples/simple/modify_body_inject_iframe.py @@ -1,29 +1,31 @@ -# Usage: mitmdump -s "iframe_injector.py url" # (this script works best with --anticache) -import sys from bs4 import BeautifulSoup class Injector: - def __init__(self, iframe_url): - self.iframe_url = iframe_url + def __init__(self): + self.iframe_url = None + + def load(self, loader): + loader.add_option( + "iframe", str, "", "IFrame to inject" + ) + + def configure(self, options, updated): + self.iframe_url = options.iframe def response(self, flow): - if flow.request.host in self.iframe_url: - return - 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") + if self.iframe_url: + 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") -def load(l): - if len(sys.argv) != 2: - raise ValueError('Usage: -s "iframe_injector.py url"') - return l.boot_into(Injector(sys.argv[1])) +addons = [Injector()] |