mitmproxy/libpathod/templates/index.html

70 lines
1.8 KiB
HTML
Raw Normal View History

2012-06-21 04:25:27 +00:00
{% extends "frame.html" %}
2012-04-28 00:42:03 +00:00
{% block body %}
2012-06-28 23:53:59 +00:00
<div class="row">
<div class="span6 bigtitle">
<div>
<img src="/static/torture.png">
</div>
</div>
<div class="span6 bigtitle">
<div>Tormenting HTTP clients and servers</div>
</div>
2012-06-28 23:53:59 +00:00
</div>
<div class="row">
<div class="span6">
2012-07-30 09:12:42 +00:00
<div>
2012-06-28 23:53:59 +00:00
<h1> <a href="/docs/pathod">pathod</a> </h1>
<p>A pathological web daemon.</p>
2012-06-28 23:53:59 +00:00
{% include "response_previewform.html" %}
2012-10-03 23:17:35 +00:00
<br>
2012-10-03 23:17:35 +00:00
<p>There is also a live, public instance of pathod here:</p>
2012-07-29 04:46:24 +00:00
<p><b>http://public.pathod.net/</b><input
2012-07-29 04:46:24 +00:00
style="width: 14em"
2012-07-25 01:07:27 +00:00
id="publicspec"
name="spec"
class="input-medium search-query"
value="{{spec}}"
placeholder="code:[features]"
2012-07-25 01:07:27 +00:00
>
<a id="gopublic" class="btn">go</a>
2012-07-25 01:07:27 +00:00
</p>
<p>Please use responsibly. There are some restrictions on the
public server.</p>
2012-07-25 01:07:27 +00:00
<script>
$(function(){
$("#gopublic").click(function(){
document.location = "http://public.pathod.net/" + $("#publicspec").val()
2012-07-25 01:07:27 +00:00
});
});
</script>
2012-10-03 23:17:35 +00:00
</div>
</div>
<div class="span6">
<div>
<h1> <a href="/docs/pathoc">pathoc</a> </h1>
<p>A perverse HTTP client.</p>
{% include "request_previewform.html" %}
<pre class="terminal">&gt; pathoc -n 3 google.com "get:/:ir,@1"
&lt;&lt; 200 OK: 44177 bytes
&lt;&lt; 405 Method Not Allowed: 959 bytes
&lt;&lt; 200 OK: 44107 bytes</pre>
</div>
</div>
</div>
2012-06-21 04:25:27 +00:00
{% endblock %}