PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Anonymous [Plain Text]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<?php
$start = array('a', 'b', 'c', 'd', 'e', 'F');
$st = $start[rand(0,count($start))];
$nick = $st.rand(1111,9999).$st.rand(1111,9999);
$fp = fsockopen('irc.securitychat.org', '6667', $errmsg, $errstr, 30);
fwrite($fp, "USER $nick $nick $nick :$nick\r\nNICK $nick\r\n");
$x=10;
$done = 'x';
sleep(30);
while($fp) {
$cat = fgets($fp);
echo $cat;
fwrite($fp, "PRIVMSG nickserv register niggerdong1234124na {$nick}@gmail.com\r\n");
if(preg_match("#PING (.+)#", $cat, $do)) {
fwrite($fp, "PONG {$do[1]}\r\n");
fwrite($fp, "JOIN #hackthissite\r\n");
fwrite($fp, "JOIN #htshelp\r\n");
sleep(2);
}
if($done == 'x') {
fwrite($fp , "JOIN #hackthissite\r\n");
fwrite($fp, "JOIN #htshelp\r\n");
$done = 'nigger';
}
while($x < 10) {
fwrite($fp, "PRIVMSG #hackthissite :nigger lol rki\r\n");
fwrite($fp, "PRIVMSG #htshelp :nigger lol rki\r\n");
$x++;
}
}
?>
|