Results 1 to 12 of 12
  1. #1
    notreall's Avatar
    Join Date
    Apr 2019
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    90

    Minecraft account checker (python)

    Hi guys. I created a simple command line account checker with python that will check a list of accounts in a file. Feel free to add to it or give suggestions on how I can improve it.

    Documentation
    Each account should be on a seperate line. The order should be username[seperatorhere]password or username[seperatorhere]ingame[seperatorhere]password with the seperator being the same.
    You can use different arguments alongside the file in the command line to use it to your liking.
    These arguments are:

    -s : change the separator between the username and password. to use spaces put ^ instead, it will be replaced with a space. (Defaults to : if argument not used)

    -f : instruct it what file to read from that contains the usernames and passwords. (Defaults to accounts.txt if not used)

    -o : instruct the file to be used to output the working usernames and passwords. (Defaults to output.txt if not used)
    NOTE: The output file will be overwritten if the same file is used.

    --complex: if used the output file will contain extra information on each account instead of just the working username and passwords
    The data is in JSON format and looks like so:
    {
    "username": // The accounts username for logging in (String)
    "password": // The password for logging in (String)
    "nickname": // The in game name (String)
    "paid": // If the account is paid (Boolean)
    "regIP": // Ip where the account was registered (String)
    "DOB": // Accounts birth day (String in format day-month-year)
    "suspended": // If the account is suspended (Boolean)
    "blocked": // If the account is blocked (Boolean)
    "emailVerified": // If the account is verified with an email (Boolean)
    "secured": // If the account is 'secure' (Boolean)
    }
    If not used the output will be the accounts that worked formatted how they were inputted

    Example
    This example should work on any OS but definitely works on linux:
    python accountchecker.py -f list -o working -s = --complex

    <b>Downloadable Files</b> Downloadable Files

  2. The Following 90 Users Say Thank You to notreall For This Useful Post:

    AlphaDinosaur89 (06-22-2020),anerdv3 (05-05-2021),asdasdasdf32 (11-07-2021),aswd123 (08-04-2020),avoxmot (08-29-2019),backzs (06-10-2019),BadEtOrdiLesCons (05-26-2020),BalinKing (08-12-2020),Bastio_20 (06-28-2021),bee__bop (11-24-2021),bluedolph1n (08-30-2020),bobdayle7 (06-14-2019),Bulze (06-23-2019),calebbx239 (04-11-2020),cfhackerFaydh (08-06-2019),chrisnm (01-11-2022),Combay (05-04-2019),crapmark126 (09-10-2019),cyx4 (05-12-2020),D3XX3R (09-01-2019),dado243 (08-22-2019),dervox (07-08-2019),diox_wt (11-20-2020),DonniTM (11-18-2020),DoomRanger (01-12-2020),Ecolipsy (01-08-2020),ERGAEryhgaeherh (08-18-2019),Fermia (04-24-2020),florinhacker (02-08-2021),fograider (08-12-2020),franciscotekashi (09-15-2020),GraTizz (11-13-2019),GraveYautja (12-07-2019),IEatJelly (07-14-2019),iimahfoudh (09-02-2019),ImanuelUbyaan (07-17-2020),inlineskater720 (08-14-2019),ItzDreaMBG (11-07-2020),JohnC2345 (04-17-2021),JustLooking56 (03-12-2020),KenKung (10-26-2019),KillerSombrio (03-27-2021),Kzt_sdas (01-11-2020),laupaev (06-12-2019),LazyBaxy (09-01-2019),leloler (09-15-2019),Lucidanti (10-19-2022),Mateo1238 (06-30-2019),MortathaMA0 (06-23-2019),Muhammadj81 (05-28-2019),ofek3 (07-29-2020),omgnoo (01-24-2022),patrocle3 (12-10-2019),pavlikpromix (12-19-2020),pexord (07-20-2020),PlayerDa1 (04-27-2021),plosition (02-11-2024),Pvnish (07-25-2021),ricky94 (05-01-2019),ryvenge (08-16-2019),scratchyentree6 (05-12-2020),serii64124 (07-13-2023),shang_tiao (11-17-2020),sike2005 (08-14-2019),sleipe (02-13-2021),Slifer85 (08-11-2019),Subpar Username (11-06-2022),TechnoRunner18 (02-21-2020),The519GodFather (07-19-2019),thenoobwalid (06-08-2019),Thisislove3 (06-02-2021),TodoMH (07-08-2020),tomee2045 (12-08-2019),U6rK8AI (05-17-2019),uddinaj1 (08-20-2019),Uknoknows (10-27-2020),v9p1 (04-26-2019),VaLenTin91 (07-06-2019),viniciuspaes159 (07-17-2019),votusyt (06-24-2020),WaLAndGuan (07-12-2021),webana5482 (09-03-2020),wreckseal (10-25-2019),X3FER (07-25-2021),xafoen (10-21-2020),XelpmiS (06-17-2020),xMrPhede (07-01-2019),xoreqz (07-17-2019),X_JustWessel_X (12-08-2019),Yazhog420 (03-31-2020)

  3. #2
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    Last edited by T-800; 04-22-2019 at 12:41 PM.

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  4. #3
    notreall's Avatar
    Join Date
    Apr 2019
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    90
    Update:
    Fixed a typo that would stop it working

    Fix:
    On line 97 change "workingCount" to "workedCount"
    I can't post links so can't share the updated code myself.

  5. #4
    AERGAERgaregaergarwgerg's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    46
    Reputation
    27
    Thanks
    307
    My Mood
    Cool
    Quote Originally Posted by notreall View Post
    Hi guys. I created a simple command line account checker with python that will check a list of accounts in a file. Feel free to add to it or give suggestions on how I can improve it.

    Documentation
    Each account should be on a seperate line. The order should be username[seperatorhere]password or username[seperatorhere]ingame[seperatorhere]password with the seperator being the same.
    You can use different arguments alongside the file in the command line to use it to your liking.
    These arguments are:

    -s : change the separator between the username and password. to use spaces put ^ instead, it will be replaced with a space. (Defaults to : if argument not used)

    -f : instruct it what file to read from that contains the usernames and passwords. (Defaults to accounts.txt if not used)

    -o : instruct the file to be used to output the working usernames and passwords. (Defaults to output.txt if not used)
    NOTE: The output file will be overwritten if the same file is used.

    --complex: if used the output file will contain extra information on each account instead of just the working username and passwords
    The data is in JSON format and looks like so:
    {
    "username": // The accounts username for logging in (String)
    "password": // The password for logging in (String)
    "nickname": // The in game name (String)
    "paid": // If the account is paid (Boolean)
    "regIP": // Ip where the account was registered (String)
    "DOB": // Accounts birth day (String in format day-month-year)
    "suspended": // If the account is suspended (Boolean)
    "blocked": // If the account is blocked (Boolean)
    "emailVerified": // If the account is verified with an email (Boolean)
    "secured": // If the account is 'secure' (Boolean)
    }
    If not used the output will be the accounts that worked formatted how they were inputted

    Example
    This example should work on any OS but definitely works on linux:
    python accountchecker.py -f list -o working -s = --complex

    Added on IM, I'm seeing something that you can improve ^^, I don't wanna bother ^^

  6. #5
    Sofgan's Avatar
    Join Date
    May 2019
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    1
    thank you sir

  7. #6
    Trapthekid's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    except urllib*****TPError, f:
    ^
    SyntaxError: invalid syntax

    Getting this error

  8. #7
    sike2005's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    me too, same problem

  9. #8
    HellboyAlts's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Nice Checker bro

  10. #9
    AccountsOne's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    thanks man

  11. #10
    bluedolph1n's Avatar
    Join Date
    Aug 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Can you help me through this? I am not sure how to get it working.

    In CMD I type CD C:\Users\Force\Desktop\Python

    next line i type accountchecker.py

    it says
    File "C:\Users\Force\Desktop\Python\accountchecker. py", line 91
    except urllib*****TPError, f:
    ^
    SyntaxError: invalid syntax

  12. #11
    bluedolph1n's Avatar
    Join Date
    Aug 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by notreall View Post
    Update:
    Fixed a typo that would stop it working

    Fix:
    On line 97 change "workingCount" to "workedCount"
    I can't post links so can't share the updated code myself.
    I just did that but now I get a new error

    C:\Users\alex\Desktop\Python>accountchecker.py
    File "C:\Users\Force\Desktop\Python\accountchecker. py", line 91
    except urllib*****TPError, f:
    ^
    SyntaxError: invalid syntax

  13. #12
    Ash_Rothschild's Avatar
    Join Date
    Sep 2019
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    8
    My Mood
    Sneaky
    nice checks!

Similar Threads

  1. Minecraft Account Checker
    By ViveAfuL in forum Minecraft Tools & Resources
    Replies: 2
    Last Post: 07-17-2013, 09:51 AM
  2. [Release] Minecraft Account Checker
    By rockpoo in forum Minecraft Tools & Resources
    Replies: 15
    Last Post: 06-10-2013, 09:51 PM
  3. Minecraft Account Checker
    By Think500 in forum Minecraft Help
    Replies: 3
    Last Post: 03-09-2013, 10:27 PM
  4. Minecraft Account Checker
    By LunaticDay in forum Minecraft Discussions
    Replies: 4
    Last Post: 12-24-2012, 06:00 AM
  5. Minecraft Account Checker
    By Some_Man in forum Minecraft Help
    Replies: 5
    Last Post: 12-22-2012, 10:04 AM