forked from MaxCamillo/android-keystore-password-recover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BrutePasswd.java
337 lines (259 loc) · 8.99 KB
/
BrutePasswd.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
package AndroidKeystoreBrute;
/**
*
* Beschreibung
*
* @version 1.0 vom 26.11.2011
* @author
*/
import java.io.*;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.DigestInputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.cert.Certificate;
import java.security.cert.CertificateException;
import java.security.cert.CertificateFactory;
import java.util.Enumeration;
import javax.crypto.EncryptedPrivateKeyInfo;
public class BrutePasswd extends Thread {
static String alias = "";
static String keystoreFileName;
static JKS j;
static volatile boolean found = false;
static int numberOfThreads = 8;
static String passwd = null;
static int testedPwds = 0;
static char[] currPass;
static char[] alphabet = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r',
's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2',
'3', '4', '5', '6', '7', '8', '9',
};
static char[] alphabetLower = {
'a', 'b', 'c', 'd', 'e', 'f', 'g',
'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r',
's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2',
'3', '4', '5', '6', '7', '8', '9',
};
static char[] specialChars = {
'!', '"', '@', '#', '$', '%', '&', '/', '{', '>',
'}', '(', ')', '[', ']', '=', '?', '+', '`', '|',
'^', '~', '*', '-', '_', '.', ':', ',', ';', '<',
'\'', '\\',
};
public BrutePasswd() throws Exception {
FileInputStream in = new FileInputStream(keystoreFileName);
engineLoad(in, currPass);
}
public void run() {
char[] str = new char[1];
if (AndroidKeystoreBrute.onlyLowerCase == true) {
alphabet = alphabetLower;
}
if (AndroidKeystoreBrute.disableSpecialChars == false) {
StringBuilder sb = new StringBuilder(64);
sb.append(alphabet);
sb.append(specialChars);
alphabet = sb.toString().toCharArray();
}
while (!found) {
str = nextWord(str);
if (keyIsRight(str)) {
passwd = String.copyValueOf(str);
found = true;
// We are lucky
System.out.println("Got Password!");
System.out.println("Password is: " + passwd + " for alias " + alias);
try {
if (AndroidKeystoreBrute.saveNewKeystore) {
j.engineStore(new FileOutputStream(keystoreFileName + "_recovered"), new String(passwd).toCharArray());
System.out.println("Saved new keystore to: " + keystoreFileName + "_recovered");
} // end of if
} catch (Exception e) {
e.printStackTrace();
}
AndroidKeystoreBrute.quit();
}
} // end of while
}
public static void doit(String keystore) throws Exception {
if (AndroidKeystoreBrute.onlyLowerCase == true)
doit(keystore, "a");
else
doit(keystore, "A");
}
public static void doit(String keystore, String start) throws Exception {
char[] pass = new char[start.length()];
pass = start.toCharArray();
InputStream in = new FileInputStream(keystore);
currPass = pass;
numberOfThreads = Runtime.getRuntime().availableProcessors() * 2;
try {
j = new JKS();
j.engineLoad(in, pass);
System.out.println("\r\nNumber of keys in keystore: " + j.engineSize());
@SuppressWarnings("rawtypes")
Enumeration e = j.engineAliases();
while (e.hasMoreElements()) {
String a = (String) e.nextElement();
System.out.println("Found alias: " + a);
System.out.println("Creation Date: " + j.engineGetCreationDate(a));
alias = a;
}
in.close();
keystoreFileName = keystore;
for (int i = 0; i < numberOfThreads; i++) {
Thread t = new BrutePasswd();
t.start();
} // end of for
new BruteBenchmark().start();
System.out.println("Fire up " + numberOfThreads + " Threads\r\n");
} catch (Exception e) {
e.printStackTrace();
}
}
public synchronized static char[] nextWord(char[] str) {
testedPwds++;
currPass = nextWord(currPass, currPass.length - 1);
if (str.length != currPass.length) {
str = new char[currPass.length];
} // end of if
System.arraycopy(currPass, 0, str, 0, currPass.length);
return str;
}
public static char[] nextWord(char[] word, int stelle) {
if (word[stelle] == alphabet[alphabet.length - 1]) {
word[stelle] = alphabet[0];
if (stelle > 0) {
return nextWord(word, stelle - 1);
} else {
char[] longerWord = new char[word.length + 1];
longerWord[0] = alphabet[0];
System.arraycopy(word, 0, longerWord, 1, word.length);
return longerWord;
}
} else {
for (int i = 0; i < alphabet.length; i++) {
if (word[stelle] == alphabet[i]) {
word[stelle] = alphabet[i + 1];
break;
}
}
return word;
}
}
// --------------------------------JKS Methods------------------------------------------
private static final int MAGIC = 0xFEEDFEED;
private byte[] encoded;
private Certificate[] chain;
private MessageDigest sha;
private byte[] key;
private byte[] keystream;
private byte[] encr;
private byte[] check;
private static final int PRIVATE_KEY = 1;
private static final int TRUSTED_CERT = 2;
public void engineLoad(InputStream in, char[] passwd)
throws IOException, NoSuchAlgorithmException, CertificateException {
MessageDigest md = MessageDigest.getInstance("SHA");
md.update(charsToBytes(passwd));
md.update("Mighty Aphrodite".getBytes("UTF-8")); // HAR HAR
DataInputStream din = new DataInputStream(new DigestInputStream(in, md));
if (din.readInt() != MAGIC) {
throw new IOException("not a JavaKeyStore");
}
din.readInt(); // version no.
final int n = din.readInt();
if (n < 0) {
throw new IOException("negative entry count");
}
int type = din.readInt();
alias = din.readUTF();
din.readLong(); // Skip Date
switch (type) {
case PRIVATE_KEY:
int len = din.readInt();
encoded = new byte[len];
din.read(encoded);
// privateKeys.put(alias, encoded);
int count = din.readInt();
chain = new Certificate[count];
for (int j = 0; j < count; j++)
chain[j] = readCert(din);
// certChains.put(alias, chain);
break;
case TRUSTED_CERT:
// trustedCerts.put(alias, readCert(din));
break;
default:
throw new IOException("malformed key store");
}
encr = new EncryptedPrivateKeyInfo(encoded).getEncryptedData();
keystream = new byte[20];
System.arraycopy(encr, 0, keystream, 0, 20);
check = new byte[20];
System.arraycopy(encr, encr.length - 20, check, 0, 20);
key = new byte[encr.length - 40];
sha = MessageDigest.getInstance("SHA1");
byte[] hash = new byte[20];
din.read(hash);
if (MessageDigest.isEqual(hash, md.digest())) {
throw new IOException("signature not verified");
}
}
public boolean keyIsRight(char[] password) {
try {
return decryptKey(charsToBytes(password));
} catch (Exception x) {
return false;
}
}
private byte[] charsToBytes(char[] passwd) {
byte[] buf = new byte[passwd.length * 2];
for (int i = 0, j = 0; i < passwd.length; i++) {
buf[j++] = (byte) (passwd[i] >>> 8);
buf[j++] = (byte) passwd[i];
}
return buf;
}
private boolean decryptKey(byte[] passwd) {
try {
System.arraycopy(encr, 0, keystream, 0, 20);
int count = 0;
while (count < key.length) {
sha.reset();
sha.update(passwd);
sha.update(keystream);
sha.digest(keystream, 0, keystream.length);
for (int i = 0; (i < keystream.length) && (count < key.length); i++) {
key[count] = (byte) (keystream[i] ^ encr[count + 20]);
count++;
}
}
sha.reset();
sha.update(passwd);
sha.update(key);
if (MessageDigest.isEqual(check, sha.digest())) {
return true;
}
return false;
} catch (Exception x) {
return false;
}
}
private Certificate readCert(DataInputStream in) throws IOException, CertificateException, NoSuchAlgorithmException {
String type = in.readUTF();
int len = in.readInt();
byte[] encoded = new byte[len];
in.read(encoded);
CertificateFactory factory = CertificateFactory.getInstance(type);
return factory.generateCertificate(new ByteArrayInputStream(encoded));
}
}