Results 1 to 12 of 12
  1. #1
    tmulkey2's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    91
    Reputation
    10
    Thanks
    322
    My Mood
    Lurking

    Minecraft Lastlogin Decrypter

    Thought you may like this cracking freaks

    Code:
    import java.io.*;
    import javax.crypto.*;
    import java.util.*;
    import javax.crypto.spec.*;
    
    public class test
    {
    
    
    public static void main(String[] args)
    {
    new test();
    }
    public String user = "";
    public String pass = "";
    
    public test()
    {
    readUsername();
    System.out.println(user+" "+pass);
    }
    
    
      private void readUsername() {
        try {
          //File lastLogin = new File(Util.getWorkingDirectory(), "lastlogin");
    File lastLogin = new File("./lastlogin");
          Cipher cipher = getCipher(2, "passwordfile");
          DataInputStream dis;
          if (cipher != null)
            dis = new DataInputStream(new CipherInputStream(new FileInputStream(lastLogin), cipher));
          else {
            dis = new DataInputStream(new FileInputStream(lastLogin));
          }
          user = dis.readUTF();
          pass = dis.readUTF();
          dis.close();
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
     private Cipher getCipher(int mode, String password) throws Exception {
        Random random = new Random(43287234L);
        byte[] salt = new byte[8];
        random.nextBytes(salt);
        PBEParameterSpec pbeParamSpec = new PBEParameterSpec(salt, 5);
    
        SecretKey pbeKey = SecretKeyFactory.getInstance("PBEWithMD5AndDES").generateSecret(new PBEKeySpec(password.toCharArray()));
        Cipher cipher = Cipher.getInstance("PBEWithMD5AndDES");
        cipher.init(mode, pbeKey, pbeParamSpec);
        return cipher;
      }
    
    }
    Will soon Release an edited version of this in java this is very basic
    Last edited by tmulkey2; 10-08-2011 at 10:39 PM.

  2. #2
    jijsucktnoobPERM's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    97
    Reputation
    10
    Thanks
    8
    i dont get it

  3. #3
    termica's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    norway
    Posts
    400
    Reputation
    26
    Thanks
    85
    My Mood
    Sneaky
    and the point of this is? i dont see any need for this :P

    but good job i guess
    bbbboooored

  4. #4
    tmulkey2's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    91
    Reputation
    10
    Thanks
    322
    My Mood
    Lurking
    First you need too make a lastlogin stealer then youll need it bros

  5. #5
    dillbillz's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow
    I am a noob.
    How do I compile this using Notepad++??
    Last edited by dillbillz; 10-16-2011 at 12:23 AM. Reason: typos ;D

  6. #6
    FrogIsHam's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The Dank Side of the Meme
    Posts
    841
    Reputation
    26
    Thanks
    104
    My Mood
    Happy
    Save it as a .exe file I believe.

  7. #7
    yokhaji's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish
    Quote Originally Posted by FrogIsHam View Post
    Save it as a .exe file I believe.
    I am guessing you know nothing about java. You need to compile this with the JDK (Java development kit). You can get it from here

  8. #8
    john404's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    352
    Reputation
    69
    Thanks
    842
    My Mood
    Doh
    give credits ..

  9. #9
    matchboy7's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    United Kingdom
    Posts
    328
    Reputation
    8
    Thanks
    1,094
    My Mood
    Amazed
    wait what is this? Could u give me details

  10. #10
    demonnator's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    197
    Reputation
    10
    Thanks
    160
    My Mood
    Breezy
    this code allows you to decrypt your lastlogin files if you forgot your password
    or when you phishing and get a lastlogin file you use this code to find the password

    the credits go to minecraftforums
    [IMG]https://i173.photobucke*****m/albums/w43/bewska/demonnator.jpg[/IMG]

  11. #11
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    u cant compile with notepad++......................

  12. #12
    Vellocity's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    Yes! I have some last login files! Give me now please!!!!

Similar Threads

  1. TimeShift Too Decrypted
    By Zakurna in forum Showroom
    Replies: 10
    Last Post: 11-08-2009, 03:41 PM
  2. Minecraft
    By PyrexxHero® in forum General Gaming
    Replies: 24
    Last Post: 10-25-2009, 08:54 AM
  3. Exteel BMG decrypted for media players.
    By Trip-FX in forum General Game Hacking
    Replies: 0
    Last Post: 04-16-2009, 06:14 AM
  4. How to decrypt warrock.exe
    By radnomguywfq3 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 08-16-2008, 03:27 PM
  5. steam password decrypter
    By ghostface in forum General Game Hacking
    Replies: 0
    Last Post: 07-31-2008, 02:50 PM