diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-07-25 11:36:19 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-07-25 11:36:19 +1200 |
commit | 410144c579bcb7abfc5efd0e3a2ed6a75a4bd61c (patch) | |
tree | 9b145b558272b55eff9d4103e1979bf6fa62de63 /libpathod | |
parent | e7e6a60246c28e1399f0fd626c73b4f16b04a995 (diff) | |
download | mitmproxy-410144c579bcb7abfc5efd0e3a2ed6a75a4bd61c.tar.gz mitmproxy-410144c579bcb7abfc5efd0e3a2ed6a75a4bd61c.tar.bz2 mitmproxy-410144c579bcb7abfc5efd0e3a2ed6a75a4bd61c.zip |
Add examples for each preview form.
Diffstat (limited to 'libpathod')
-rw-r--r-- | libpathod/templates/request_previewform.html | 36 | ||||
-rw-r--r-- | libpathod/templates/response_previewform.html | 37 |
2 files changed, 73 insertions, 0 deletions
diff --git a/libpathod/templates/request_previewform.html b/libpathod/templates/request_previewform.html index a7130da0..c09ae018 100644 --- a/libpathod/templates/request_previewform.html +++ b/libpathod/templates/request_previewform.html @@ -9,3 +9,39 @@ > <input type="submit" class="btn" value="preview"> </form> + +<a data-toggle="collapse" data-target="#requestexamples">more examples...</a> +<div id="requestexamples" class="collapse"> + <table class="table table-bordered"> + <tbody > + <tr> + <td><a href="/request_preview?spec=get:/">get:/</a></td> + <td>Get path /</td> + </tr> + </tbody> + <tbody > + <tr> + <td><a href="/request_preview?spec=get:/:b@100">get:/:b@100</a></td> + <td>100 random bytes as the body</td> + </tr> + </tbody> + <tbody > + <tr> + <td><a href='/request_preview?spec=get:/:h"User-Agent"="';drop table browsers;"'>get:/:h"User-Agent"="';drop table browsers;"</a></td> + <td>Add a User-Agent header</td> + </tr> + </tbody> + <tbody> + <tr> + <td><a href="/request_preview?spec=get:/:b@100:dr">get:/:b@100:dr</a></td> + <td>Drop the connection randomly</td> + </tr> + </tbody> + <tbody> + <tr> + <td><a href="/request_preview?spec=get:/:b@100,ascii:ir,@1">get:/:b@100,ascii:ir,@1</a></td> + <td>100 ASCII bytes as the body, and randomly inject a random byte</td> + </tr> + </tbody> + </table> +</div> diff --git a/libpathod/templates/response_previewform.html b/libpathod/templates/response_previewform.html index a82535e4..93d5960a 100644 --- a/libpathod/templates/response_previewform.html +++ b/libpathod/templates/response_previewform.html @@ -12,6 +12,43 @@ <a href="#" id="submitspec" class="btn">go to</a> {% endif %} </form> + +<a data-toggle="collapse" data-target="#responseexamples">more examples...</a> +<div id="responseexamples" class="collapse"> + <table class="table table-bordered"> + <tbody > + <tr> + <td><a href="/response_preview?spec=200">200</a></td> + <td>A basic HTTP 200 response</td> + </tr> + </tbody> + <tbody > + <tr> + <td><a href="/response_preview?spec=200:b@100">200:b@100</a></td> + <td>100 random bytes as the body</td> + </tr> + </tbody> + <tbody > + <tr> + <td><a href='/response_preview?spec=200:b@100:h"Server"="';drop table servers;"'>200:b@100:h"Etag"="';drop table servers;"</a></td> + <td>Add a Server header</td> + </tr> + </tbody> + <tbody> + <tr> + <td><a href="/response_preview?spec=200:b@100:dr">200:b@100:dr</a></td> + <td>Drop the connection randomly</td> + </tr> + </tbody> + <tbody> + <tr> + <td><a href="/response_preview?spec=200:b@100,ascii:ir,@1">200:b@100,ascii:ir,@1</a></td> + <td>100 ASCII bytes as the body, and randomly inject a random byte</td> + </tr> + </tbody> + </table> +</div> + <script> $(function(){ {% if not nocraft %} |