diff options
-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 %} |