-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMD5_fmt.c
299 lines (253 loc) · 5.73 KB
/
MD5_fmt.c
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
/*
* This file is part of John the Ripper password cracker,
* Copyright (c) 1996-2001,2008,2010-2012,2017 by Solar Designer
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted.
*
* There's ABSOLUTELY NO WARRANTY, express or implied.
*/
#include <string.h>
#include "arch.h"
#include "misc.h"
#include "MD5_std.h"
#include "common.h"
#include "formats.h"
#define FORMAT_LABEL "md5crypt"
#define FORMAT_NAME ""
#define BENCHMARK_COMMENT ""
#define BENCHMARK_LENGTH 0x107
#define PLAINTEXT_LENGTH 15
#define CIPHERTEXT_LENGTH 22
#define BINARY_SIZE 4
#define BINARY_ALIGN 4
#define SALT_SIZE 9
#define SALT_ALIGN 1
#define MIN_KEYS_PER_CRYPT MD5_N
#define MAX_KEYS_PER_CRYPT MD5_N
static struct fmt_tests tests[] = {
{"$1$12345678$aIccj83HRDBo6ux1bVx7D1", "0123456789ABCDE"},
{"$1$7Uu2iTBB$Y4hQl2WvrOA3LBbLDxbAf0", "12345"},
{"$apr1$Q6ZYh...$RV6ft2bZ8j.NGrxLYaJt9.", "test"},
{"$1$12345678$f8QoJuo0DpBRfQSD0vglc1", "12345678"},
{"$1$$qRPK7m23GJusamGpoGLby/", ""},
{"$apr1$a2Jqm...$grFrwEgiQleDr0zR4Jx1b.", "15 chars is max"},
{"$1$$AuJCr07mI7DSew03TmBIv/", "no salt"},
{"$1$`!@#%^&*$E6hD76/pKTS8qToBCkux30", "invalid salt"},
{"$1$12345678$xek.CpjQUVgdf/P2N9KQf/", ""},
{"$1$1234$BdIMOAWFOV2AQlLsrN/Sw.", "1234"},
{"$apr1$rBXqc...$NlXxN9myBOk95T0AyLAsJ0", "john"},
{"$apr1$Grpld/..$qp5GyjwM2dnA5Cdej9b411", "the"},
{"$apr1$GBx.D/..$yfVeeYFCIiEXInfRhBRpy/", "ripper"},
{NULL}
};
static char (*saved_key)[PLAINTEXT_LENGTH + 1];
struct fmt_main fmt_MD5;
static void init(struct fmt_main *self)
{
MD5_std_init();
#if MD5_std_mt
fmt_MD5.params.min_keys_per_crypt = MD5_std_min_kpc;
fmt_MD5.params.max_keys_per_crypt = MD5_std_max_kpc;
#endif
saved_key = mem_alloc_tiny(
sizeof(*saved_key) * fmt_MD5.params.max_keys_per_crypt,
MEM_ALIGN_CACHE);
}
static int valid(char *ciphertext, struct fmt_main *self)
{
char *pos, *start;
if (strncmp(ciphertext, "$1$", 3)) {
if (strncmp(ciphertext, "$apr1$", 6))
return 0;
ciphertext += 3;
}
for (pos = &ciphertext[3]; *pos && *pos != '$'; pos++);
if (!*pos || pos < &ciphertext[3] || pos > &ciphertext[11]) return 0;
start = ++pos;
while (atoi64[ARCH_INDEX(*pos)] != 0x7F) pos++;
if (*pos || pos - start != CIPHERTEXT_LENGTH) return 0;
if (atoi64[ARCH_INDEX(*(pos - 1))] & 0x3C) return 0;
return 1;
}
static int binary_hash_0(void *binary)
{
return *(MD5_word *)binary & PH_MASK_0;
}
static int binary_hash_1(void *binary)
{
return *(MD5_word *)binary & PH_MASK_1;
}
static int binary_hash_2(void *binary)
{
return *(MD5_word *)binary & PH_MASK_2;
}
static int binary_hash_3(void *binary)
{
return *(MD5_word *)binary & PH_MASK_3;
}
static int binary_hash_4(void *binary)
{
return *(MD5_word *)binary & PH_MASK_4;
}
static int binary_hash_5(void *binary)
{
return *(MD5_word *)binary & PH_MASK_5;
}
static int binary_hash_6(void *binary)
{
return *(MD5_word *)binary & PH_MASK_6;
}
static int get_hash_0(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_0;
}
static int get_hash_1(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_1;
}
static int get_hash_2(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_2;
}
static int get_hash_3(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_3;
}
static int get_hash_4(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_4;
}
static int get_hash_5(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_5;
}
static int get_hash_6(int index)
{
init_t();
return MD5_out[index][0] & PH_MASK_6;
}
static int salt_hash(void *salt)
{
unsigned int i, h, retval;
retval = 0;
for (i = 0; i <= 6; i += 2) {
h = (unsigned char)atoi64[ARCH_INDEX(((char *)salt)[i])];
h ^= ((unsigned char *)salt)[i + 1];
h <<= 6;
h ^= (unsigned char)atoi64[ARCH_INDEX(((char *)salt)[i + 1])];
h ^= ((unsigned char *)salt)[i];
retval += h;
}
retval ^= retval >> SALT_HASH_LOG;
retval &= SALT_HASH_SIZE - 1;
return retval;
}
static void set_key(char *key, int index)
{
MD5_std_set_key(key, index);
strnfcpy(saved_key[index], key, PLAINTEXT_LENGTH);
}
static char *get_key(int index)
{
saved_key[index][PLAINTEXT_LENGTH] = 0;
return saved_key[index];
}
static int crypt_all(int *pcount, struct db_salt *salt)
{
int count = *pcount;
MD5_std_crypt(count);
return count;
}
static int cmp_all(void *binary, int count)
{
#if MD5_std_mt
int t, n = (count + (MD5_N - 1)) / MD5_N;
#endif
for_each_t(n) {
#if MD5_X2
if (*(MD5_word *)binary == MD5_out[0][0] ||
*(MD5_word *)binary == MD5_out[1][0])
return 1;
#else
if (*(MD5_word *)binary == MD5_out[0][0])
return 1;
#endif
}
return 0;
}
static int cmp_one(void *binary, int index)
{
init_t();
return *(MD5_word *)binary == MD5_out[index][0];
}
static int cmp_exact(char *source, int index)
{
init_t();
return !memcmp(MD5_std_get_binary(source), MD5_out[index],
sizeof(MD5_binary));
}
struct fmt_main fmt_MD5 = {
{
FORMAT_LABEL,
FORMAT_NAME,
MD5_ALGORITHM_NAME,
BENCHMARK_COMMENT,
BENCHMARK_LENGTH,
PLAINTEXT_LENGTH,
BINARY_SIZE,
BINARY_ALIGN,
SALT_SIZE,
SALT_ALIGN,
MIN_KEYS_PER_CRYPT,
MAX_KEYS_PER_CRYPT,
#if MD5_std_mt
FMT_OMP |
#endif
FMT_CASE | FMT_8_BIT,
tests
}, {
init,
fmt_default_done,
fmt_default_reset,
fmt_default_prepare,
valid,
fmt_default_split,
(void *(*)(char *))MD5_std_get_binary,
(void *(*)(char *))MD5_std_get_salt,
fmt_default_source,
{
binary_hash_0,
binary_hash_1,
binary_hash_2,
binary_hash_3,
binary_hash_4,
binary_hash_5,
binary_hash_6
},
salt_hash,
(void (*)(void *))MD5_std_set_salt,
set_key,
get_key,
fmt_default_clear_keys,
crypt_all,
{
get_hash_0,
get_hash_1,
get_hash_2,
get_hash_3,
get_hash_4,
get_hash_5,
get_hash_6
},
cmp_all,
cmp_one,
cmp_exact
}
};