<html><body>
<script language="JavaScript">
<!-- Code taken from http://www.aardwulf.com/tutor/base64/base64.html
function go(input) {
var keyStr = "ABCDEFGHIJKLMNOP" +
"QRSTUVWXYZabcdef" +
"ghijklmnopqrstuv" +
"wxyz0123456789+/" +
"=";
var output = "";
var chr1, chr2, chr3 = "";
var enc1, enc2, enc3, enc4 = "";
var i = 0;
do {
chr1 = input.charCodeAt(i++);
chr2 = input.charCodeAt(i++);
chr3 = input.charCodeAt(i++);
enc1 = chr1 >> 2;
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
enc4 = chr3 & 63;
if (isNaN(chr2)) {
enc3 = enc4 = 64;
} else if (isNaN(chr3)) {
enc4 = 64;
}
output = output +
keyStr.charAt(enc1) +
keyStr.charAt(enc2) +
keyStr.charAt(enc3) +
keyStr.charAt(enc4);
chr1 = chr2 = chr3 = "";
enc1 = enc2 = enc3 = enc4 = "";
} while (i < input.length);
var loc = "/relay.php/"
loc += output;
window.location = loc;
}
-->
</script>
<form name="relay" onsubmit="go(document.relay.loc.value);
return false;">
<table style="background: #E0E0E0; border:
1px solid #A0A0A0;" width="100%">
<tr><td style="font-family: monospace,
sans-serif; font-size: 12px"></td></tr>
<tr><td style="text-align: center;">
<input type="text" name="loc" size="80"
value="http://" style="border: 1px solid #000000;">
<input type="submit" value=" Go ">
</td></tr>
<tr><td style="font-family: sans-serif;
font-size: 12px; text-align: center;">
<a href="/relay.php">Home</a></td></tr>
</table>
</form>
</body></html>
<html>
<head><title>phpRelay v0.4
Beta</title></head>
<body>
<p align="center" style="font-family:
sans-serif; font-size: 12px;">phpRelay v0.4 Beta</p>
<form action="/relay.php" method="POST">
<table align="center" style="background:
#E0E0E0; border: 1px solid #A0A0A0; font-family: sans-serif; font-size: 12px;" cellpadding="10">
<tr valign="top"><td>
<input name="referer" type="checkbox">
Include HTTP referer<br>
<input name="cookies" type="checkbox"
checked> Enable cookies<br>
<input name="debug" type="checkbox">
Enable debugging<br>
<input name="benchmark" type="checkbox">
Benchmark load time<br>
</td><td>
<input type="submit" name="set_opts"
value=" Set ">
</td></tr>
</table>
</form>
<table align="center" cellspacing="10"
style="font-family: sans-serif; font-size: 12px;" width="60%">
<tr valign="top"><td><nobr><b>Include
HTTP referer</b></nobr></td>
<td>By default HTTP includes the
refering address when making a request. This can be disabled to provide for better privacy, however it is sometimes necessary
to avoid triggering anti-leech scripts. (Default: OFF)</td></tr>
<tr valign="top"><td><nobr><b>Enable
cookies</b></nobr></td>
<td>HTTP cookies can be enabled or
disabled, however there is currently no support for cookies assigned via JavaScript. (Default: ON)</td></tr>
<tr valign="top"><td><nobr><b>Enable
debugging</b></nobr></td>
<td>Debugging will produce a much
more verbose log, useful in troubleshooting connectivity problems. (Default: OFF)</td></tr>
<tr valign="top"><td><nobr><b>Benchmark
load time</b></nobr></td>
<td>Record the initial page load
time at the end of the page (in HTML comment). (Default: OFF)</td></tr>
</table>
<p align="center" style="font-family:
sans-serif; font-size: 12px;">
<a href="http://www.l0gic.net/phpRelay/">http://www.l0gic.net/phpRelay</a>
</p>
</body></html>