Introducing MPGH's AIGA. The latest advancement in artificial intelligence. Click here now to learn more!
Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    DarkDest's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Seeking help in cracking Atlauncher

    Seeking Help on cracking the modpack launcher known as atlauncher.

    It is open source and the source code can be easily found by google-ing "atlauncher source code"
    I would put the direct link to it if I can :L

    Looking around there are only help requests. No actual cracked launcher can be found. If someone can crack this, their help is greatly appreciated. This launcher has some awesome modpacks and looking at FTB and Technic launcher, Their main packs are mostly outdated. Well FTB just more or less screwed their packs by placing GT in a very light modpack.

    If people say it has already been done please link to it or PM me if it is an external link.

    Any unconstuctive comments not appreciated. Putting it bluntly, if you are here to say "Get an actual account" You can fuck off.

  2. #2
    LittleDark's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    1
    My Mood
    Angelic
    I'm also looking help in this area..

  3. #3
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    https://******.com/RyanTheAllmighty/ATLauncher heres the src code..

    https://******.com/RyanTheAllmighty/...ountPanel.java - Class which handles GUI.. (Thats to do with the signing in stuff too!

    Go to line 176, work your way down till you get it. Read over it again and again. Read a few books about Java in the mean time.
    Last edited by Wampwire; 11-19-2013 at 04:56 PM.

  4. #4
    DarkDest's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Wampwire View Post
    -snip- heres the src code..

    -snip- - Class which handles GUI.. (Thats to do with the signing in stuff too!

    Go to line 176, work your way down till you get it. Read over it again and again. Read a few books about Java in the mean time.
    Could you provide some Pseudo code to indicate what should be done to bypass the verification process?

  5. #5
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    try to remove few methods which authenticate the account. Replace few returns with only return; not return .... ;

  6. #6
    MC-Teddybear's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Any plans on making a Launcher? i have no idea where to do that...=(
    I understand what your talking about on how it works but i dont know how to make or edit the launcher

  7. #7
    DarkDest's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by MC-Teddybear View Post
    Any plans on making a Launcher? i have no idea where to do that...=(
    I understand what your talking about on how it works but i dont know how to make or edit the launcher
    Start learning then. Get Eclipse and port the project to your computer then edit it. After that its compiling it.

    Quote Originally Posted by Wampwire View Post
    try to remove few methods which authenticate the account. Replace few returns with only return; not return .... ;
    And i still dont understand what needs removing :L The way i see it is to link the "non-premium" to the "premium" result. Meaning

    If "non-premium", then login successful
    If "premium", then login successful

    Thus bypassing the failure section. How do i do this ? I cannot identify the methods being used to identify if its premium or not.
    Last edited by DarkDest; 11-21-2013 at 02:39 AM.

  8. #8
    hackroj's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    442
    Reputation
    10
    Thanks
    2,545
    My Mood
    Fine
    Quote Originally Posted by DarkDest View Post
    Start learning then. Get Eclipse and port the project to your computer then edit it. After that its compiling it.



    And i still dont understand what needs removing :L The way i see it is to link the "non-premium" to the "premium" result. Meaning

    If "non-premium", then login successful
    If "premium", then login successful

    Thus bypassing the failure section. How do i do this ? I cannot identify the methods being used to identify if its premium or not.
    Too lazy to check the code but why dont you try using the premium login auth
    Code:
    String[] options = { App.settings.getLocalizedString("common.ok") };
                JOptionPane.showOptionDialog(App.settings.getParent(), App.settings.getLocalizedString("account.exists"), App.settings.getLocalizedString("account.notadded"), -1, 0, null, options, options[0]);
    
                return;
    and replace the auth error one with that ?
    Last edited by hackroj; 11-21-2013 at 06:26 AM.

  9. The Following User Says Thank You to hackroj For This Useful Post:

    Wampwire (11-21-2013)

  10. #9
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    Quote Originally Posted by hackroj View Post
    Too lazy to check the code but why dont you try using the premium login auth
    Code:
    String[] options = { App.settings.getLocalizedString("common.ok") };
                JOptionPane.showOptionDialog(App.settings.getParent(), App.settings.getLocalizedString("account.exists"), App.settings.getLocalizedString("account.notadded"), -1, 0, null, options, options[0]);
    
                return;
    and replace the auth error one with that ?
    That looks alright though havent tried nor planning to. Just have so much stuff to do..

  11. #10
    DarkDest's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by hackroj View Post
    Too lazy to check the code but why dont you try using the premium login auth
    Code:
    String[] options = { App.settings.getLocalizedString("common.ok") };
                JOptionPane.showOptionDialog(App.settings.getParent(), App.settings.getLocalizedString("account.exists"), App.settings.getLocalizedString("account.notadded"), -1, 0, null, options, options[0]);
    
                return;
    and replace the auth error one with that ?
    Im assuming this is the auth error?

    Code:
    try {
                            object = (JSONObject) parser.parse(auth);
                            if (objec*****ntainsKey("errorMessage")) {
                                authError = ((String) object.get("errorMessage")).replace(
                                        "Invalid credentials. ", "");
                            } else if (objec*****ntainsKey("accessToken")) {
                                JSONObject selectedProfileObject = (JSONObject) object
                                        .get("selectedProfile");
                                minecraftUsername = (String) selectedProfileObject.get("name");
                            } else {
                                authError = "An unknown error occured!";
                            }
    I dont see a way to just slot in the code to end up with the same result. Also, i dont understand half the methods being used here :L
    Last edited by DarkDest; 11-22-2013 at 03:39 AM.

  12. #11
    mysteryboyee's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    you guys going to finish cracking it anytime soon? i have a friend who wants to play the DNS Techpack, but cant because there isnt a cracked version of atlauncher, as he's a non-prem user

  13. #12
    vyoshka456's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Please make ATLauncher CRACKED NOW!!!! THANKS!!!!!!!!!

  14. #13
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    Quote Originally Posted by vyoshka456 View Post
    Please make ATLauncher CRACKED NOW!!!! THANKS!!!!!!!!!
    Ive got everything set up, just not able to run it properly. Working on that. Caps much? And people like you are people who make helping others less enjoyable.. *truth hurts* Be nice, be patient. You are the USER not the fuckin producer or a big ceo. You have no right demanding for stuff on the internet, otherwise flamming occurs.. It isnt pleasing v.v Keep your hopes up

  15. #14
    Alieksiei's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Keeping hopes up

    edit: I have little experience with Java, but I'll take a look at the code too

  16. #15
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    Quote Originally Posted by Alieksiei View Post
    Keeping hopes up

    edit: I have little experience with Java, but I'll take a look at the code too
    Imma sort this out tomorrow. Long day today. v.v




     




    FIXED! Just need to solve the server connections... v.v
    Last edited by Wampwire; 11-26-2013 at 05:51 PM.

  17. The Following User Says Thank You to Wampwire For This Useful Post:

    vyoshka456 (12-01-2013)

Page 1 of 2 12 LastLast

Similar Threads

  1. Help me Cracked BF3
    By skata3000 in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 20
    Last Post: 10-28-2011, 04:35 PM
  2. [Solved] Help Regarding Cracked Servers
    By MMAkicker66 in forum Minecraft Help
    Replies: 2
    Last Post: 08-19-2011, 04:32 AM
  3. Help me crack rsbot for languages?
    By shadow wolf in forum Runescape Help
    Replies: 20
    Last Post: 06-16-2011, 12:41 AM
  4. [SOLVED]need help with cracked
    By WoopwoopaJiggaboo in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 11-12-2010, 01:16 PM
  5. Hackers from China for Seeking help
    By jzzzr501 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 22
    Last Post: 02-15-2010, 03:09 AM