-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummy.c
320 lines (266 loc) · 5.75 KB
/
dummy.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* This file is part of John the Ripper password cracker,
* Copyright (c) 2011,2012 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 <stdint.h>
#include <string.h>
#include "common.h"
#include "formats.h"
#define FORMAT_LABEL "dummy"
#define FORMAT_NAME ""
#define ALGORITHM_NAME "N/A"
#define BENCHMARK_COMMENT ""
#define BENCHMARK_LENGTH 7
/* Max 125, but 95 typically produces fewer L1 data cache tag collisions */
#define PLAINTEXT_LENGTH 95
typedef struct {
uint32_t hash;
char c0;
} dummy_binary;
#define BINARY_SIZE sizeof(dummy_binary)
#define BINARY_ALIGN sizeof(uint32_t)
#define SALT_SIZE 0
#define SALT_ALIGN 1
#define MIN_KEYS_PER_CRYPT 1
#define MAX_KEYS_PER_CRYPT (0x4000 / (PLAINTEXT_LENGTH + 1))
static struct fmt_tests tests[] = {
{"$dummy$64756d6d79", "dummy"},
{"$dummy$", ""},
{"$dummy$70617373776f7264", "password"},
{NULL}
};
static char saved_key[MAX_KEYS_PER_CRYPT][PLAINTEXT_LENGTH + 1];
static int valid(char *ciphertext, struct fmt_main *self)
{
char *p, *q, c;
if (strncmp(ciphertext, "$dummy$", 7))
return 0;
p = strrchr(ciphertext, '$');
/* Support saltless hashes only for now */
if (p - ciphertext != 6)
return 0;
q = ++p;
while ((c = *q)) {
q++;
if (atoi16l[ARCH_INDEX(c)] == 0x7F)
return 0;
}
/* Must be an even number of hex chars (zero is OK) */
if ((q - p) & 1)
return 0;
/* We won't be able to crack passwords longer than PLAINTEXT_LENGTH.
* Also, we rely on this check having been performed before decode(). */
if (((q - p) >> 1) > PLAINTEXT_LENGTH)
return 0;
return 1;
}
static char *decode(char *ciphertext)
{
static char out[PLAINTEXT_LENGTH + 1];
char *p, *q, c;
p = strrchr(ciphertext, '$') + 1;
q = out;
while ((c = *p)) {
p++;
*q++ = (atoi16[ARCH_INDEX(c)] << 4) | atoi16[ARCH_INDEX(*p++)];
}
*q = 0;
return out;
}
static MAYBE_INLINE uint32_t string_hash(char *s)
{
uint32_t hash, extra;
char *p;
p = s + 2;
hash = (unsigned char)s[0];
if (!hash)
goto out;
extra = (unsigned char)s[1];
if (!extra)
goto out;
while (*p) {
hash <<= 3; extra <<= 2;
hash += (unsigned char)p[0];
if (!p[1]) break;
extra += (unsigned char)p[1];
p += 2;
if (hash & 0xe0000000) {
hash ^= hash >> 20;
extra ^= extra >> 20;
hash &= 0xfffff;
}
}
hash -= extra;
hash ^= extra << 10;
hash ^= hash >> 16;
out:
return hash;
}
static void *binary(char *ciphertext)
{
static dummy_binary out;
char *decoded;
decoded = decode(ciphertext);
out.hash = string_hash(decoded);
out.c0 = decoded[0];
return &out;
}
static int binary_hash_0(void *binary)
{
uint32_t hash = ((dummy_binary *)binary)->hash;
hash ^= hash >> 8;
return (hash ^ (hash >> 4)) & 0xf;
}
static int binary_hash_1(void *binary)
{
uint32_t hash = ((dummy_binary *)binary)->hash;
return (hash ^ (hash >> 8)) & 0xff;
}
static int binary_hash_2(void *binary)
{
uint32_t hash = ((dummy_binary *)binary)->hash;
return (hash ^ (hash >> 12)) & 0xfff;
}
static int binary_hash_3(void *binary)
{
return ((dummy_binary *)binary)->hash & 0xffff;
}
static int binary_hash_4(void *binary)
{
return ((dummy_binary *)binary)->hash & 0xfffff;
}
static int binary_hash_5(void *binary)
{
return ((dummy_binary *)binary)->hash & 0xffffff;
}
static int binary_hash_6(void *binary)
{
return ((dummy_binary *)binary)->hash & 0x7ffffff;
}
static int get_hash_0(int index)
{
uint32_t hash = string_hash(saved_key[index]);
hash ^= hash >> 8;
return (hash ^ (hash >> 4)) & 0xf;
}
static int get_hash_1(int index)
{
uint32_t hash = string_hash(saved_key[index]);
return (hash ^ (hash >> 8)) & 0xff;
}
static int get_hash_2(int index)
{
uint32_t hash = string_hash(saved_key[index]);
return (hash ^ (hash >> 12)) & 0xfff;
}
static int get_hash_3(int index)
{
return string_hash(saved_key[index]) & 0xffff;
}
static int get_hash_4(int index)
{
return string_hash(saved_key[index]) & 0xfffff;
}
static int get_hash_5(int index)
{
return string_hash(saved_key[index]) & 0xffffff;
}
static int get_hash_6(int index)
{
return string_hash(saved_key[index]) & 0x7ffffff;
}
static void set_key(char *key, int index)
{
char *p = saved_key[index];
*p = 0;
strncat(p, key, PLAINTEXT_LENGTH);
}
static char *get_key(int index)
{
return saved_key[index];
}
static int crypt_all(int *pcount, struct db_salt *salt)
{
return *pcount;
}
static int cmp_all(void *binary, int count)
{
int i;
for (i = 0; i < count; i++) {
if (((dummy_binary *)binary)->c0 != saved_key[i][0])
continue;
if (((dummy_binary *)binary)->hash == string_hash(saved_key[i]))
return 1;
}
return 0;
}
static int cmp_one(void *binary, int index)
{
return
((dummy_binary *)binary)->c0 == saved_key[index][0] &&
((dummy_binary *)binary)->hash == string_hash(saved_key[index]);
}
static int cmp_exact(char *source, int index)
{
return !strcmp(decode(source), saved_key[index]);
}
struct fmt_main fmt_dummy = {
{
FORMAT_LABEL,
FORMAT_NAME,
ALGORITHM_NAME,
BENCHMARK_COMMENT,
BENCHMARK_LENGTH,
PLAINTEXT_LENGTH,
BINARY_SIZE,
BINARY_ALIGN,
SALT_SIZE,
SALT_ALIGN,
MIN_KEYS_PER_CRYPT,
MAX_KEYS_PER_CRYPT,
FMT_CASE | FMT_8_BIT,
tests
}, {
fmt_default_init,
fmt_default_done,
fmt_default_reset,
fmt_default_prepare,
valid,
fmt_default_split,
binary,
fmt_default_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
},
fmt_default_salt_hash,
fmt_default_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
}
};