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