]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/cmdhfmf.c
fix/add support for 4K (and other non 1K) card sizes in hf mf commands
[proxmark3-svn] / client / cmdhfmf.c
... / ...
CommitLineData
1//-----------------------------------------------------------------------------\r
2// Copyright (C) 2011,2012 Merlok\r
3//\r
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,\r
5// at your option, any later version. See the LICENSE.txt file for the text of\r
6// the license.\r
7//-----------------------------------------------------------------------------\r
8// High frequency MIFARE commands\r
9//-----------------------------------------------------------------------------\r
10\r
11#include "cmdhfmf.h"\r
12\r
13static int CmdHelp(const char *Cmd);\r
14\r
15int CmdHF14AMifare(const char *Cmd)\r
16{\r
17 uint32_t uid = 0;\r
18 uint32_t nt = 0, nr = 0;\r
19 uint64_t par_list = 0, ks_list = 0, r_key = 0;\r
20 uint8_t isOK = 0;\r
21 uint8_t keyBlock[8] = {0};\r
22\r
23 UsbCommand c = {CMD_READER_MIFARE, {true, 0, 0}};\r
24\r
25 // message\r
26 printf("-------------------------------------------------------------------------\n");\r
27 printf("Executing command. Expected execution time: 25sec on average :-)\n");\r
28 printf("Press the key on the proxmark3 device to abort both proxmark3 and client.\n");\r
29 printf("-------------------------------------------------------------------------\n");\r
30\r
31 \r
32start:\r
33 clearCommandBuffer();\r
34 SendCommand(&c);\r
35 \r
36 //flush queue\r
37 while (ukbhit()) getchar();\r
38\r
39 \r
40 // wait cycle\r
41 while (true) {\r
42 printf(".");\r
43 fflush(stdout);\r
44 if (ukbhit()) {\r
45 getchar();\r
46 printf("\naborted via keyboard!\n");\r
47 break;\r
48 }\r
49 \r
50 UsbCommand resp;\r
51 if (WaitForResponseTimeout(CMD_ACK,&resp,1000)) {\r
52 isOK = resp.arg[0] & 0xff;\r
53 uid = (uint32_t)bytes_to_num(resp.d.asBytes + 0, 4);\r
54 nt = (uint32_t)bytes_to_num(resp.d.asBytes + 4, 4);\r
55 par_list = bytes_to_num(resp.d.asBytes + 8, 8);\r
56 ks_list = bytes_to_num(resp.d.asBytes + 16, 8);\r
57 nr = bytes_to_num(resp.d.asBytes + 24, 4);\r
58 printf("\n\n");\r
59 if (!isOK) PrintAndLog("Proxmark can't get statistic info. Execution aborted.\n");\r
60 break;\r
61 }\r
62 } \r
63\r
64 printf("\n");\r
65 \r
66 // error\r
67 if (isOK != 1) return 1;\r
68 \r
69 // execute original function from util nonce2key\r
70 if (nonce2key(uid, nt, nr, par_list, ks_list, &r_key))\r
71 {\r
72 isOK = 2;\r
73 PrintAndLog("Key not found (lfsr_common_prefix list is null). Nt=%08x", nt); \r
74 } else {\r
75 printf("------------------------------------------------------------------\n");\r
76 PrintAndLog("Key found:%012"llx" \n", r_key);\r
77\r
78 num_to_bytes(r_key, 6, keyBlock);\r
79 isOK = mfCheckKeys(0, 0, 1, keyBlock, &r_key);\r
80 }\r
81 if (!isOK) \r
82 PrintAndLog("Found valid key:%012"llx, r_key);\r
83 else\r
84 {\r
85 if (isOK != 2) PrintAndLog("Found invalid key. "); \r
86 PrintAndLog("Failing is expected to happen in 25%% of all cases. Trying again with a different reader nonce...");\r
87 c.arg[0] = false;\r
88 goto start;\r
89 }\r
90 \r
91 return 0;\r
92}\r
93\r
94int CmdHF14AMfWrBl(const char *Cmd)\r
95{\r
96 uint8_t blockNo = 0;\r
97 uint8_t keyType = 0;\r
98 uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r
99 uint8_t bldata[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\r
100 \r
101 char cmdp = 0x00;\r
102\r
103 if (strlen(Cmd)<3) {\r
104 PrintAndLog("Usage: hf mf wrbl <block number> <key A/B> <key (12 hex symbols)> <block data (32 hex symbols)>");\r
105 PrintAndLog(" sample: hf mf wrbl 0 A FFFFFFFFFFFF 000102030405060708090A0B0C0D0E0F");\r
106 return 0;\r
107 } \r
108\r
109 blockNo = param_get8(Cmd, 0);\r
110 cmdp = param_getchar(Cmd, 1);\r
111 if (cmdp == 0x00) {\r
112 PrintAndLog("Key type must be A or B");\r
113 return 1;\r
114 }\r
115 if (cmdp != 'A' && cmdp != 'a') keyType = 1;\r
116 if (param_gethex(Cmd, 2, key, 12)) {\r
117 PrintAndLog("Key must include 12 HEX symbols");\r
118 return 1;\r
119 }\r
120 if (param_gethex(Cmd, 3, bldata, 32)) {\r
121 PrintAndLog("Block data must include 32 HEX symbols");\r
122 return 1;\r
123 }\r
124 PrintAndLog("--block no:%d, key type:%c, key:%s", blockNo, keyType?'B':'A', sprint_hex(key, 6));\r
125 PrintAndLog("--data: %s", sprint_hex(bldata, 16));\r
126 \r
127 UsbCommand c = {CMD_MIFARE_WRITEBL, {blockNo, keyType, 0}};\r
128 memcpy(c.d.asBytes, key, 6);\r
129 memcpy(c.d.asBytes + 10, bldata, 16);\r
130 SendCommand(&c);\r
131\r
132 UsbCommand resp;\r
133 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
134 uint8_t isOK = resp.arg[0] & 0xff;\r
135 PrintAndLog("isOk:%02x", isOK);\r
136 } else {\r
137 PrintAndLog("Command execute timeout");\r
138 }\r
139\r
140 return 0;\r
141}\r
142\r
143int CmdHF14AMfUWrBl(const char *Cmd)\r
144{\r
145 uint8_t blockNo = 0;\r
146 bool chinese_card=0;\r
147 uint8_t bldata[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\r
148 UsbCommand resp;\r
149 \r
150 if (strlen(Cmd)<3) {\r
151 PrintAndLog("Usage: hf mf uwrbl <block number> <block data (8 hex symbols)> <w>");\r
152 PrintAndLog(" sample: hf mf uwrbl 0 01020304");\r
153 return 0;\r
154 } \r
155\r
156 blockNo = param_get8(Cmd, 0);\r
157 if (param_gethex(Cmd, 1, bldata, 8)) {\r
158 PrintAndLog("Block data must include 8 HEX symbols");\r
159 return 1;\r
160 }\r
161 \r
162 if (strchr(Cmd,'w') != 0) {\r
163 chinese_card=1;\r
164 }\r
165 \r
166 switch(blockNo){\r
167 case 0:\r
168 if (!chinese_card){\r
169 PrintAndLog("Access Denied");\r
170 }else{\r
171 PrintAndLog("--specialblock no:%d", blockNo);\r
172 PrintAndLog("--data: %s", sprint_hex(bldata, 4));\r
173 UsbCommand d = {CMD_MIFAREU_WRITEBL, {blockNo}};\r
174 memcpy(d.d.asBytes,bldata, 4);\r
175 SendCommand(&d);\r
176\r
177 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
178 uint8_t isOK = resp.arg[0] & 0xff;\r
179 PrintAndLog("isOk:%02x", isOK);\r
180 } else {\r
181 PrintAndLog("Command execute timeout");\r
182 }\r
183 }\r
184 break;\r
185 case 1:\r
186 if (!chinese_card){\r
187 PrintAndLog("Access Denied");\r
188 }else{\r
189 PrintAndLog("--specialblock no:%d", blockNo);\r
190 PrintAndLog("--data: %s", sprint_hex(bldata, 4));\r
191 UsbCommand d = {CMD_MIFAREU_WRITEBL, {blockNo}};\r
192 memcpy(d.d.asBytes,bldata, 4);\r
193 SendCommand(&d);\r
194\r
195 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
196 uint8_t isOK = resp.arg[0] & 0xff;\r
197 PrintAndLog("isOk:%02x", isOK);\r
198 } else {\r
199 PrintAndLog("Command execute timeout");\r
200 }\r
201 }\r
202 break;\r
203 case 2:\r
204 if (!chinese_card){\r
205 PrintAndLog("Access Denied");\r
206 }else{\r
207 PrintAndLog("--specialblock no:%d", blockNo);\r
208 PrintAndLog("--data: %s", sprint_hex(bldata, 4));\r
209 UsbCommand c = {CMD_MIFAREU_WRITEBL, {blockNo}};\r
210 memcpy(c.d.asBytes, bldata, 4);\r
211 SendCommand(&c);\r
212\r
213 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
214 uint8_t isOK = resp.arg[0] & 0xff;\r
215 PrintAndLog("isOk:%02x", isOK);\r
216 } else {\r
217 PrintAndLog("Command execute timeout");\r
218 }\r
219 }\r
220 break;\r
221 case 3:\r
222 PrintAndLog("--specialblock no:%d", blockNo);\r
223 PrintAndLog("--data: %s", sprint_hex(bldata, 4));\r
224 UsbCommand d = {CMD_MIFAREU_WRITEBL, {blockNo}};\r
225 memcpy(d.d.asBytes,bldata, 4);\r
226 SendCommand(&d);\r
227\r
228 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
229 uint8_t isOK = resp.arg[0] & 0xff;\r
230 PrintAndLog("isOk:%02x", isOK);\r
231 } else {\r
232 PrintAndLog("Command execute timeout");\r
233 }\r
234 break;\r
235 default: \r
236 PrintAndLog("--block no:%d", blockNo);\r
237 PrintAndLog("--data: %s", sprint_hex(bldata, 4)); \r
238 UsbCommand e = {CMD_MIFAREU_WRITEBL, {blockNo}};\r
239 memcpy(e.d.asBytes,bldata, 4);\r
240 SendCommand(&e);\r
241\r
242 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
243 uint8_t isOK = resp.arg[0] & 0xff;\r
244 PrintAndLog("isOk:%02x", isOK);\r
245 } else {\r
246 PrintAndLog("Command execute timeout");\r
247 }\r
248 break;\r
249 }\r
250 return 0;\r
251}\r
252\r
253\r
254int CmdHF14AMfRdBl(const char *Cmd)\r
255{\r
256 uint8_t blockNo = 0;\r
257 uint8_t keyType = 0;\r
258 uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r
259 \r
260 char cmdp = 0x00;\r
261\r
262\r
263 if (strlen(Cmd)<3) {\r
264 PrintAndLog("Usage: hf mf rdbl <block number> <key A/B> <key (12 hex symbols)>");\r
265 PrintAndLog(" sample: hf mf rdbl 0 A FFFFFFFFFFFF ");\r
266 return 0;\r
267 } \r
268 \r
269 blockNo = param_get8(Cmd, 0);\r
270 cmdp = param_getchar(Cmd, 1);\r
271 if (cmdp == 0x00) {\r
272 PrintAndLog("Key type must be A or B");\r
273 return 1;\r
274 }\r
275 if (cmdp != 'A' && cmdp != 'a') keyType = 1;\r
276 if (param_gethex(Cmd, 2, key, 12)) {\r
277 PrintAndLog("Key must include 12 HEX symbols");\r
278 return 1;\r
279 }\r
280 PrintAndLog("--block no:%d, key type:%c, key:%s ", blockNo, keyType?'B':'A', sprint_hex(key, 6));\r
281 \r
282 UsbCommand c = {CMD_MIFARE_READBL, {blockNo, keyType, 0}};\r
283 memcpy(c.d.asBytes, key, 6);\r
284 SendCommand(&c);\r
285\r
286 UsbCommand resp;\r
287 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
288 uint8_t isOK = resp.arg[0] & 0xff;\r
289 uint8_t *data = resp.d.asBytes;\r
290\r
291 if (isOK)\r
292 PrintAndLog("isOk:%02x data:%s", isOK, sprint_hex(data, 16));\r
293 else\r
294 PrintAndLog("isOk:%02x", isOK);\r
295 } else {\r
296 PrintAndLog("Command execute timeout");\r
297 }\r
298\r
299 return 0;\r
300}\r
301\r
302int CmdHF14AMfURdBl(const char *Cmd)\r
303{\r
304 uint8_t blockNo = 0;\r
305\r
306 if (strlen(Cmd)<1) {\r
307 PrintAndLog("Usage: hf mf urdbl <block number>");\r
308 PrintAndLog(" sample: hf mf urdbl 0");\r
309 return 0;\r
310 } \r
311 \r
312 blockNo = param_get8(Cmd, 0);\r
313 PrintAndLog("--block no:%d", blockNo);\r
314 \r
315 UsbCommand c = {CMD_MIFAREU_READBL, {blockNo}};\r
316 SendCommand(&c);\r
317\r
318 UsbCommand resp;\r
319 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
320 uint8_t isOK = resp.arg[0] & 0xff;\r
321 uint8_t *data = resp.d.asBytes;\r
322\r
323 if (isOK)\r
324 PrintAndLog("isOk:%02x data:%s", isOK, sprint_hex(data, 4));\r
325 else\r
326 PrintAndLog("isOk:%02x", isOK);\r
327 } else {\r
328 PrintAndLog("Command execute timeout");\r
329 }\r
330\r
331 return 0;\r
332}\r
333\r
334\r
335int CmdHF14AMfURdCard(const char *Cmd)\r
336{\r
337 int i;\r
338 uint8_t sectorNo = 0;\r
339 uint8_t *lockbytes_t=NULL;\r
340 uint8_t lockbytes[2]={0,0};\r
341 bool bit[16]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};\r
342 \r
343 uint8_t isOK = 0;\r
344 uint8_t * data = NULL;\r
345\r
346 if (sectorNo > 15) {\r
347 PrintAndLog("Sector number must be less than 16");\r
348 return 1;\r
349 }\r
350 PrintAndLog("Attempting to Read Ultralight... ");\r
351 \r
352 UsbCommand c = {CMD_MIFAREU_READCARD, {sectorNo}};\r
353 SendCommand(&c);\r
354\r
355 UsbCommand resp;\r
356 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
357 isOK = resp.arg[0] & 0xff;\r
358 data = resp.d.asBytes;\r
359\r
360 PrintAndLog("isOk:%02x", isOK);\r
361 if (isOK) \r
362 for (i = 0; i < 16; i++) {\r
363 switch(i){\r
364 case 2:\r
365 //process lock bytes\r
366 lockbytes_t=data+(i*4);\r
367 lockbytes[0]=lockbytes_t[2];\r
368 lockbytes[1]=lockbytes_t[3];\r
369 for(int j=0; j<16; j++){\r
370 bit[j]=lockbytes[j/8] & ( 1 <<(7-j%8));\r
371 }\r
372 //PrintAndLog("LB %02x %02x", lockbytes[0],lockbytes[1]);\r
373 //PrintAndLog("LB2b %02x %02x %02x %02x %02x %02x %02x %02x",bit[8],bit[9],bit[10],bit[11],bit[12],bit[13],bit[14],bit[15]); \r
374 PrintAndLog("Block %3d:%s ", i,sprint_hex(data + i * 4, 4));\r
375 break;\r
376 case 3: \r
377 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[4]);\r
378 break;\r
379 case 4:\r
380 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[3]);\r
381 break;\r
382 case 5:\r
383 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[2]);\r
384 break;\r
385 case 6:\r
386 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[1]);\r
387 break;\r
388 case 7:\r
389 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[0]);\r
390 break;\r
391 case 8:\r
392 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[15]);\r
393 break;\r
394 case 9:\r
395 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[14]);\r
396 break;\r
397 case 10:\r
398 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[13]);\r
399 break;\r
400 case 11:\r
401 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[12]);\r
402 break;\r
403 case 12:\r
404 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[11]);\r
405 break;\r
406 case 13:\r
407 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[10]);\r
408 break;\r
409 case 14:\r
410 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[9]);\r
411 break;\r
412 case 15:\r
413 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[8]);\r
414 break;\r
415 default:\r
416 PrintAndLog("Block %3d:%s ", i,sprint_hex(data + i * 4, 4));\r
417 break;\r
418 }\r
419 }\r
420 } else {\r
421 PrintAndLog("Command execute timeout");\r
422 }\r
423 return 0;\r
424}\r
425\r
426\r
427int CmdHF14AMfRdSc(const char *Cmd)\r
428{\r
429 int i;\r
430 uint8_t sectorNo = 0;\r
431 uint8_t keyType = 0;\r
432 uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r
433 uint8_t isOK = 0;\r
434 uint8_t *data = NULL;\r
435 char cmdp = 0x00;\r
436\r
437 if (strlen(Cmd)<3) {\r
438 PrintAndLog("Usage: hf mf rdsc <sector number> <key A/B> <key (12 hex symbols)>");\r
439 PrintAndLog(" sample: hf mf rdsc 0 A FFFFFFFFFFFF ");\r
440 return 0;\r
441 } \r
442 \r
443 sectorNo = param_get8(Cmd, 0);\r
444 if (sectorNo > 39) {\r
445 PrintAndLog("Sector number must be less than 40");\r
446 return 1;\r
447 }\r
448 cmdp = param_getchar(Cmd, 1);\r
449 if (cmdp != 'a' && cmdp != 'A' && cmdp != 'b' && cmdp != 'B') {\r
450 PrintAndLog("Key type must be A or B");\r
451 return 1;\r
452 }\r
453 if (cmdp != 'A' && cmdp != 'a') keyType = 1;\r
454 if (param_gethex(Cmd, 2, key, 12)) {\r
455 PrintAndLog("Key must include 12 HEX symbols");\r
456 return 1;\r
457 }\r
458 PrintAndLog("--sector no:%d key type:%c key:%s ", sectorNo, keyType?'B':'A', sprint_hex(key, 6));\r
459 \r
460 UsbCommand c = {CMD_MIFARE_READSC, {sectorNo, keyType, 0}};\r
461 memcpy(c.d.asBytes, key, 6);\r
462 SendCommand(&c);\r
463 PrintAndLog(" ");\r
464\r
465 UsbCommand resp;\r
466 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
467 isOK = resp.arg[0] & 0xff;\r
468 data = resp.d.asBytes;\r
469\r
470 PrintAndLog("isOk:%02x", isOK);\r
471 if (isOK) {\r
472 for (i = 0; i < (sectorNo<32?3:15); i++) {\r
473 PrintAndLog("data : %s", sprint_hex(data + i * 16, 16));\r
474 }\r
475 PrintAndLog("trailer: %s", sprint_hex(data + (sectorNo<32?3:15) * 16, 16));\r
476 }\r
477 } else {\r
478 PrintAndLog("Command execute timeout");\r
479 }\r
480\r
481 return 0;\r
482}\r
483\r
484\r
485uint8_t FirstBlockOfSector(uint8_t sectorNo)\r
486{\r
487 if (sectorNo < 32) {\r
488 return sectorNo * 4;\r
489 } else {\r
490 return 32 * 4 + (sectorNo - 32) * 16;\r
491 }\r
492}\r
493\r
494\r
495uint8_t NumBlocksPerSector(uint8_t sectorNo)\r
496{\r
497 if (sectorNo < 32) {\r
498 return 4;\r
499 } else {\r
500 return 16;\r
501 }\r
502}\r
503\r
504\r
505int CmdHF14AMfDump(const char *Cmd)\r
506{\r
507 uint8_t sectorNo, blockNo;\r
508 \r
509 uint8_t keyA[40][6];\r
510 uint8_t keyB[40][6];\r
511 uint8_t rights[40][4];\r
512 uint8_t numSectors = 16;\r
513 \r
514 FILE *fin;\r
515 FILE *fout;\r
516 \r
517 UsbCommand resp;\r
518\r
519 char cmdp = param_getchar(Cmd, 0);\r
520 switch (cmdp) {\r
521 case '0' : numSectors = 5; break;\r
522 case '1' : \r
523 case '\0': numSectors = 16; break;\r
524 case '2' : numSectors = 32; break;\r
525 case '4' : numSectors = 40; break;\r
526 default: numSectors = 16;\r
527 } \r
528 \r
529 if (strlen(Cmd) > 1 || cmdp == 'h' || cmdp == 'H') {\r
530 PrintAndLog("Usage: hf mf dump [card memory]");\r
531 PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r
532 PrintAndLog("");\r
533 PrintAndLog("Samples: hf mf dump");\r
534 PrintAndLog(" hf mf dump 4");\r
535 return 0;\r
536 }\r
537 \r
538 if ((fin = fopen("dumpkeys.bin","rb")) == NULL) {\r
539 PrintAndLog("Could not find file dumpkeys.bin");\r
540 return 1;\r
541 }\r
542 \r
543 if ((fout = fopen("dumpdata.bin","wb")) == NULL) { \r
544 PrintAndLog("Could not create file name dumpdata.bin");\r
545 return 1;\r
546 }\r
547 \r
548 // Read key file\r
549\r
550 for (sectorNo=0; sectorNo<numSectors; sectorNo++) {\r
551 if (fread( keyA[sectorNo], 1, 6, fin ) == 0) {\r
552 PrintAndLog("File reading error.");\r
553 return 2;\r
554 }\r
555 }\r
556 \r
557 for (sectorNo=0; sectorNo<numSectors; sectorNo++) {\r
558 if (fread( keyB[sectorNo], 1, 6, fin ) == 0) {\r
559 PrintAndLog("File reading error.");\r
560 return 2;\r
561 }\r
562 }\r
563 \r
564 // Read access rights to sectors\r
565\r
566 PrintAndLog("|-----------------------------------------|");\r
567 PrintAndLog("|------ Reading sector access bits...-----|");\r
568 PrintAndLog("|-----------------------------------------|");\r
569 \r
570 for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r
571 UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + NumBlocksPerSector(sectorNo) - 1, 0, 0}};\r
572 memcpy(c.d.asBytes, keyA[sectorNo], 6);\r
573 SendCommand(&c);\r
574\r
575 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
576 uint8_t isOK = resp.arg[0] & 0xff;\r
577 uint8_t *data = resp.d.asBytes;\r
578 if (isOK){\r
579 rights[sectorNo][0] = ((data[7] & 0x10)>>4) | ((data[8] & 0x1)<<1) | ((data[8] & 0x10)>>2);\r
580 rights[sectorNo][1] = ((data[7] & 0x20)>>5) | ((data[8] & 0x2)<<0) | ((data[8] & 0x20)>>3);\r
581 rights[sectorNo][2] = ((data[7] & 0x40)>>6) | ((data[8] & 0x4)>>1) | ((data[8] & 0x40)>>4);\r
582 rights[sectorNo][3] = ((data[7] & 0x80)>>7) | ((data[8] & 0x8)>>2) | ((data[8] & 0x80)>>5);\r
583 } else {\r
584 PrintAndLog("Could not get access rights for sector %2d.", sectorNo);\r
585 }\r
586 } else {\r
587 PrintAndLog("Command execute timeout");\r
588 }\r
589 }\r
590 \r
591 // Read blocks and print to file\r
592 \r
593 PrintAndLog("|-----------------------------------------|");\r
594 PrintAndLog("|----- Dumping all blocks to file... -----|");\r
595 PrintAndLog("|-----------------------------------------|");\r
596 \r
597 \r
598 for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r
599 for (blockNo = 0; blockNo < NumBlocksPerSector(sectorNo); blockNo++) {\r
600 bool received = false;\r
601 if (blockNo == NumBlocksPerSector(sectorNo) - 1) { // sector trailer. At least the Access Conditions can always be read with key A. \r
602 UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + blockNo, 0, 0}};\r
603 memcpy(c.d.asBytes, keyA[sectorNo], 6);\r
604 SendCommand(&c);\r
605 received = WaitForResponseTimeout(CMD_ACK,&resp,1500);\r
606 } else { // data block. Check if it can be read with key A or key B\r
607 uint8_t data_area = sectorNo<32?blockNo:blockNo/5;\r
608 if ((rights[sectorNo][data_area] == 3) || (rights[sectorNo][data_area] == 5)) { // only key B would work\r
609 UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + blockNo, 1, 0}};\r
610 memcpy(c.d.asBytes, keyB[sectorNo], 6);\r
611 SendCommand(&c);\r
612 received = WaitForResponseTimeout(CMD_ACK,&resp,1500);\r
613 } else if (rights[sectorNo][data_area] == 7) { // no key would work\r
614 PrintAndLog("Access rights do not allow reading of sector %2d block %3d", sectorNo, blockNo);\r
615 } else { // key A would work\r
616 UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + blockNo, 0, 0}};\r
617 memcpy(c.d.asBytes, keyA[sectorNo], 6);\r
618 SendCommand(&c);\r
619 received = WaitForResponseTimeout(CMD_ACK,&resp,1500);\r
620 }\r
621 }\r
622\r
623 if (received) {\r
624 uint8_t isOK = resp.arg[0] & 0xff;\r
625 uint8_t *data = resp.d.asBytes;\r
626 if (blockNo == NumBlocksPerSector(sectorNo) - 1) { // sector trailer. Fill in the keys.\r
627 data[0] = (keyA[sectorNo][0]);\r
628 data[1] = (keyA[sectorNo][1]);\r
629 data[2] = (keyA[sectorNo][2]);\r
630 data[3] = (keyA[sectorNo][3]);\r
631 data[4] = (keyA[sectorNo][4]);\r
632 data[5] = (keyA[sectorNo][5]);\r
633 data[10] = (keyB[sectorNo][0]);\r
634 data[11] = (keyB[sectorNo][1]);\r
635 data[12] = (keyB[sectorNo][2]);\r
636 data[13] = (keyB[sectorNo][3]);\r
637 data[14] = (keyB[sectorNo][4]);\r
638 data[15] = (keyB[sectorNo][5]);\r
639 }\r
640 if (isOK) {\r
641 fwrite ( data, 1, 16, fout );\r
642 PrintAndLog("Dumped block %2d of sector %2d into 'dumpdata.bin'");\r
643 } else {\r
644 PrintAndLog("Could not read block %2d of sector %2d", blockNo, sectorNo);\r
645 }\r
646 }\r
647 else {\r
648 PrintAndLog("Command execute timeout");\r
649 }\r
650 }\r
651\r
652 }\r
653 \r
654 fclose(fin);\r
655 fclose(fout);\r
656 return 0;\r
657}\r
658\r
659\r
660int CmdHF14AMfRestore(const char *Cmd)\r
661{\r
662\r
663 uint8_t sectorNo,blockNo;\r
664 uint8_t keyType = 0;\r
665 uint8_t key[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};\r
666 uint8_t bldata[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\r
667 uint8_t keyA[40][6];\r
668 uint8_t keyB[40][6];\r
669 uint8_t numSectors;\r
670 \r
671 FILE *fdump;\r
672 FILE *fkeys;\r
673\r
674 char cmdp = param_getchar(Cmd, 0);\r
675 switch (cmdp) {\r
676 case '0' : numSectors = 5; break;\r
677 case '1' : \r
678 case '\0': numSectors = 16; break;\r
679 case '2' : numSectors = 32; break;\r
680 case '4' : numSectors = 40; break;\r
681 default: numSectors = 16;\r
682 } \r
683\r
684 if (strlen(Cmd) > 1 || cmdp == 'h' || cmdp == 'H') {\r
685 PrintAndLog("Usage: hf mf restore [card memory]");\r
686 PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r
687 PrintAndLog("");\r
688 PrintAndLog("Samples: hf mf restore");\r
689 PrintAndLog(" hf mf restore 4");\r
690 return 0;\r
691 }\r
692\r
693 if ((fdump = fopen("dumpdata.bin","rb")) == NULL) {\r
694 PrintAndLog("Could not find file dumpdata.bin");\r
695 return 1;\r
696 }\r
697 if ((fkeys = fopen("dumpkeys.bin","rb")) == NULL) {\r
698 PrintAndLog("Could not find file dumpkeys.bin");\r
699 return 1;\r
700 }\r
701 \r
702 for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r
703 if (fread(keyA[sectorNo], 1, 6, fkeys) == 0) {\r
704 PrintAndLog("File reading error (dumpkeys.bin).");\r
705 return 2;\r
706 }\r
707 }\r
708\r
709 for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r
710 if (fread(keyB[sectorNo], 1, 6, fkeys) == 0) {\r
711 PrintAndLog("File reading error (dumpkeys.bin).");\r
712 return 2;\r
713 }\r
714 }\r
715 \r
716 PrintAndLog("Restoring dumpdata.bin to card");\r
717\r
718 for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r
719 for(blockNo = 0; blockNo < NumBlocksPerSector(sectorNo); blockNo++) {\r
720 UsbCommand c = {CMD_MIFARE_WRITEBL, {FirstBlockOfSector(sectorNo) + blockNo, keyType, 0}};\r
721 memcpy(c.d.asBytes, key, 6);\r
722 \r
723 if (fread(bldata, 1, 16, fdump) == 0) {\r
724 PrintAndLog("File reading error (dumpdata.bin).");\r
725 return 2;\r
726 }\r
727 \r
728 if (blockNo == NumBlocksPerSector(sectorNo) - 1) { // sector trailer\r
729 bldata[0] = (keyA[sectorNo][0]);\r
730 bldata[1] = (keyA[sectorNo][1]);\r
731 bldata[2] = (keyA[sectorNo][2]);\r
732 bldata[3] = (keyA[sectorNo][3]);\r
733 bldata[4] = (keyA[sectorNo][4]);\r
734 bldata[5] = (keyA[sectorNo][5]);\r
735 bldata[10] = (keyB[sectorNo][0]);\r
736 bldata[11] = (keyB[sectorNo][1]);\r
737 bldata[12] = (keyB[sectorNo][2]);\r
738 bldata[13] = (keyB[sectorNo][3]);\r
739 bldata[14] = (keyB[sectorNo][4]);\r
740 bldata[15] = (keyB[sectorNo][5]);\r
741 } \r
742 \r
743 PrintAndLog("Writing to block %3d: %s", FirstBlockOfSector(sectorNo) + blockNo, sprint_hex(bldata, 16));\r
744 \r
745 memcpy(c.d.asBytes + 10, bldata, 16);\r
746 SendCommand(&c);\r
747\r
748 UsbCommand resp;\r
749 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
750 uint8_t isOK = resp.arg[0] & 0xff;\r
751 PrintAndLog("isOk:%02x", isOK);\r
752 } else {\r
753 PrintAndLog("Command execute timeout");\r
754 }\r
755 }\r
756 }\r
757 \r
758 fclose(fdump);\r
759 fclose(fkeys);\r
760 return 0;\r
761}\r
762\r
763\r
764int CmdHF14AMfNested(const char *Cmd)\r
765{\r
766 int i, j, res, iterations;\r
767 sector *e_sector = NULL;\r
768 uint8_t blockNo = 0;\r
769 uint8_t keyType = 0;\r
770 uint8_t trgBlockNo = 0;\r
771 uint8_t trgKeyType = 0;\r
772 uint8_t SectorsCnt = 0;\r
773 uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r
774 uint8_t keyBlock[6*6];\r
775 uint64_t key64 = 0;\r
776 bool transferToEml = false;\r
777 \r
778 bool createDumpFile = false;\r
779 FILE *fkeys;\r
780 uint8_t standart[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};\r
781 uint8_t tempkey[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};\r
782 \r
783 char cmdp, ctmp;\r
784\r
785 if (strlen(Cmd)<3) {\r
786 PrintAndLog("Usage:");\r
787 PrintAndLog(" all sectors: hf mf nested <card memory> <block number> <key A/B> <key (12 hex symbols)> [t,d]");\r
788 PrintAndLog(" one sector: hf mf nested o <block number> <key A/B> <key (12 hex symbols)>");\r
789 PrintAndLog(" <target block number> <target key A/B> [t]");\r
790 PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");\r
791 PrintAndLog("t - transfer keys into emulator memory");\r
792 PrintAndLog("d - write keys to binary file");\r
793 PrintAndLog(" ");\r
794 PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF ");\r
795 PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF t ");\r
796 PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF d ");\r
797 PrintAndLog(" sample2: hf mf nested o 0 A FFFFFFFFFFFF 4 A");\r
798 return 0;\r
799 } \r
800 \r
801 cmdp = param_getchar(Cmd, 0);\r
802 blockNo = param_get8(Cmd, 1);\r
803 ctmp = param_getchar(Cmd, 2);\r
804 if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r
805 PrintAndLog("Key type must be A or B");\r
806 return 1;\r
807 }\r
808 if (ctmp != 'A' && ctmp != 'a') keyType = 1;\r
809 if (param_gethex(Cmd, 3, key, 12)) {\r
810 PrintAndLog("Key must include 12 HEX symbols");\r
811 return 1;\r
812 }\r
813 \r
814 if (cmdp == 'o' || cmdp == 'O') {\r
815 cmdp = 'o';\r
816 trgBlockNo = param_get8(Cmd, 4);\r
817 ctmp = param_getchar(Cmd, 5);\r
818 if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r
819 PrintAndLog("Target key type must be A or B");\r
820 return 1;\r
821 }\r
822 if (ctmp != 'A' && ctmp != 'a') trgKeyType = 1;\r
823 } else {\r
824 switch (cmdp) {\r
825 case '0': SectorsCnt = 05; break;\r
826 case '1': SectorsCnt = 16; break;\r
827 case '2': SectorsCnt = 32; break;\r
828 case '4': SectorsCnt = 40; break;\r
829 default: SectorsCnt = 16;\r
830 }\r
831 }\r
832\r
833 ctmp = param_getchar(Cmd, 4);\r
834 if (ctmp == 't' || ctmp == 'T') transferToEml = true;\r
835 else if (ctmp == 'd' || ctmp == 'D') createDumpFile = true;\r
836 \r
837 ctmp = param_getchar(Cmd, 6);\r
838 transferToEml |= (ctmp == 't' || ctmp == 'T');\r
839 transferToEml |= (ctmp == 'd' || ctmp == 'D');\r
840 \r
841 if (cmdp == 'o') {\r
842 PrintAndLog("--target block no:%3d, target key type:%c ", trgBlockNo, trgKeyType?'B':'A');\r
843 if (mfnested(blockNo, keyType, key, trgBlockNo, trgKeyType, keyBlock, true)) {\r
844 PrintAndLog("Nested error.");\r
845 return 2;\r
846 }\r
847 key64 = bytes_to_num(keyBlock, 6);\r
848 if (key64) {\r
849 PrintAndLog("Found valid key:%012"llx, key64);\r
850\r
851 // transfer key to the emulator\r
852 if (transferToEml) {\r
853 uint8_t sectortrailer;\r
854 if (trgBlockNo < 32*4) { // 4 block sector\r
855 sectortrailer = (trgBlockNo & 0x03) + 3;\r
856 } else { // 16 block sector\r
857 sectortrailer = (trgBlockNo & 0x0f) + 15;\r
858 }\r
859 mfEmlGetMem(keyBlock, sectortrailer, 1);\r
860 \r
861 if (!trgKeyType)\r
862 num_to_bytes(key64, 6, keyBlock);\r
863 else\r
864 num_to_bytes(key64, 6, &keyBlock[10]);\r
865 mfEmlSetMem(keyBlock, sectortrailer, 1); \r
866 }\r
867 } else {\r
868 PrintAndLog("No valid key found");\r
869 }\r
870 }\r
871 else { // ------------------------------------ multiple sectors working\r
872 clock_t time1;\r
873 time1 = clock();\r
874\r
875 e_sector = calloc(SectorsCnt, sizeof(sector));\r
876 if (e_sector == NULL) return 1;\r
877 \r
878 //test current key and additional standard keys first\r
879 memcpy(keyBlock, key, 6);\r
880 num_to_bytes(0xffffffffffff, 6, (uint8_t*)(keyBlock + 1 * 6));\r
881 num_to_bytes(0x000000000000, 6, (uint8_t*)(keyBlock + 2 * 6));\r
882 num_to_bytes(0xa0a1a2a3a4a5, 6, (uint8_t*)(keyBlock + 3 * 6));\r
883 num_to_bytes(0xb0b1b2b3b4b5, 6, (uint8_t*)(keyBlock + 4 * 6));\r
884 num_to_bytes(0xaabbccddeeff, 6, (uint8_t*)(keyBlock + 5 * 6));\r
885\r
886 PrintAndLog("Testing known keys. Sector count=%d", SectorsCnt);\r
887 for (i = 0; i < SectorsCnt; i++) {\r
888 for (j = 0; j < 2; j++) {\r
889 if (e_sector[i].foundKey[j]) continue;\r
890 \r
891 res = mfCheckKeys(FirstBlockOfSector(i), j, 6, keyBlock, &key64);\r
892 \r
893 if (!res) {\r
894 e_sector[i].Key[j] = key64;\r
895 e_sector[i].foundKey[j] = 1;\r
896 }\r
897 }\r
898 }\r
899 \r
900 \r
901 // nested sectors\r
902 iterations = 0;\r
903 PrintAndLog("nested...");\r
904 bool calibrate = true;\r
905 for (i = 0; i < NESTED_SECTOR_RETRY; i++) {\r
906 for (uint8_t sectorNo = 0; sectorNo < SectorsCnt; sectorNo++) {\r
907 for (trgKeyType = 0; trgKeyType < 2; trgKeyType++) { \r
908 if (e_sector[sectorNo].foundKey[trgKeyType]) continue;\r
909 PrintAndLog("-----------------------------------------------");\r
910 if(mfnested(blockNo, keyType, key, FirstBlockOfSector(sectorNo), trgKeyType, keyBlock, calibrate)) {\r
911 PrintAndLog("Nested error.\n");\r
912 return 2;\r
913 }\r
914 else {\r
915 calibrate = false;\r
916 }\r
917 \r
918 iterations++;\r
919\r
920 key64 = bytes_to_num(keyBlock, 6);\r
921 if (key64) {\r
922 PrintAndLog("Found valid key:%012"llx, key64);\r
923 e_sector[sectorNo].foundKey[trgKeyType] = 1;\r
924 e_sector[sectorNo].Key[trgKeyType] = key64;\r
925 }\r
926 }\r
927 }\r
928 }\r
929\r
930 printf("Time in nested: %1.3f (%1.3f sec per key)\n\n", ((float)clock() - time1)/CLOCKS_PER_SEC, ((float)clock() - time1)/iterations/CLOCKS_PER_SEC);\r
931 \r
932 PrintAndLog("-----------------------------------------------\nIterations count: %d\n\n", iterations);\r
933 //print them\r
934 PrintAndLog("|---|----------------|---|----------------|---|");\r
935 PrintAndLog("|sec|key A |res|key B |res|");\r
936 PrintAndLog("|---|----------------|---|----------------|---|");\r
937 for (i = 0; i < SectorsCnt; i++) {\r
938 PrintAndLog("|%03d| %012"llx" | %d | %012"llx" | %d |", i,\r
939 e_sector[i].Key[0], e_sector[i].foundKey[0], e_sector[i].Key[1], e_sector[i].foundKey[1]);\r
940 }\r
941 PrintAndLog("|---|----------------|---|----------------|---|");\r
942 \r
943 // transfer them to the emulator\r
944 if (transferToEml) {\r
945 for (i = 0; i < SectorsCnt; i++) {\r
946 mfEmlGetMem(keyBlock, FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1, 1);\r
947 if (e_sector[i].foundKey[0])\r
948 num_to_bytes(e_sector[i].Key[0], 6, keyBlock);\r
949 if (e_sector[i].foundKey[1])\r
950 num_to_bytes(e_sector[i].Key[1], 6, &keyBlock[10]);\r
951 mfEmlSetMem(keyBlock, FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1, 1);\r
952 } \r
953 }\r
954 \r
955 // Create dump file\r
956 if (createDumpFile) {\r
957 if ((fkeys = fopen("dumpkeys.bin","wb")) == NULL) { \r
958 PrintAndLog("Could not create file dumpkeys.bin");\r
959 free(e_sector);\r
960 return 1;\r
961 }\r
962 PrintAndLog("Printing keys to binary file dumpkeys.bin...");\r
963 for(i=0; i<SectorsCnt; i++) {\r
964 if (e_sector[i].foundKey[0]){\r
965 num_to_bytes(e_sector[i].Key[0], 6, tempkey);\r
966 fwrite ( tempkey, 1, 6, fkeys );\r
967 }\r
968 else{\r
969 fwrite ( &standart, 1, 6, fkeys );\r
970 }\r
971 }\r
972 for(i=0; i<SectorsCnt; i++) {\r
973 if (e_sector[i].foundKey[1]){\r
974 num_to_bytes(e_sector[i].Key[1], 6, tempkey);\r
975 fwrite ( tempkey, 1, 6, fkeys );\r
976 }\r
977 else{\r
978 fwrite ( &standart, 1, 6, fkeys );\r
979 }\r
980 }\r
981 fclose(fkeys);\r
982 }\r
983 \r
984 free(e_sector);\r
985 }\r
986\r
987 return 0;\r
988}\r
989\r
990\r
991static uint32_t get_trailer_block (uint32_t uiBlock)\r
992{\r
993 // Test if we are in the small or big sectors\r
994 uint32_t trailer_block = 0;\r
995 if (uiBlock < 128) {\r
996 trailer_block = uiBlock + (3 - (uiBlock % 4));\r
997 } else {\r
998 trailer_block = uiBlock + (15 - (uiBlock % 16));\r
999 }\r
1000 return trailer_block;\r
1001}\r
1002\r
1003\r
1004int CmdHF14AMfChk(const char *Cmd)\r
1005{\r
1006 FILE * f;\r
1007 char filename[256]={0};\r
1008 char buf[13];\r
1009 uint8_t *keyBlock = NULL, *p;\r
1010 uint8_t stKeyBlock = 20;\r
1011 \r
1012 int i, res;\r
1013 int keycnt = 0;\r
1014 char ctmp = 0x00;\r
1015 uint8_t blockNo = 0;\r
1016 uint8_t SectorsCnt = 1;\r
1017 uint8_t keyType = 0;\r
1018 uint64_t key64 = 0;\r
1019 \r
1020 int transferToEml = 0;\r
1021 int createDumpFile = 0;\r
1022\r
1023 keyBlock = calloc(stKeyBlock, 6);\r
1024 if (keyBlock == NULL) return 1;\r
1025\r
1026 uint64_t defaultKeys[] =\r
1027 {\r
1028 0xffffffffffff, // Default key (first key used by program if no user defined key)\r
1029 0x000000000000, // Blank key\r
1030 0xa0a1a2a3a4a5, // NFCForum MAD key\r
1031 0xb0b1b2b3b4b5,\r
1032 0xaabbccddeeff,\r
1033 0x4d3a99c351dd,\r
1034 0x1a982c7e459a,\r
1035 0xd3f7d3f7d3f7,\r
1036 0x714c5c886e97,\r
1037 0x587ee5f9350f,\r
1038 0xa0478cc39091,\r
1039 0x533cb6c723f6,\r
1040 0x8fd0a4f256e9\r
1041 };\r
1042 int defaultKeysSize = sizeof(defaultKeys) / sizeof(uint64_t);\r
1043\r
1044 for (int defaultKeyCounter = 0; defaultKeyCounter < defaultKeysSize; defaultKeyCounter++)\r
1045 {\r
1046 num_to_bytes(defaultKeys[defaultKeyCounter], 6, (uint8_t*)(keyBlock + defaultKeyCounter * 6));\r
1047 }\r
1048 \r
1049 if (strlen(Cmd)<3) {\r
1050 PrintAndLog("Usage: hf mf chk <block number>|<*card memory> <key type (A/B/?)> [t] [<key (12 hex symbols)>] [<dic (*.dic)>]");\r
1051 PrintAndLog(" * - all sectors");\r
1052 PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");\r
1053// PrintAndLog("d - write keys to binary file\n");\r
1054 \r
1055 PrintAndLog(" sample: hf mf chk 0 A 1234567890ab keys.dic");\r
1056 PrintAndLog(" hf mf chk *1 ? t");\r
1057 return 0;\r
1058 } \r
1059 \r
1060 if (param_getchar(Cmd, 0)=='*') {\r
1061 blockNo = 3;\r
1062 switch(param_getchar(Cmd+1, 0)) {\r
1063 case '0': SectorsCnt = 5; break;\r
1064 case '1': SectorsCnt = 16; break;\r
1065 case '2': SectorsCnt = 32; break;\r
1066 case '4': SectorsCnt = 40; break;\r
1067 default: SectorsCnt = 16;\r
1068 }\r
1069 }\r
1070 else\r
1071 blockNo = param_get8(Cmd, 0);\r
1072 \r
1073 ctmp = param_getchar(Cmd, 1);\r
1074 switch (ctmp) { \r
1075 case 'a': case 'A':\r
1076 keyType = !0;\r
1077 break;\r
1078 case 'b': case 'B':\r
1079 keyType = !1;\r
1080 break;\r
1081 case '?':\r
1082 keyType = 2;\r
1083 break;\r
1084 default:\r
1085 PrintAndLog("Key type must be A , B or ?");\r
1086 return 1;\r
1087 };\r
1088 \r
1089 ctmp = param_getchar(Cmd, 2);\r
1090 if (ctmp == 't' || ctmp == 'T') transferToEml = 1;\r
1091 else if (ctmp == 'd' || ctmp == 'D') createDumpFile = 1;\r
1092 \r
1093 for (i = transferToEml || createDumpFile; param_getchar(Cmd, 2 + i); i++) {\r
1094 if (!param_gethex(Cmd, 2 + i, keyBlock + 6 * keycnt, 12)) {\r
1095 if ( stKeyBlock - keycnt < 2) {\r
1096 p = realloc(keyBlock, 6*(stKeyBlock+=10));\r
1097 if (!p) {\r
1098 PrintAndLog("Cannot allocate memory for Keys");\r
1099 free(keyBlock);\r
1100 return 2;\r
1101 }\r
1102 keyBlock = p;\r
1103 }\r
1104 PrintAndLog("chk key[%2d] %02x%02x%02x%02x%02x%02x", keycnt,\r
1105 (keyBlock + 6*keycnt)[0],(keyBlock + 6*keycnt)[1], (keyBlock + 6*keycnt)[2],\r
1106 (keyBlock + 6*keycnt)[3], (keyBlock + 6*keycnt)[4], (keyBlock + 6*keycnt)[5], 6);\r
1107 keycnt++;\r
1108 } else {\r
1109 // May be a dic file\r
1110 if ( param_getstr(Cmd, 2 + i,filename) > 255 ) {\r
1111 PrintAndLog("File name too long");\r
1112 free(keyBlock);\r
1113 return 2;\r
1114 }\r
1115 \r
1116 if ( (f = fopen( filename , "r")) ) {\r
1117 while( fgets(buf, sizeof(buf), f) ){\r
1118 if (strlen(buf) < 12 || buf[11] == '\n')\r
1119 continue;\r
1120 \r
1121 while (fgetc(f) != '\n' && !feof(f)) ; //goto next line\r
1122 \r
1123 if( buf[0]=='#' ) continue; //The line start with # is comment, skip\r
1124\r
1125 if (!isxdigit(buf[0])){\r
1126 PrintAndLog("File content error. '%s' must include 12 HEX symbols",buf);\r
1127 continue;\r
1128 }\r
1129 \r
1130 buf[12] = 0;\r
1131\r
1132 if ( stKeyBlock - keycnt < 2) {\r
1133 p = realloc(keyBlock, 6*(stKeyBlock+=10));\r
1134 if (!p) {\r
1135 PrintAndLog("Cannot allocate memory for defKeys");\r
1136 free(keyBlock);\r
1137 return 2;\r
1138 }\r
1139 keyBlock = p;\r
1140 }\r
1141 memset(keyBlock + 6 * keycnt, 0, 6);\r
1142 num_to_bytes(strtoll(buf, NULL, 16), 6, keyBlock + 6*keycnt);\r
1143 PrintAndLog("chk custom key[%2d] %012"llx, keycnt, bytes_to_num(keyBlock + 6*keycnt, 6));\r
1144 keycnt++;\r
1145 memset(buf, 0, sizeof(buf));\r
1146 }\r
1147 } else {\r
1148 PrintAndLog("File: %s: not found or locked.", filename);\r
1149 free(keyBlock);\r
1150 return 1;\r
1151 fclose(f);\r
1152 }\r
1153 }\r
1154 }\r
1155 \r
1156 if (keycnt == 0) {\r
1157 PrintAndLog("No key specified, trying default keys");\r
1158 for (;keycnt < defaultKeysSize; keycnt++)\r
1159 PrintAndLog("chk default key[%2d] %02x%02x%02x%02x%02x%02x", keycnt,\r
1160 (keyBlock + 6*keycnt)[0],(keyBlock + 6*keycnt)[1], (keyBlock + 6*keycnt)[2],\r
1161 (keyBlock + 6*keycnt)[3], (keyBlock + 6*keycnt)[4], (keyBlock + 6*keycnt)[5], 6);\r
1162 }\r
1163 \r
1164 for ( int t = !keyType; t < 2; keyType==2?(t++):(t=2) ) {\r
1165 int b=blockNo;\r
1166 for (int i = 0; i < SectorsCnt; ++i) {\r
1167 PrintAndLog("--SectorsCnt:%2d, block no:%3d, key type:%C, key count:%2d ", i, b, t?'B':'A', keycnt);\r
1168 uint32_t max_keys = keycnt>USB_CMD_DATA_SIZE/6?USB_CMD_DATA_SIZE/6:keycnt;\r
1169 for (uint32_t c = 0; c < keycnt; c+=max_keys) {\r
1170 uint32_t size = keycnt-c>max_keys?max_keys:keycnt-c;\r
1171 res = mfCheckKeys(b, t, size, &keyBlock[6*c], &key64);\r
1172 if (res != 1) {\r
1173 if (!res) {\r
1174 PrintAndLog("Found valid key:[%012"llx"]",key64);\r
1175 if (transferToEml) {\r
1176 uint8_t block[16];\r
1177 mfEmlGetMem(block, get_trailer_block(b), 1);\r
1178 num_to_bytes(key64, 6, block + t*10);\r
1179 mfEmlSetMem(block, get_trailer_block(b), 1);\r
1180 }\r
1181 }\r
1182 } else {\r
1183 PrintAndLog("Command execute timeout");\r
1184 }\r
1185 }\r
1186 b<127?(b+=4):(b+=16); \r
1187 }\r
1188 }\r
1189 \r
1190 free(keyBlock);\r
1191\r
1192/*\r
1193 // Create dump file\r
1194 if (createDumpFile) {\r
1195 if ((fkeys = fopen("dumpkeys.bin","wb")) == NULL) { \r
1196 PrintAndLog("Could not create file dumpkeys.bin");\r
1197 free(e_sector);\r
1198 return 1;\r
1199 }\r
1200 PrintAndLog("Printing keys to binary file dumpkeys.bin...");\r
1201 for(i=0; i<16; i++) {\r
1202 if (e_sector[i].foundKey[0]){\r
1203 num_to_bytes(e_sector[i].Key[0], 6, tempkey);\r
1204 fwrite ( tempkey, 1, 6, fkeys );\r
1205 }\r
1206 else{\r
1207 fwrite ( &standart, 1, 6, fkeys );\r
1208 }\r
1209 }\r
1210 for(i=0; i<16; i++) {\r
1211 if (e_sector[i].foundKey[1]){\r
1212 num_to_bytes(e_sector[i].Key[1], 6, tempkey);\r
1213 fwrite ( tempkey, 1, 6, fkeys );\r
1214 }\r
1215 else{\r
1216 fwrite ( &standart, 1, 6, fkeys );\r
1217 }\r
1218 }\r
1219 fclose(fkeys);\r
1220 }\r
1221*/\r
1222 return 0;\r
1223}\r
1224\r
1225int CmdHF14AMf1kSim(const char *Cmd)\r
1226{\r
1227 uint8_t uid[7] = {0, 0, 0, 0, 0, 0, 0};\r
1228 uint8_t exitAfterNReads = 0;\r
1229 uint8_t flags = 0;\r
1230\r
1231 if (param_getchar(Cmd, 0) == 'h') {\r
1232 PrintAndLog("Usage: hf mf sim u <uid (8 hex symbols)> n <numreads> i x");\r
1233 PrintAndLog(" u (Optional) UID. If not specified, the UID from emulator memory will be used");\r
1234 PrintAndLog(" n (Optional) Automatically exit simulation after <numreads> blocks have been read by reader. 0 = infinite");\r
1235 PrintAndLog(" i (Optional) Interactive, means that console will not be returned until simulation finishes or is aborted");\r
1236 PrintAndLog(" x (Optional) Crack, performs the 'reader attack', nr/ar attack against a legitimate reader, fishes out the key(s)");\r
1237 PrintAndLog(" sample: hf mf sim u 0a0a0a0a ");\r
1238 return 0;\r
1239 }\r
1240 uint8_t pnr = 0;\r
1241 if (param_getchar(Cmd, pnr) == 'u') {\r
1242 if(param_gethex(Cmd, pnr+1, uid, 8) == 0)\r
1243 {\r
1244 flags |= FLAG_4B_UID_IN_DATA; // UID from packet\r
1245 } else if(param_gethex(Cmd,pnr+1,uid,14) == 0) {\r
1246 flags |= FLAG_7B_UID_IN_DATA;// UID from packet\r
1247 } else {\r
1248 PrintAndLog("UID, if specified, must include 8 or 14 HEX symbols");\r
1249 return 1;\r
1250 }\r
1251 pnr +=2;\r
1252 }\r
1253 if (param_getchar(Cmd, pnr) == 'n') {\r
1254 exitAfterNReads = param_get8(Cmd,pnr+1);\r
1255 pnr += 2;\r
1256 }\r
1257 if (param_getchar(Cmd, pnr) == 'i' ) {\r
1258 //Using a flag to signal interactiveness, least significant bit\r
1259 flags |= FLAG_INTERACTIVE;\r
1260 pnr++;\r
1261 }\r
1262\r
1263 if (param_getchar(Cmd, pnr) == 'x' ) {\r
1264 //Using a flag to signal interactiveness, least significant bit\r
1265 flags |= FLAG_NR_AR_ATTACK;\r
1266 }\r
1267 PrintAndLog(" uid:%s, numreads:%d, flags:%d (0x%02x) ",\r
1268 flags & FLAG_4B_UID_IN_DATA ? sprint_hex(uid,4):\r
1269 flags & FLAG_7B_UID_IN_DATA ? sprint_hex(uid,7): "N/A"\r
1270 , exitAfterNReads, flags,flags);\r
1271\r
1272\r
1273 UsbCommand c = {CMD_SIMULATE_MIFARE_CARD, {flags, exitAfterNReads,0}};\r
1274 memcpy(c.d.asBytes, uid, sizeof(uid));\r
1275 SendCommand(&c);\r
1276\r
1277 if(flags & FLAG_INTERACTIVE)\r
1278 {\r
1279 UsbCommand resp;\r
1280 PrintAndLog("Press pm3-button to abort simulation");\r
1281 while(! WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r
1282 //We're waiting only 1.5 s at a time, otherwise we get the\r
1283 // annoying message about "Waiting for a response... "\r
1284 }\r
1285 }\r
1286 \r
1287 return 0;\r
1288}\r
1289\r
1290\r
1291int CmdHF14AMfDbg(const char *Cmd)\r
1292{\r
1293 int dbgMode = param_get32ex(Cmd, 0, 0, 10);\r
1294 if (dbgMode > 4) {\r
1295 PrintAndLog("Max debug mode parameter is 4 \n");\r
1296 }\r
1297\r
1298 if (strlen(Cmd) < 1 || !param_getchar(Cmd, 0) || dbgMode > 4) {\r
1299 PrintAndLog("Usage: hf mf dbg <debug level>");\r
1300 PrintAndLog(" 0 - no debug messages");\r
1301 PrintAndLog(" 1 - error messages");\r
1302 PrintAndLog(" 2 - plus information messages");\r
1303 PrintAndLog(" 3 - plus debug messages");\r
1304 PrintAndLog(" 4 - print even debug messages in timing critical functions");\r
1305 PrintAndLog(" Note: this option therefore may cause malfunction itself");\r
1306 return 0;\r
1307 } \r
1308\r
1309 UsbCommand c = {CMD_MIFARE_SET_DBGMODE, {dbgMode, 0, 0}};\r
1310 SendCommand(&c);\r
1311\r
1312 return 0;\r
1313}\r
1314\r
1315\r
1316int CmdHF14AMfEGet(const char *Cmd)\r
1317{\r
1318 uint8_t blockNo = 0;\r
1319 uint8_t data[16];\r
1320\r
1321 if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r
1322 PrintAndLog("Usage: hf mf eget <block number>");\r
1323 PrintAndLog(" sample: hf mf eget 0 ");\r
1324 return 0;\r
1325 } \r
1326 \r
1327 blockNo = param_get8(Cmd, 0);\r
1328\r
1329 PrintAndLog(" ");\r
1330 if (!mfEmlGetMem(data, blockNo, 1)) {\r
1331 PrintAndLog("data[%3d]:%s", blockNo, sprint_hex(data, 16));\r
1332 } else {\r
1333 PrintAndLog("Command execute timeout");\r
1334 }\r
1335\r
1336 return 0;\r
1337}\r
1338\r
1339\r
1340int CmdHF14AMfEClear(const char *Cmd)\r
1341{\r
1342 if (param_getchar(Cmd, 0) == 'h') {\r
1343 PrintAndLog("Usage: hf mf eclr");\r
1344 PrintAndLog("It set card emulator memory to empty data blocks and key A/B FFFFFFFFFFFF \n");\r
1345 return 0;\r
1346 } \r
1347\r
1348 UsbCommand c = {CMD_MIFARE_EML_MEMCLR, {0, 0, 0}};\r
1349 SendCommand(&c);\r
1350 return 0;\r
1351}\r
1352\r
1353\r
1354int CmdHF14AMfESet(const char *Cmd)\r
1355{\r
1356 uint8_t memBlock[16];\r
1357 uint8_t blockNo = 0;\r
1358\r
1359 memset(memBlock, 0x00, sizeof(memBlock));\r
1360\r
1361 if (strlen(Cmd) < 3 || param_getchar(Cmd, 0) == 'h') {\r
1362 PrintAndLog("Usage: hf mf eset <block number> <block data (32 hex symbols)>");\r
1363 PrintAndLog(" sample: hf mf eset 1 000102030405060708090a0b0c0d0e0f ");\r
1364 return 0;\r
1365 } \r
1366 \r
1367 blockNo = param_get8(Cmd, 0);\r
1368 \r
1369 if (param_gethex(Cmd, 1, memBlock, 32)) {\r
1370 PrintAndLog("block data must include 32 HEX symbols");\r
1371 return 1;\r
1372 }\r
1373 \r
1374 // 1 - blocks count\r
1375 UsbCommand c = {CMD_MIFARE_EML_MEMSET, {blockNo, 1, 0}};\r
1376 memcpy(c.d.asBytes, memBlock, 16);\r
1377 SendCommand(&c);\r
1378 return 0;\r
1379}\r
1380\r
1381\r
1382int CmdHF14AMfELoad(const char *Cmd)\r
1383{\r
1384 FILE * f;\r
1385 char filename[20];\r
1386 char *fnameptr = filename;\r
1387 char buf[64];\r
1388 uint8_t buf8[64];\r
1389 int i, len, blockNum;\r
1390 \r
1391 memset(filename, 0, sizeof(filename));\r
1392 memset(buf, 0, sizeof(buf));\r
1393\r
1394 if (param_getchar(Cmd, 0) == 'h' || param_getchar(Cmd, 0)== 0x00) {\r
1395 PrintAndLog("It loads emul dump from the file `filename.eml`");\r
1396 PrintAndLog("Usage: hf mf eload <file name w/o `.eml`>");\r
1397 PrintAndLog(" sample: hf mf eload filename");\r
1398 return 0;\r
1399 } \r
1400\r
1401 len = strlen(Cmd);\r
1402 if (len > 14) len = 14;\r
1403\r
1404 memcpy(filename, Cmd, len);\r
1405 fnameptr += len;\r
1406\r
1407 sprintf(fnameptr, ".eml"); \r
1408 \r
1409 // open file\r
1410 f = fopen(filename, "r");\r
1411 if (f == NULL) {\r
1412 PrintAndLog("File not found or locked.");\r
1413 return 1;\r
1414 }\r
1415 \r
1416 blockNum = 0;\r
1417 while(!feof(f)){\r
1418 memset(buf, 0, sizeof(buf));\r
1419 if (fgets(buf, sizeof(buf), f) == NULL) {\r
1420 if((blockNum == 16*4) || (blockNum == 32*4 + 8*16)) { // supports both old (1K) and new (4K) .eml files)\r
1421 break;\r
1422 }\r
1423 PrintAndLog("File reading error.");\r
1424 return 2;\r
1425 }\r
1426 if (strlen(buf) < 32){\r
1427 if(strlen(buf) && feof(f))\r
1428 break;\r
1429 PrintAndLog("File content error. Block data must include 32 HEX symbols");\r
1430 return 2;\r
1431 }\r
1432 for (i = 0; i < 32; i += 2) {\r
1433 sscanf(&buf[i], "%02x", (unsigned int *)&buf8[i / 2]);\r
1434// PrintAndLog("data[%02d]:%s", blockNum, sprint_hex(buf8, 16));\r
1435 }\r
1436 if (mfEmlSetMem(buf8, blockNum, 1)) {\r
1437 PrintAndLog("Cant set emul block: %3d", blockNum);\r
1438 return 3;\r
1439 }\r
1440 blockNum++;\r
1441 \r
1442 if (blockNum >= 32*4 + 8*16) break;\r
1443 }\r
1444 fclose(f);\r
1445 \r
1446 if ((blockNum != 16*4) && (blockNum != 32*4 + 8*16)) {\r
1447 PrintAndLog("File content error. There must be 64 or 256 blocks.");\r
1448 return 4;\r
1449 }\r
1450 PrintAndLog("Loaded %d blocks from file: %s", blockNum, filename);\r
1451 return 0;\r
1452}\r
1453\r
1454\r
1455int CmdHF14AMfESave(const char *Cmd)\r
1456{\r
1457 FILE * f;\r
1458 char filename[20];\r
1459 char * fnameptr = filename;\r
1460 uint8_t buf[64];\r
1461 int i, j, len;\r
1462 \r
1463 memset(filename, 0, sizeof(filename));\r
1464 memset(buf, 0, sizeof(buf));\r
1465\r
1466 if (param_getchar(Cmd, 0) == 'h') {\r
1467 PrintAndLog("It saves emul dump into the file `filename.eml` or `cardID.eml`");\r
1468 PrintAndLog("Usage: hf mf esave [file name w/o `.eml`]");\r
1469 PrintAndLog(" sample: hf mf esave ");\r
1470 PrintAndLog(" hf mf esave filename");\r
1471 return 0;\r
1472 } \r
1473\r
1474 len = strlen(Cmd);\r
1475 if (len > 14) len = 14;\r
1476 \r
1477 if (len < 1) {\r
1478 // get filename\r
1479 if (mfEmlGetMem(buf, 0, 1)) {\r
1480 PrintAndLog("Cant get block: %d", 0);\r
1481 return 1;\r
1482 }\r
1483 for (j = 0; j < 7; j++, fnameptr += 2)\r
1484 sprintf(fnameptr, "%02x", buf[j]); \r
1485 } else {\r
1486 memcpy(filename, Cmd, len);\r
1487 fnameptr += len;\r
1488 }\r
1489\r
1490 sprintf(fnameptr, ".eml"); \r
1491 \r
1492 // open file\r
1493 f = fopen(filename, "w+");\r
1494\r
1495 // put hex\r
1496 for (i = 0; i < 32*4 + 8*16; i++) {\r
1497 if (mfEmlGetMem(buf, i, 1)) {\r
1498 PrintAndLog("Cant get block: %d", i);\r
1499 break;\r
1500 }\r
1501 for (j = 0; j < 16; j++)\r
1502 fprintf(f, "%02x", buf[j]); \r
1503 fprintf(f,"\n");\r
1504 }\r
1505 fclose(f);\r
1506 \r
1507 PrintAndLog("Saved to file: %s", filename);\r
1508 \r
1509 return 0;\r
1510}\r
1511\r
1512\r
1513int CmdHF14AMfECFill(const char *Cmd)\r
1514{\r
1515 uint8_t keyType = 0;\r
1516 uint8_t numSectors = 16;\r
1517 \r
1518 if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r
1519 PrintAndLog("Usage: hf mf ecfill <key A/B> [card memory]");\r
1520 PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r
1521 PrintAndLog("");\r
1522 PrintAndLog("samples: hf mf ecfill A");\r
1523 PrintAndLog(" hf mf ecfill A 4");\r
1524 PrintAndLog("Read card and transfer its data to emulator memory.");\r
1525 PrintAndLog("Keys must be laid in the emulator memory. \n");\r
1526 return 0;\r
1527 } \r
1528\r
1529 char ctmp = param_getchar(Cmd, 0);\r
1530 if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r
1531 PrintAndLog("Key type must be A or B");\r
1532 return 1;\r
1533 }\r
1534 if (ctmp != 'A' && ctmp != 'a') keyType = 1;\r
1535\r
1536 ctmp = param_getchar(Cmd, 1);\r
1537 switch (ctmp) {\r
1538 case '0' : numSectors = 5; break;\r
1539 case '1' : \r
1540 case '\0': numSectors = 16; break;\r
1541 case '2' : numSectors = 32; break;\r
1542 case '4' : numSectors = 40; break;\r
1543 default: numSectors = 16;\r
1544 } \r
1545\r
1546 printf("--params: numSectors: %d, keyType:%d", numSectors, keyType);\r
1547 UsbCommand c = {CMD_MIFARE_EML_CARDLOAD, {numSectors, keyType, 0}};\r
1548 SendCommand(&c);\r
1549 return 0;\r
1550}\r
1551\r
1552\r
1553int CmdHF14AMfEKeyPrn(const char *Cmd)\r
1554{\r
1555 int i;\r
1556 uint8_t data[16];\r
1557 uint64_t keyA, keyB;\r
1558 \r
1559 PrintAndLog("|---|----------------|----------------|");\r
1560 PrintAndLog("|sec|key A |key B |");\r
1561 PrintAndLog("|---|----------------|----------------|");\r
1562 for (i = 0; i < 40; i++) {\r
1563 if (mfEmlGetMem(data, FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1, 1)) {\r
1564 PrintAndLog("error get block %d", FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1);\r
1565 break;\r
1566 }\r
1567 keyA = bytes_to_num(data, 6);\r
1568 keyB = bytes_to_num(data + 10, 6);\r
1569 PrintAndLog("|%03d| %012"llx" | %012"llx" |", i, keyA, keyB);\r
1570 }\r
1571 PrintAndLog("|---|----------------|----------------|");\r
1572 \r
1573 return 0;\r
1574}\r
1575\r
1576\r
1577int CmdHF14AMfCSetUID(const char *Cmd)\r
1578{\r
1579 uint8_t wipeCard = 0;\r
1580 uint8_t uid[8];\r
1581 uint8_t oldUid[8];\r
1582 int res;\r
1583\r
1584 if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r
1585 PrintAndLog("Usage: hf mf csetuid <UID 8 hex symbols> <w>");\r
1586 PrintAndLog("sample: hf mf csetuid 01020304 w");\r
1587 PrintAndLog("Set UID for magic Chinese card (only works with!!!)");\r
1588 PrintAndLog("If you want wipe card then add 'w' into command line. \n");\r
1589 return 0;\r
1590 } \r
1591\r
1592 if (param_getchar(Cmd, 0) && param_gethex(Cmd, 0, uid, 8)) {\r
1593 PrintAndLog("UID must include 8 HEX symbols");\r
1594 return 1;\r
1595 }\r
1596\r
1597 char ctmp = param_getchar(Cmd, 1);\r
1598 if (ctmp == 'w' || ctmp == 'W') wipeCard = 1;\r
1599 \r
1600 PrintAndLog("--wipe card:%02x uid:%s", wipeCard, sprint_hex(uid, 4));\r
1601\r
1602 res = mfCSetUID(uid, oldUid, wipeCard);\r
1603 if (res) {\r
1604 PrintAndLog("Can't set UID. error=%d", res);\r
1605 return 1;\r
1606 }\r
1607 \r
1608 PrintAndLog("old UID:%s", sprint_hex(oldUid, 4));\r
1609 return 0;\r
1610}\r
1611\r
1612\r
1613int CmdHF14AMfCSetBlk(const char *Cmd)\r
1614{\r
1615 uint8_t uid[8];\r
1616 uint8_t memBlock[16];\r
1617 uint8_t blockNo = 0;\r
1618 int res;\r
1619 memset(memBlock, 0x00, sizeof(memBlock));\r
1620\r
1621 if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r
1622 PrintAndLog("Usage: hf mf csetblk <block number> <block data (32 hex symbols)>");\r
1623 PrintAndLog("sample: hf mf csetblk 1 01020304050607080910111213141516");\r
1624 PrintAndLog("Set block data for magic Chinese card (only works with!!!)");\r
1625 PrintAndLog("If you want wipe card then add 'w' into command line. \n");\r
1626 return 0;\r
1627 } \r
1628\r
1629 blockNo = param_get8(Cmd, 0);\r
1630\r
1631 if (param_gethex(Cmd, 1, memBlock, 32)) {\r
1632 PrintAndLog("block data must include 32 HEX symbols");\r
1633 return 1;\r
1634 }\r
1635\r
1636 PrintAndLog("--block number:%2d data:%s", blockNo, sprint_hex(memBlock, 16));\r
1637\r
1638 res = mfCSetBlock(blockNo, memBlock, uid, 0, CSETBLOCK_SINGLE_OPER);\r
1639 if (res) {\r
1640 PrintAndLog("Can't write block. error=%d", res);\r
1641 return 1;\r
1642 }\r
1643 \r
1644 PrintAndLog("UID:%s", sprint_hex(uid, 4));\r
1645 return 0;\r
1646}\r
1647\r
1648\r
1649int CmdHF14AMfCLoad(const char *Cmd)\r
1650{\r
1651 FILE * f;\r
1652 char filename[20];\r
1653 char * fnameptr = filename;\r
1654 char buf[64];\r
1655 uint8_t buf8[64];\r
1656 uint8_t fillFromEmulator = 0;\r
1657 int i, len, blockNum, flags;\r
1658 \r
1659 memset(filename, 0, sizeof(filename));\r
1660 memset(buf, 0, sizeof(buf));\r
1661\r
1662 if (param_getchar(Cmd, 0) == 'h' || param_getchar(Cmd, 0)== 0x00) {\r
1663 PrintAndLog("It loads magic Chinese card (only works with!!!) from the file `filename.eml`");\r
1664 PrintAndLog("or from emulator memory (option `e`)");\r
1665 PrintAndLog("Usage: hf mf cload <file name w/o `.eml`>");\r
1666 PrintAndLog(" or: hf mf cload e ");\r
1667 PrintAndLog(" sample: hf mf cload filename");\r
1668 return 0;\r
1669 } \r
1670\r
1671 char ctmp = param_getchar(Cmd, 0);\r
1672 if (ctmp == 'e' || ctmp == 'E') fillFromEmulator = 1;\r
1673 \r
1674 if (fillFromEmulator) {\r
1675 flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r
1676 for (blockNum = 0; blockNum < 16 * 4; blockNum += 1) {\r
1677 if (mfEmlGetMem(buf8, blockNum, 1)) {\r
1678 PrintAndLog("Cant get block: %d", blockNum);\r
1679 return 2;\r
1680 }\r
1681 \r
1682 if (blockNum == 2) flags = 0;\r
1683 if (blockNum == 16 * 4 - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r
1684\r
1685 if (mfCSetBlock(blockNum, buf8, NULL, 0, flags)) {\r
1686 PrintAndLog("Cant set magic card block: %d", blockNum);\r
1687 return 3;\r
1688 }\r
1689 }\r
1690 return 0;\r
1691 } else {\r
1692 len = strlen(Cmd);\r
1693 if (len > 14) len = 14;\r
1694\r
1695 memcpy(filename, Cmd, len);\r
1696 fnameptr += len;\r
1697\r
1698 sprintf(fnameptr, ".eml"); \r
1699 \r
1700 // open file\r
1701 f = fopen(filename, "r");\r
1702 if (f == NULL) {\r
1703 PrintAndLog("File not found or locked.");\r
1704 return 1;\r
1705 }\r
1706 \r
1707 blockNum = 0;\r
1708 flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r
1709 while(!feof(f)){\r
1710 memset(buf, 0, sizeof(buf));\r
1711 if (fgets(buf, sizeof(buf), f) == NULL) {\r
1712 PrintAndLog("File reading error.");\r
1713 return 2;\r
1714 }\r
1715\r
1716 if (strlen(buf) < 32){\r
1717 if(strlen(buf) && feof(f))\r
1718 break;\r
1719 PrintAndLog("File content error. Block data must include 32 HEX symbols");\r
1720 return 2;\r
1721 }\r
1722 for (i = 0; i < 32; i += 2)\r
1723 sscanf(&buf[i], "%02x", (unsigned int *)&buf8[i / 2]);\r
1724\r
1725 if (blockNum == 2) flags = 0;\r
1726 if (blockNum == 16 * 4 - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r
1727\r
1728 if (mfCSetBlock(blockNum, buf8, NULL, 0, flags)) {\r
1729 PrintAndLog("Can't set magic card block: %d", blockNum);\r
1730 return 3;\r
1731 }\r
1732 blockNum++;\r
1733 \r
1734 if (blockNum >= 16 * 4) break; // magic card type - mifare 1K\r
1735 }\r
1736 fclose(f);\r
1737 \r
1738 if (blockNum != 16 * 4){\r
1739 PrintAndLog("File content error. There must be 64 blocks");\r
1740 return 4;\r
1741 }\r
1742 PrintAndLog("Loaded from file: %s", filename);\r
1743 return 0;\r
1744 }\r
1745}\r
1746\r
1747\r
1748int CmdHF14AMfCGetBlk(const char *Cmd) {\r
1749 uint8_t memBlock[16];\r
1750 uint8_t blockNo = 0;\r
1751 int res;\r
1752 memset(memBlock, 0x00, sizeof(memBlock));\r
1753\r
1754 if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r
1755 PrintAndLog("Usage: hf mf cgetblk <block number>");\r
1756 PrintAndLog("sample: hf mf cgetblk 1");\r
1757 PrintAndLog("Get block data from magic Chinese card (only works with!!!)\n");\r
1758 return 0;\r
1759 } \r
1760\r
1761 blockNo = param_get8(Cmd, 0);\r
1762\r
1763 PrintAndLog("--block number:%2d ", blockNo);\r
1764\r
1765 res = mfCGetBlock(blockNo, memBlock, CSETBLOCK_SINGLE_OPER);\r
1766 if (res) {\r
1767 PrintAndLog("Can't read block. error=%d", res);\r
1768 return 1;\r
1769 }\r
1770 \r
1771 PrintAndLog("block data:%s", sprint_hex(memBlock, 16));\r
1772 return 0;\r
1773}\r
1774\r
1775\r
1776int CmdHF14AMfCGetSc(const char *Cmd) {\r
1777 uint8_t memBlock[16];\r
1778 uint8_t sectorNo = 0;\r
1779 int i, res, flags;\r
1780 memset(memBlock, 0x00, sizeof(memBlock));\r
1781\r
1782 if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r
1783 PrintAndLog("Usage: hf mf cgetsc <sector number>");\r
1784 PrintAndLog("sample: hf mf cgetsc 0");\r
1785 PrintAndLog("Get sector data from magic Chinese card (only works with!!!)\n");\r
1786 return 0;\r
1787 } \r
1788\r
1789 sectorNo = param_get8(Cmd, 0);\r
1790 if (sectorNo > 15) {\r
1791 PrintAndLog("Sector number must be in [0..15] as in MIFARE classic.");\r
1792 return 1;\r
1793 }\r
1794\r
1795 PrintAndLog("--sector number:%d ", sectorNo);\r
1796\r
1797 flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r
1798 for (i = 0; i < 4; i++) {\r
1799 if (i == 1) flags = 0;\r
1800 if (i == 3) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r
1801\r
1802 res = mfCGetBlock(sectorNo * 4 + i, memBlock, flags);\r
1803 if (res) {\r
1804 PrintAndLog("Can't read block. %d error=%d", sectorNo * 4 + i, res);\r
1805 return 1;\r
1806 }\r
1807 \r
1808 PrintAndLog("block %3d data:%s", sectorNo * 4 + i, sprint_hex(memBlock, 16));\r
1809 }\r
1810 return 0;\r
1811}\r
1812\r
1813\r
1814int CmdHF14AMfCSave(const char *Cmd) {\r
1815\r
1816 FILE * f;\r
1817 char filename[20];\r
1818 char * fnameptr = filename;\r
1819 uint8_t fillFromEmulator = 0;\r
1820 uint8_t buf[64];\r
1821 int i, j, len, flags;\r
1822 \r
1823 memset(filename, 0, sizeof(filename));\r
1824 memset(buf, 0, sizeof(buf));\r
1825\r
1826 if (param_getchar(Cmd, 0) == 'h') {\r
1827 PrintAndLog("It saves `magic Chinese` card dump into the file `filename.eml` or `cardID.eml`");\r
1828 PrintAndLog("or into emulator memory (option `e`)");\r
1829 PrintAndLog("Usage: hf mf esave [file name w/o `.eml`][e]");\r
1830 PrintAndLog(" sample: hf mf esave ");\r
1831 PrintAndLog(" hf mf esave filename");\r
1832 PrintAndLog(" hf mf esave e \n");\r
1833 return 0;\r
1834 } \r
1835\r
1836 char ctmp = param_getchar(Cmd, 0);\r
1837 if (ctmp == 'e' || ctmp == 'E') fillFromEmulator = 1;\r
1838\r
1839 if (fillFromEmulator) {\r
1840 // put into emulator\r
1841 flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r
1842 for (i = 0; i < 16 * 4; i++) {\r
1843 if (i == 1) flags = 0;\r
1844 if (i == 16 * 4 - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r
1845 \r
1846 if (mfCGetBlock(i, buf, flags)) {\r
1847 PrintAndLog("Cant get block: %d", i);\r
1848 break;\r
1849 }\r
1850 \r
1851 if (mfEmlSetMem(buf, i, 1)) {\r
1852 PrintAndLog("Cant set emul block: %d", i);\r
1853 return 3;\r
1854 }\r
1855 }\r
1856 return 0;\r
1857 } else {\r
1858 len = strlen(Cmd);\r
1859 if (len > 14) len = 14;\r
1860 \r
1861 if (len < 1) {\r
1862 // get filename\r
1863 if (mfCGetBlock(0, buf, CSETBLOCK_SINGLE_OPER)) {\r
1864 PrintAndLog("Cant get block: %d", 0);\r
1865 return 1;\r
1866 }\r
1867 for (j = 0; j < 7; j++, fnameptr += 2)\r
1868 sprintf(fnameptr, "%02x", buf[j]); \r
1869 } else {\r
1870 memcpy(filename, Cmd, len);\r
1871 fnameptr += len;\r
1872 }\r
1873\r
1874 sprintf(fnameptr, ".eml"); \r
1875 \r
1876 // open file\r
1877 f = fopen(filename, "w+");\r
1878\r
1879 // put hex\r
1880 flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r
1881 for (i = 0; i < 16 * 4; i++) {\r
1882 if (i == 1) flags = 0;\r
1883 if (i == 16 * 4 - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r
1884 \r
1885 if (mfCGetBlock(i, buf, flags)) {\r
1886 PrintAndLog("Cant get block: %d", i);\r
1887 break;\r
1888 }\r
1889 for (j = 0; j < 16; j++)\r
1890 fprintf(f, "%02x", buf[j]); \r
1891 fprintf(f,"\n");\r
1892 }\r
1893 fclose(f);\r
1894 \r
1895 PrintAndLog("Saved to file: %s", filename);\r
1896 \r
1897 return 0;\r
1898 }\r
1899}\r
1900\r
1901\r
1902int CmdHF14AMfSniff(const char *Cmd){\r
1903 // params\r
1904 bool wantLogToFile = 0;\r
1905 bool wantDecrypt = 0;\r
1906 //bool wantSaveToEml = 0; TODO\r
1907 bool wantSaveToEmlFile = 0;\r
1908\r
1909 //var \r
1910 int res = 0;\r
1911 int len = 0;\r
1912 int blockLen = 0;\r
1913 int num = 0;\r
1914 int pckNum = 0;\r
1915 uint8_t uid[7];\r
1916 uint8_t uid_len;\r
1917 uint8_t atqa[2];\r
1918 uint8_t sak;\r
1919 bool isTag;\r
1920 uint32_t parity;\r
1921 uint8_t buf[3000];\r
1922 uint8_t * bufPtr = buf;\r
1923 memset(buf, 0x00, 3000);\r
1924 \r
1925 if (param_getchar(Cmd, 0) == 'h') {\r
1926 PrintAndLog("It continuously gets data from the field and saves it to: log, emulator, emulator file.");\r
1927 PrintAndLog("You can specify:");\r
1928 PrintAndLog(" l - save encrypted sequence to logfile `uid.log`");\r
1929 PrintAndLog(" d - decrypt sequence and put it to log file `uid.log`");\r
1930 PrintAndLog(" n/a e - decrypt sequence, collect read and write commands and save the result of the sequence to emulator memory");\r
1931 PrintAndLog(" r - decrypt sequence, collect read and write commands and save the result of the sequence to emulator dump file `uid.eml`");\r
1932 PrintAndLog("Usage: hf mf sniff [l][d][e][r]");\r
1933 PrintAndLog(" sample: hf mf sniff l d e");\r
1934 return 0;\r
1935 } \r
1936 \r
1937 for (int i = 0; i < 4; i++) {\r
1938 char ctmp = param_getchar(Cmd, i);\r
1939 if (ctmp == 'l' || ctmp == 'L') wantLogToFile = true;\r
1940 if (ctmp == 'd' || ctmp == 'D') wantDecrypt = true;\r
1941 //if (ctmp == 'e' || ctmp == 'E') wantSaveToEml = true; TODO\r
1942 if (ctmp == 'f' || ctmp == 'F') wantSaveToEmlFile = true;\r
1943 }\r
1944 \r
1945 printf("-------------------------------------------------------------------------\n");\r
1946 printf("Executing command. \n");\r
1947 printf("Press the key on the proxmark3 device to abort both proxmark3 and client.\n");\r
1948 printf("Press the key on pc keyboard to abort the client.\n");\r
1949 printf("-------------------------------------------------------------------------\n");\r
1950\r
1951 UsbCommand c = {CMD_MIFARE_SNIFFER, {0, 0, 0}};\r
1952 clearCommandBuffer();\r
1953 SendCommand(&c);\r
1954\r
1955 // wait cycle\r
1956 while (true) {\r
1957 printf(".");\r
1958 fflush(stdout);\r
1959 if (ukbhit()) {\r
1960 getchar();\r
1961 printf("\naborted via keyboard!\n");\r
1962 break;\r
1963 }\r
1964 \r
1965 UsbCommand resp;\r
1966 if (WaitForResponseTimeout(CMD_ACK,&resp,2000)) {\r
1967 res = resp.arg[0] & 0xff;\r
1968 len = resp.arg[1];\r
1969 num = resp.arg[2];\r
1970 \r
1971 if (res == 0) return 0;\r
1972 if (res == 1) {\r
1973 if (num ==0) {\r
1974 bufPtr = buf;\r
1975 memset(buf, 0x00, 3000);\r
1976 }\r
1977 memcpy(bufPtr, resp.d.asBytes, len);\r
1978 bufPtr += len;\r
1979 pckNum++;\r
1980 }\r
1981 if (res == 2) {\r
1982 blockLen = bufPtr - buf;\r
1983 bufPtr = buf;\r
1984 printf(">\n");\r
1985 PrintAndLog("received trace len: %d packages: %d", blockLen, pckNum);\r
1986 num = 0;\r
1987 while (bufPtr - buf + 9 < blockLen) {\r
1988 isTag = bufPtr[3] & 0x80 ? true:false;\r
1989 bufPtr += 4;\r
1990 parity = *((uint32_t *)(bufPtr));\r
1991 bufPtr += 4;\r
1992 len = bufPtr[0];\r
1993 bufPtr++;\r
1994 if ((len == 14) && (bufPtr[0] == 0xff) && (bufPtr[1] == 0xff)) {\r
1995 memcpy(uid, bufPtr + 2, 7);\r
1996 memcpy(atqa, bufPtr + 2 + 7, 2);\r
1997 uid_len = (atqa[0] & 0xC0) == 0x40 ? 7 : 4;\r
1998 sak = bufPtr[11];\r
1999 \r
2000 PrintAndLog("tag select uid:%s atqa:0x%02x%02x sak:0x%02x", \r
2001 sprint_hex(uid + (7 - uid_len), uid_len),\r
2002 atqa[1], \r
2003 atqa[0], \r
2004 sak);\r
2005 if (wantLogToFile || wantDecrypt) {\r
2006 FillFileNameByUID(logHexFileName, uid + (7 - uid_len), ".log", uid_len);\r
2007 AddLogCurrentDT(logHexFileName);\r
2008 } \r
2009 if (wantDecrypt) mfTraceInit(uid, atqa, sak, wantSaveToEmlFile);\r
2010 } else {\r
2011 PrintAndLog("%s(%d):%s", isTag ? "TAG":"RDR", num, sprint_hex(bufPtr, len));\r
2012 if (wantLogToFile) AddLogHex(logHexFileName, isTag ? "TAG: ":"RDR: ", bufPtr, len);\r
2013 if (wantDecrypt) mfTraceDecode(bufPtr, len, parity, wantSaveToEmlFile);\r
2014 }\r
2015 bufPtr += len;\r
2016 num++;\r
2017 }\r
2018 }\r
2019 } // resp not NILL\r
2020 } // while (true)\r
2021 \r
2022 return 0;\r
2023}\r
2024\r
2025static command_t CommandTable[] =\r
2026{\r
2027 {"help", CmdHelp, 1, "This help"},\r
2028 {"dbg", CmdHF14AMfDbg, 0, "Set default debug mode"},\r
2029 {"rdbl", CmdHF14AMfRdBl, 0, "Read MIFARE classic block"},\r
2030 {"urdbl", CmdHF14AMfURdBl, 0, "Read MIFARE Ultralight block"},\r
2031 {"urdcard", CmdHF14AMfURdCard, 0,"Read MIFARE Ultralight Card"},\r
2032 {"uwrbl", CmdHF14AMfUWrBl, 0,"Write MIFARE Ultralight block"},\r
2033 {"rdsc", CmdHF14AMfRdSc, 0, "Read MIFARE classic sector"},\r
2034 {"dump", CmdHF14AMfDump, 0, "Dump MIFARE classic tag to binary file"},\r
2035 {"restore", CmdHF14AMfRestore, 0, "Restore MIFARE classic binary file to BLANK tag"},\r
2036 {"wrbl", CmdHF14AMfWrBl, 0, "Write MIFARE classic block"},\r
2037 {"chk", CmdHF14AMfChk, 0, "Test block keys"},\r
2038 {"mifare", CmdHF14AMifare, 0, "Read parity error messages."},\r
2039 {"nested", CmdHF14AMfNested, 0, "Test nested authentication"},\r
2040 {"sniff", CmdHF14AMfSniff, 0, "Sniff card-reader communication"},\r
2041 {"sim", CmdHF14AMf1kSim, 0, "Simulate MIFARE card"},\r
2042 {"eclr", CmdHF14AMfEClear, 0, "Clear simulator memory block"},\r
2043 {"eget", CmdHF14AMfEGet, 0, "Get simulator memory block"},\r
2044 {"eset", CmdHF14AMfESet, 0, "Set simulator memory block"},\r
2045 {"eload", CmdHF14AMfELoad, 0, "Load from file emul dump"},\r
2046 {"esave", CmdHF14AMfESave, 0, "Save to file emul dump"},\r
2047 {"ecfill", CmdHF14AMfECFill, 0, "Fill simulator memory with help of keys from simulator"},\r
2048 {"ekeyprn", CmdHF14AMfEKeyPrn, 0, "Print keys from simulator memory"},\r
2049 {"csetuid", CmdHF14AMfCSetUID, 0, "Set UID for magic Chinese card"},\r
2050 {"csetblk", CmdHF14AMfCSetBlk, 0, "Write block into magic Chinese card"},\r
2051 {"cgetblk", CmdHF14AMfCGetBlk, 0, "Read block from magic Chinese card"},\r
2052 {"cgetsc", CmdHF14AMfCGetSc, 0, "Read sector from magic Chinese card"},\r
2053 {"cload", CmdHF14AMfCLoad, 0, "Load dump into magic Chinese card"},\r
2054 {"csave", CmdHF14AMfCSave, 0, "Save dump from magic Chinese card into file or emulator"},\r
2055 {NULL, NULL, 0, NULL}\r
2056};\r
2057\r
2058int CmdHFMF(const char *Cmd)\r
2059{\r
2060 // flush\r
2061 WaitForResponseTimeout(CMD_ACK,NULL,100);\r
2062\r
2063 CmdsParse(CommandTable, Cmd);\r
2064 return 0;\r
2065}\r
2066\r
2067int CmdHelp(const char *Cmd)\r
2068{\r
2069 CmdsHelp(CommandTable);\r
2070 return 0;\r
2071}\r
Impressum, Datenschutz