Advertisement
n0t4dM1n

HOIC booster

Feb 18th, 2012
4,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 3.48 KB | None | 0 0
  1. Dim useragents() as String
  2. Dim referers() as String
  3. dim randheaders() as string
  4. Dim randURLs() as string
  5.  
  6. randURLs.Append "http://www.9gag.com"
  7. randURLs.Append "http://www.9gag.com/hot"
  8. randURLs.Append "http://www.9gag.com/trending"
  9. randURLs.Append "http://www.9gag.com/vote"
  10. randURLs.Append "http://www.9gag.com/fast"
  11. randURLs.Append "http://www.9gag.com/submit"
  12. randURLs.Append "http://www.9gag.com"
  13. randURLs.Append "http://www.9gag.com"
  14. // EDIT THE FOLLOWING STRINGS TO MAKE YOUR OWN BOOST UNIQUE AND THEREFORE MORE EVASIVE!
  15.  
  16. // populate list
  17. useragents.Append "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6"
  18. useragents.Append "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
  19. useragents.Append "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)"
  20. useragents.Append "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
  21. useragents.Append "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 5.1; .NET CLR 1.1.4322)"
  22. useragents.Append "Googlebot/2.1 ( http://www.googlebot.com/bot.html) "
  23. useragents.Append "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/534.14 (KHTML, like Gecko) Chrome/9.0.601.0 Safari/534.14"
  24. useragents.Append "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.14 (KHTML, like Gecko) Chrome/9.0.600.0 Safari/534.14"
  25. useragents.Append "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.0 Safari/534.13"
  26. useragents.Append "Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Ubuntu/10.04 Chromium/9.0.595.0 Chrome/9.0.595.0 Safari/534.13"
  27. useragents.Append "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; .NET CLR 2.0.50727)"
  28. useragents.Append "Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; Media Center PC 4.0; SLCC1; .NET CLR 3.0.04320)"
  29. useragents.Append "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; zh-cn) AppleWebKit/533.18.1 (KHTML, like Gecko) Version/5.0.2 Safari/533.18.5"
  30. useragents.Append "Mozilla/5.0 (Windows; U; Windows NT 6.1; es-ES) AppleWebKit/533.18.1 (KHTML, like Gecko) Version/5.0 Safari/533.16"
  31. useragents.Append "Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51"
  32. useragents.Append "Mozilla/5.0 (Windows NT 5.1; U; Firefox/5.0; en; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 Opera 10.53"
  33.  
  34. // populate referer list
  35. referers.Append "http://www.google.com/?q="+URL
  36. referers.Append URL
  37. referers.Append "http://www.google.com/"
  38. referers.Append "http://www.yahoo.com/"
  39.  
  40. // Add random headers
  41. randheaders.Append "Cache-Control: no-cache"
  42. randheaders.Append "If-Modified-Since: Sat, 29 Oct 1994 11:59:59 GMT"
  43. randheaders.Append "If-Modified-Since: Tue, 18 Aug 2007 12:54:49 GMT"
  44. randheaders.Append "If-Modified-Since: Wed, 30 Jan 2000 01:21:09 GMT"
  45. randheaders.Append "If-Modified-Since: Tue, 18 Aug 2009 08:49:15 GMT"
  46. randheaders.Append "If-Modified-Since: Fri, 20 Oct 2006 09:34:27 GMT"
  47. randheaders.Append "If-Modified-Since: Mon, 29 Oct 2007 11:59:59 GMT"
  48. randheaders.Append "If-Modified-Since: Tue, 18 Aug 2003 12:54:49 GMT"
  49.  
  50. // ------------------ DO NOT EDIT BELOW THIS LINE
  51.  
  52. // generate random referer
  53. Headers.Append "Referer: " + referers(RndNumber(0, referers.UBound))
  54. // generate random user agent (DO NOT MODIFY THIS LINE)
  55. Headers.Append "User-Agent: " + useragents(RndNumber(0, useragents.UBound))
  56. // Generate random headers
  57. Headers.Append randheaders(RndNumber(0, randheaders.UBound))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement