aboutsummaryrefslogtreecommitdiffstats
path: root/test/examples/test_examples.py
blob: 46fdcd362ccebed18ff052ff536726bb10723f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import pytest

from mitmproxy import options
from mitmproxy import contentviews
from mitmproxy import proxy
from mitmproxy import master
from mitmproxy.addons import script

from mitmproxy.test import tflow
from mitmproxy.test import tutils
from mitmproxy.net.http import Headers

from ..mitmproxy import tservers

example_dir = tutils.test_data.push("../examples")


class ScriptError(Exception):
    pass


class RaiseMaster(master.Master):
    def add_log(self, e, level):
        if level in ("warn", "error"):
            raise ScriptError(e)


def tscript(cmd, args=""):
    o = options.Options()
    cmd = example_dir.path(cmd) + " " + args
    m = RaiseMaster(o, proxy.DummyServer())
    sc = script.Script(cmd)
    m.addons.add(sc)
    return m, sc


class TestScripts(tservers.MasterTest):
    def test_add_header(self):
        m, _ = tscript("simple/add_header.py")
        f = tflow.tflow(resp=tutils.tresp())
        m.addons.handle_lifecycle("response", f)
        assert f.response.headers["newheader"] == "foo"

    def test_custom_contentviews(self):
        m, sc = tscript("simple/custom_contentview.py")
        swapcase = contentviews.get("swapcase")
        _, fmt = swapcase(b"<html>Test!</html>")
        assert any(b'tEST!' in val[0][1] for val in fmt)

    def test_iframe_injector(self):
        with pytest.raises(ScriptError):
            tscript("simple/modify_body_inject_iframe.py")

        m, sc = tscript("simple/modify_body_inject_iframe.py", "http://example.org/evil_iframe")
        f = tflow.tflow(resp=tutils.tresp(content=b"<html><body>mitmproxy</body></html>"))
        m.addons.handle_lifecycle("response", f)
        content = f.response.content
        assert b'iframe' in content and b'evil_iframe' in content

    def test_modify_form(self):
        m, sc = tscript("simple/modify_form.py")

        form_header = Headers(content_type="application/x-www-form-urlencoded")
        f = tflow.tflow(req=tutils.treq(headers=form_header))
        m.addons.handle_lifecycle("request", f)

        assert f.request.urlencoded_form["mitmproxy"] == "rocks"

        f.request.headers["content-type"] = ""
        m.addons.handle_lifecycle("request", f)
        assert list(f.request.urlencoded_form.items()) == [("foo", "bar")]

    def test_modify_querystring(self):
        m, sc = tscript("simple/modify_querystring.py")
        f = tflow.tflow(req=tutils.treq(path="/search?q=term"))

        m.addons.handle_lifecycle("request", f)
        assert f.request.query["mitmproxy"] == "rocks"

        f.request.path = "/"
        m.addons.handle_lifecycle("request", f)
        assert f.request.query["mitmproxy"] == "rocks"

    def test_arguments(self):
        m, sc = tscript("simple/script_arguments.py", "mitmproxy rocks")
        f = tflow.tflow(resp=tutils.tresp(content=b"I <3 mitmproxy"))
        m.addons.handle_lifecycle("response", f)
        assert f.response.content == b"I <3 rocks"

    def test_redirect_requests(self):
        m, sc = tscript("simple/redirect_requests.py")
        f = tflow.tflow(req=tutils.treq(host="example.org"))
        m.addons.handle_lifecycle("request", f)
        assert f.request.host == "mitmproxy.org"

    def test_send_reply_from_proxy(self):
        m, sc = tscript("simple/send_reply_from_proxy.py")
        f = tflow.tflow(req=tutils.treq(host="example.com", port=80))
        m.addons.handle_lifecycle("request", f)
        assert f.response.content == b"Hello World"

    def test_dns_spoofing(self):
        m, sc = tscript("complex/dns_spoofing.py")
        original_host = "example.com"

        host_header = Headers(host=original_host)
        f = tflow.tflow(req=tutils.treq(headers=host_header, port=80))

        m.addons.handle_lifecycle("requestheaders", f)

        # Rewrite by reverse proxy mode
        f.request.scheme = "https"
        f.request.port = 443

        m.addons.handle_lifecycle("request", f)

        assert f.request.scheme == "http"
        assert f.request.port == 80

        assert f.request.headers["Host"] == original_host