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
|
|
|
|
2012-07-29 01:55: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">
|
2012-07-24 11:13:04 +00:00
|
|
|
<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>
|
|
|
|
|
2012-07-29 01:55:59 +00:00
|
|
|
<p>A pathological web daemon.</p>
|
2012-06-28 23:53:59 +00:00
|
|
|
|
2012-07-24 11:13:04 +00:00
|
|
|
{% include "response_previewform.html" %}
|
2012-07-29 01:55:59 +00:00
|
|
|
|
2012-10-03 23:17:35 +00:00
|
|
|
<br>
|
2012-07-29 01:55:59 +00:00
|
|
|
|
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
|
|
|
|
2012-08-16 10:29:14 +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}}"
|
2012-10-28 09:18:06 +00:00
|
|
|
placeholder="code:[features]"
|
2012-07-25 01:07:27 +00:00
|
|
|
>
|
2012-08-16 10:29:14 +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-29 01:55:59 +00:00
|
|
|
|
2012-07-25 01:07:27 +00:00
|
|
|
<script>
|
|
|
|
$(function(){
|
2012-08-16 10:29:14 +00:00
|
|
|
$("#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">> pathoc -n 3 google.com "get:/:ir,@1"
|
|
|
|
<< 200 OK: 44177 bytes
|
|
|
|
<< 405 Method Not Allowed: 959 bytes
|
|
|
|
<< 200 OK: 44107 bytes</pre>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2012-06-21 04:25:27 +00:00
|
|
|
{% endblock %}
|