aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/templates/index.html
blob: a85a4040944dbcd10cd47526d713a1406da05727 (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
{% extends "frame.html" %} {% block body %}
<div class="masthead">
    <div class="container">
        <h1>pathod: pathological HTTP</h1>

        <p>Crafted malice for tormenting HTTP clients and servers</p>

        <img src="/static/torture.png">
    </div>
</div>

<div class="row">
    <div class="span6">
        <div>
            <h2><a href="/docs/pathod">pathod</a></h2>

            <p>A pathological web daemon.</p>

            {% include "response_previewform.html" %}
            <br>
        </div>
    </div>

    <div class="span6">
        <div>
            <h2><a href="/docs/pathoc">pathoc</a></h2>

            <p>A perverse HTTP client.</p>

            {% include "request_previewform.html" %}
        </div>
    </div>
</div>

<section>
    <div class="page-header">
        <h1>Install</h1>
    </div>
    <div class="row">
        <div class="span6">
            <div>
                <h2>pip</h2>

                <pre>pip install pathod</pre>
            </div>
        </div>

        <div class="span6">
            <div>
                <h2>source</h2>

                <ul>
                    <li>Current release: <a href="http://mitmproxy.org/download/pathod-{{version}}.tar.gz">pathod {{version}}</a></li>
                    <li>GitHub: <a href="https://github.com/mitmproxy/pathod">github.com/mitmproxy/pathod</a></li>
                </ul>
            </div>
        </div>
    </div>
</section>
{% endblock %}