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/templates/request_previewform.html | |
| 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/templates/request_previewform.html')
| -rw-r--r-- | libpathod/templates/request_previewform.html | 36 |
1 files changed, 36 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> |
