]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhfmf.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2011,2012 Merlok
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
7 //-----------------------------------------------------------------------------
8 // High frequency MIFARE commands
9 //-----------------------------------------------------------------------------
10 #include "../include/mifare.h"
13 static int CmdHelp(const char *Cmd
);
15 int CmdHF14AMifare(const char *Cmd
)
18 uint32_t nt
= 0, nr
= 0;
19 uint64_t par_list
= 0, ks_list
= 0, r_key
= 0;
21 uint8_t keyBlock
[8] = {0};
23 UsbCommand c
= {CMD_READER_MIFARE
, {true, 0, 0}};
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");
37 while (ukbhit()) getchar();
46 printf("\naborted via keyboard!\n");
51 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1000)) {
52 isOK
= resp
.arg
[0] & 0xff;
53 uid
= (uint32_t)bytes_to_num(resp
.d
.asBytes
+ 0, 4);
54 nt
= (uint32_t)bytes_to_num(resp
.d
.asBytes
+ 4, 4);
55 par_list
= bytes_to_num(resp
.d
.asBytes
+ 8, 8);
56 ks_list
= bytes_to_num(resp
.d
.asBytes
+ 16, 8);
57 nr
= bytes_to_num(resp
.d
.asBytes
+ 24, 4);
59 if (!isOK
) PrintAndLog("Proxmark can't get statistic info. Execution aborted.\n");
67 if (isOK
!= 1) return 1;
69 // execute original function from util nonce2key
70 if (nonce2key(uid
, nt
, nr
, par_list
, ks_list
, &r_key
))
73 PrintAndLog("Key not found (lfsr_common_prefix list is null). Nt=%08x", nt
);
75 printf("------------------------------------------------------------------\n");
76 PrintAndLog("Key found:%012"llx
" \n", r_key
);
78 num_to_bytes(r_key
, 6, keyBlock
);
79 isOK
= mfCheckKeys(0, 0, 1, keyBlock
, &r_key
);
82 PrintAndLog("Found valid key:%012"llx
, r_key
);
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...");
94 int CmdHF14AMfWrBl(const char *Cmd
)
98 uint8_t key
[6] = {0, 0, 0, 0, 0, 0};
99 uint8_t bldata
[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
104 PrintAndLog("Usage: hf mf wrbl <block number> <key A/B> <key (12 hex symbols)> <block data (32 hex symbols)>");
105 PrintAndLog(" sample: hf mf wrbl 0 A FFFFFFFFFFFF 000102030405060708090A0B0C0D0E0F");
109 blockNo
= param_get8(Cmd
, 0);
110 cmdp
= param_getchar(Cmd
, 1);
112 PrintAndLog("Key type must be A or B");
115 if (cmdp
!= 'A' && cmdp
!= 'a') keyType
= 1;
116 if (param_gethex(Cmd
, 2, key
, 12)) {
117 PrintAndLog("Key must include 12 HEX symbols");
120 if (param_gethex(Cmd
, 3, bldata
, 32)) {
121 PrintAndLog("Block data must include 32 HEX symbols");
124 PrintAndLog("--block no:%d, key type:%c, key:%s", blockNo
, keyType
?'B':'A', sprint_hex(key
, 6));
125 PrintAndLog("--data: %s", sprint_hex(bldata
, 16));
127 UsbCommand c
= {CMD_MIFARE_WRITEBL
, {blockNo
, keyType
, 0}};
128 memcpy(c
.d
.asBytes
, key
, 6);
129 memcpy(c
.d
.asBytes
+ 10, bldata
, 16);
133 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
134 uint8_t isOK
= resp
.arg
[0] & 0xff;
135 PrintAndLog("isOk:%02x", isOK
);
137 PrintAndLog("Command execute timeout");
143 /* dublett finns i CMDHFMFU.C
144 int CmdHF14AMfUWrBl(const char *Cmd)
148 uint8_t bldata[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
152 PrintAndLog("Usage: hf mf uwrbl <block number> <block data (8 hex symbols)> <w>");
153 PrintAndLog(" sample: hf mf uwrbl 0 01020304");
157 blockNo = param_get8(Cmd, 0);
158 if (param_gethex(Cmd, 1, bldata, 8)) {
159 PrintAndLog("Block data must include 8 HEX symbols");
163 if (strchr(Cmd,'w') != 0) {
170 PrintAndLog("Access Denied");
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);
178 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
179 uint8_t isOK = resp.arg[0] & 0xff;
180 PrintAndLog("isOk:%02x", isOK);
182 PrintAndLog("Command execute timeout");
188 PrintAndLog("Access Denied");
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);
196 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
197 uint8_t isOK = resp.arg[0] & 0xff;
198 PrintAndLog("isOk:%02x", isOK);
200 PrintAndLog("Command execute timeout");
206 PrintAndLog("Access Denied");
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);
214 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
215 uint8_t isOK = resp.arg[0] & 0xff;
216 PrintAndLog("isOk:%02x", isOK);
218 PrintAndLog("Command execute timeout");
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);
229 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
230 uint8_t isOK = resp.arg[0] & 0xff;
231 PrintAndLog("isOk:%02x", isOK);
233 PrintAndLog("Command execute timeout");
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);
243 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
244 uint8_t isOK = resp.arg[0] & 0xff;
245 PrintAndLog("isOk:%02x", isOK);
247 PrintAndLog("Command execute timeout");
254 int CmdHF14AMfRdBl(const char *Cmd
)
258 uint8_t key
[6] = {0, 0, 0, 0, 0, 0};
264 PrintAndLog("Usage: hf mf rdbl <block number> <key A/B> <key (12 hex symbols)>");
265 PrintAndLog(" sample: hf mf rdbl 0 A FFFFFFFFFFFF ");
269 blockNo
= param_get8(Cmd
, 0);
270 cmdp
= param_getchar(Cmd
, 1);
272 PrintAndLog("Key type must be A or B");
275 if (cmdp
!= 'A' && cmdp
!= 'a') keyType
= 1;
276 if (param_gethex(Cmd
, 2, key
, 12)) {
277 PrintAndLog("Key must include 12 HEX symbols");
280 PrintAndLog("--block no:%d, key type:%c, key:%s ", blockNo
, keyType
?'B':'A', sprint_hex(key
, 6));
282 UsbCommand c
= {CMD_MIFARE_READBL
, {blockNo
, keyType
, 0}};
283 memcpy(c
.d
.asBytes
, key
, 6);
287 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
288 uint8_t isOK
= resp
.arg
[0] & 0xff;
289 uint8_t *data
= resp
.d
.asBytes
;
292 PrintAndLog("isOk:%02x data:%s", isOK
, sprint_hex(data
, 16));
294 PrintAndLog("isOk:%02x", isOK
);
296 PrintAndLog("Command execute timeout");
302 /* dublett finns i CMDHFMFU.C
303 int CmdHF14AMfURdBl(const char *Cmd)
308 PrintAndLog("Usage: hf mf urdbl <block number>");
309 PrintAndLog(" sample: hf mf urdbl 0");
313 blockNo = param_get8(Cmd, 0);
314 PrintAndLog("--block no:%d", blockNo);
316 UsbCommand c = {CMD_MIFAREU_READBL, {blockNo}};
320 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
321 uint8_t isOK = resp.arg[0] & 0xff;
322 uint8_t *data = resp.d.asBytes;
325 PrintAndLog("isOk:%02x data:%s", isOK, sprint_hex(data, 4));
327 PrintAndLog("isOk:%02x", isOK);
329 PrintAndLog("Command execute timeout");
336 /* dublett finns i CMDHFMFU.C
337 int CmdHF14AMfURdCard(const char *Cmd)
340 uint8_t sectorNo = 0;
341 uint8_t *lockbytes_t=NULL;
342 uint8_t lockbytes[2]={0,0};
343 bool bit[16]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
346 uint8_t * data = NULL;
349 PrintAndLog("Sector number must be less than 16");
352 PrintAndLog("Attempting to Read Ultralight... ");
354 UsbCommand c = {CMD_MIFAREU_READCARD, {sectorNo}};
358 if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
359 isOK = resp.arg[0] & 0xff;
360 data = resp.d.asBytes;
362 PrintAndLog("isOk:%02x", isOK);
364 for (i = 0; i < 16; i++) {
368 lockbytes_t=data+(i*4);
369 lockbytes[0]=lockbytes_t[2];
370 lockbytes[1]=lockbytes_t[3];
371 for(int j=0; j<16; j++){
372 bit[j]=lockbytes[j/8] & ( 1 <<(7-j%8));
374 //PrintAndLog("LB %02x %02x", lockbytes[0],lockbytes[1]);
375 //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]);
376 PrintAndLog("Block %3d:%s ", i,sprint_hex(data + i * 4, 4));
379 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[4]);
382 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[3]);
385 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[2]);
388 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[1]);
391 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[0]);
394 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[15]);
397 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[14]);
400 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[13]);
403 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[12]);
406 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[11]);
409 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[10]);
412 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[9]);
415 PrintAndLog("Block %3d:%s [%d]", i,sprint_hex(data + i * 4, 4),bit[8]);
418 PrintAndLog("Block %3d:%s ", i,sprint_hex(data + i * 4, 4));
423 PrintAndLog("Command execute timeout");
429 int CmdHF14AMfRdSc(const char *Cmd
)
432 uint8_t sectorNo
= 0;
434 uint8_t key
[6] = {0, 0, 0, 0, 0, 0};
436 uint8_t *data
= NULL
;
440 PrintAndLog("Usage: hf mf rdsc <sector number> <key A/B> <key (12 hex symbols)>");
441 PrintAndLog(" sample: hf mf rdsc 0 A FFFFFFFFFFFF ");
445 sectorNo
= param_get8(Cmd
, 0);
447 PrintAndLog("Sector number must be less than 40");
450 cmdp
= param_getchar(Cmd
, 1);
451 if (cmdp
!= 'a' && cmdp
!= 'A' && cmdp
!= 'b' && cmdp
!= 'B') {
452 PrintAndLog("Key type must be A or B");
455 if (cmdp
!= 'A' && cmdp
!= 'a') keyType
= 1;
456 if (param_gethex(Cmd
, 2, key
, 12)) {
457 PrintAndLog("Key must include 12 HEX symbols");
460 PrintAndLog("--sector no:%d key type:%c key:%s ", sectorNo
, keyType
?'B':'A', sprint_hex(key
, 6));
462 UsbCommand c
= {CMD_MIFARE_READSC
, {sectorNo
, keyType
, 0}};
463 memcpy(c
.d
.asBytes
, key
, 6);
468 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
469 isOK
= resp
.arg
[0] & 0xff;
470 data
= resp
.d
.asBytes
;
472 PrintAndLog("isOk:%02x", isOK
);
474 for (i
= 0; i
< (sectorNo
<32?3:15); i
++) {
475 PrintAndLog("data : %s", sprint_hex(data
+ i
* 16, 16));
477 PrintAndLog("trailer: %s", sprint_hex(data
+ (sectorNo
<32?3:15) * 16, 16));
480 PrintAndLog("Command execute timeout");
487 uint8_t FirstBlockOfSector(uint8_t sectorNo
)
492 return 32 * 4 + (sectorNo
- 32) * 16;
497 uint8_t NumBlocksPerSector(uint8_t sectorNo
)
507 int CmdHF14AMfDump(const char *Cmd
)
509 uint8_t sectorNo
, blockNo
;
513 uint8_t rights
[40][4];
514 uint8_t carddata
[256][16];
515 uint8_t numSectors
= 16;
522 int size
= GetCardSize();
523 char cmdp
= param_getchar(Cmd
, 0);
528 cmdp
= (char)(48+size
);
530 PrintAndLog("Got %d",cmdp
);
533 case '0' : numSectors
= 5; break;
535 case '\0': numSectors
= 16; break;
536 case '2' : numSectors
= 32; break;
537 case '4' : numSectors
= 40; break;
538 default: numSectors
= 16;
541 if (strlen(Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H') {
542 PrintAndLog("Usage: hf mf dump [card memory]");
543 PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");
545 PrintAndLog("Samples: hf mf dump");
546 PrintAndLog(" hf mf dump 4");
550 if ((fin
= fopen("dumpkeys.bin","rb")) == NULL
) {
551 PrintAndLog("Could not find file dumpkeys.bin");
555 // Read keys A from file
556 for (sectorNo
=0; sectorNo
<numSectors
; sectorNo
++) {
557 if (fread( keyA
[sectorNo
], 1, 6, fin
) == 0) {
558 PrintAndLog("File reading error.");
563 // Read keys B from file
564 for (sectorNo
=0; sectorNo
<numSectors
; sectorNo
++) {
565 if (fread( keyB
[sectorNo
], 1, 6, fin
) == 0) {
566 PrintAndLog("File reading error.");
571 PrintAndLog("|-----------------------------------------|");
572 PrintAndLog("|------ Reading sector access bits...-----|");
573 PrintAndLog("|-----------------------------------------|");
575 for (sectorNo
= 0; sectorNo
< numSectors
; sectorNo
++) {
576 UsbCommand c
= {CMD_MIFARE_READBL
, {FirstBlockOfSector(sectorNo
) + NumBlocksPerSector(sectorNo
) - 1, 0, 0}};
577 memcpy(c
.d
.asBytes
, keyA
[sectorNo
], 6);
580 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
581 uint8_t isOK
= resp
.arg
[0] & 0xff;
582 uint8_t *data
= resp
.d
.asBytes
;
584 rights
[sectorNo
][0] = ((data
[7] & 0x10)>>2) | ((data
[8] & 0x1)<<1) | ((data
[8] & 0x10)>>4); // C1C2C3 for data area 0
585 rights
[sectorNo
][1] = ((data
[7] & 0x20)>>3) | ((data
[8] & 0x2)<<0) | ((data
[8] & 0x20)>>5); // C1C2C3 for data area 1
586 rights
[sectorNo
][2] = ((data
[7] & 0x40)>>4) | ((data
[8] & 0x4)>>1) | ((data
[8] & 0x40)>>6); // C1C2C3 for data area 2
587 rights
[sectorNo
][3] = ((data
[7] & 0x80)>>5) | ((data
[8] & 0x8)>>2) | ((data
[8] & 0x80)>>7); // C1C2C3 for sector trailer
589 PrintAndLog("Could not get access rights for sector %2d. Trying with defaults...", sectorNo
);
590 rights
[sectorNo
][0] = rights
[sectorNo
][1] = rights
[sectorNo
][2] = 0x00;
591 rights
[sectorNo
][3] = 0x01;
594 PrintAndLog("Command execute timeout when trying to read access rights for sector %2d. Trying with defaults...", sectorNo
);
595 rights
[sectorNo
][0] = rights
[sectorNo
][1] = rights
[sectorNo
][2] = 0x00;
596 rights
[sectorNo
][3] = 0x01;
600 PrintAndLog("|-----------------------------------------|");
601 PrintAndLog("|----- Dumping all blocks to file... -----|");
602 PrintAndLog("|-----------------------------------------|");
605 for (sectorNo
= 0; isOK
&& sectorNo
< numSectors
; sectorNo
++) {
606 for (blockNo
= 0; isOK
&& blockNo
< NumBlocksPerSector(sectorNo
); blockNo
++) {
607 bool received
= false;
609 if (blockNo
== NumBlocksPerSector(sectorNo
) - 1) { // sector trailer. At least the Access Conditions can always be read with key A.
610 UsbCommand c
= {CMD_MIFARE_READBL
, {FirstBlockOfSector(sectorNo
) + blockNo
, 0, 0}};
611 memcpy(c
.d
.asBytes
, keyA
[sectorNo
], 6);
613 received
= WaitForResponseTimeout(CMD_ACK
,&resp
,1500);
614 } else { // data block. Check if it can be read with key A or key B
615 uint8_t data_area
= sectorNo
<32?blockNo
:blockNo
/5;
616 if ((rights
[sectorNo
][data_area
] == 0x03) || (rights
[sectorNo
][data_area
] == 0x05)) { // only key B would work
617 UsbCommand c
= {CMD_MIFARE_READBL
, {FirstBlockOfSector(sectorNo
) + blockNo
, 1, 0}};
618 memcpy(c
.d
.asBytes
, keyB
[sectorNo
], 6);
620 received
= WaitForResponseTimeout(CMD_ACK
,&resp
,1500);
621 } else if (rights
[sectorNo
][data_area
] == 0x07) { // no key would work
623 PrintAndLog("Access rights do not allow reading of sector %2d block %3d", sectorNo
, blockNo
);
624 } else { // key A would work
625 UsbCommand c
= {CMD_MIFARE_READBL
, {FirstBlockOfSector(sectorNo
) + blockNo
, 0, 0}};
626 memcpy(c
.d
.asBytes
, keyA
[sectorNo
], 6);
628 received
= WaitForResponseTimeout(CMD_ACK
,&resp
,1500);
633 isOK
= resp
.arg
[0] & 0xff;
634 uint8_t *data
= resp
.d
.asBytes
;
635 if (blockNo
== NumBlocksPerSector(sectorNo
) - 1) { // sector trailer. Fill in the keys.
636 data
[0] = (keyA
[sectorNo
][0]);
637 data
[1] = (keyA
[sectorNo
][1]);
638 data
[2] = (keyA
[sectorNo
][2]);
639 data
[3] = (keyA
[sectorNo
][3]);
640 data
[4] = (keyA
[sectorNo
][4]);
641 data
[5] = (keyA
[sectorNo
][5]);
642 data
[10] = (keyB
[sectorNo
][0]);
643 data
[11] = (keyB
[sectorNo
][1]);
644 data
[12] = (keyB
[sectorNo
][2]);
645 data
[13] = (keyB
[sectorNo
][3]);
646 data
[14] = (keyB
[sectorNo
][4]);
647 data
[15] = (keyB
[sectorNo
][5]);
650 memcpy(carddata
[FirstBlockOfSector(sectorNo
) + blockNo
], data
, 16);
651 PrintAndLog("Successfully read block %2d of sector %2d.", blockNo
, sectorNo
);
653 PrintAndLog("Could not read block %2d of sector %2d", blockNo
, sectorNo
);
659 PrintAndLog("Command execute timeout when trying to read block %2d of sector %2d.", blockNo
, sectorNo
);
666 if ((fout
= fopen("dumpdata.bin","wb")) == NULL
) {
667 PrintAndLog("Could not create file name dumpdata.bin");
670 uint16_t numblocks
= FirstBlockOfSector(numSectors
- 1) + NumBlocksPerSector(numSectors
- 1);
671 fwrite(carddata
, 1, 16*numblocks
, fout
);
673 PrintAndLog("Dumped %d blocks (%d bytes) to file dumpdata.bin", numblocks
, 16*numblocks
);
681 int CmdHF14AMfRestore(const char *Cmd
)
684 uint8_t sectorNo
,blockNo
;
686 uint8_t key
[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
687 uint8_t bldata
[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
695 char cmdp
= param_getchar(Cmd
, 0);
697 case '0' : numSectors
= 5; break;
699 case '\0': numSectors
= 16; break;
700 case '2' : numSectors
= 32; break;
701 case '4' : numSectors
= 40; break;
702 default: numSectors
= 16;
705 if (strlen(Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H') {
706 PrintAndLog("Usage: hf mf restore [card memory]");
707 PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");
709 PrintAndLog("Samples: hf mf restore");
710 PrintAndLog(" hf mf restore 4");
714 if ((fdump
= fopen("dumpdata.bin","rb")) == NULL
) {
715 PrintAndLog("Could not find file dumpdata.bin");
718 if ((fkeys
= fopen("dumpkeys.bin","rb")) == NULL
) {
719 PrintAndLog("Could not find file dumpkeys.bin");
723 for (sectorNo
= 0; sectorNo
< numSectors
; sectorNo
++) {
724 if (fread(keyA
[sectorNo
], 1, 6, fkeys
) == 0) {
725 PrintAndLog("File reading error (dumpkeys.bin).");
730 for (sectorNo
= 0; sectorNo
< numSectors
; sectorNo
++) {
731 if (fread(keyB
[sectorNo
], 1, 6, fkeys
) == 0) {
732 PrintAndLog("File reading error (dumpkeys.bin).");
737 PrintAndLog("Restoring dumpdata.bin to card");
739 for (sectorNo
= 0; sectorNo
< numSectors
; sectorNo
++) {
740 for(blockNo
= 0; blockNo
< NumBlocksPerSector(sectorNo
); blockNo
++) {
741 UsbCommand c
= {CMD_MIFARE_WRITEBL
, {FirstBlockOfSector(sectorNo
) + blockNo
, keyType
, 0}};
742 memcpy(c
.d
.asBytes
, key
, 6);
744 if (fread(bldata
, 1, 16, fdump
) == 0) {
745 PrintAndLog("File reading error (dumpdata.bin).");
749 if (blockNo
== NumBlocksPerSector(sectorNo
) - 1) { // sector trailer
750 bldata
[0] = (keyA
[sectorNo
][0]);
751 bldata
[1] = (keyA
[sectorNo
][1]);
752 bldata
[2] = (keyA
[sectorNo
][2]);
753 bldata
[3] = (keyA
[sectorNo
][3]);
754 bldata
[4] = (keyA
[sectorNo
][4]);
755 bldata
[5] = (keyA
[sectorNo
][5]);
756 bldata
[10] = (keyB
[sectorNo
][0]);
757 bldata
[11] = (keyB
[sectorNo
][1]);
758 bldata
[12] = (keyB
[sectorNo
][2]);
759 bldata
[13] = (keyB
[sectorNo
][3]);
760 bldata
[14] = (keyB
[sectorNo
][4]);
761 bldata
[15] = (keyB
[sectorNo
][5]);
764 PrintAndLog("Writing to block %3d: %s", FirstBlockOfSector(sectorNo
) + blockNo
, sprint_hex(bldata
, 16));
766 memcpy(c
.d
.asBytes
+ 10, bldata
, 16);
770 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
771 uint8_t isOK
= resp
.arg
[0] & 0xff;
772 PrintAndLog("isOk:%02x", isOK
);
774 PrintAndLog("Command execute timeout");
785 int CmdHF14AMfNested(const char *Cmd
)
787 int i
, j
, res
, iterations
;
788 sector
*e_sector
= NULL
;
791 uint8_t trgBlockNo
= 0;
792 uint8_t trgKeyType
= 0;
793 uint8_t SectorsCnt
= 0;
794 uint8_t key
[6] = {0, 0, 0, 0, 0, 0};
795 uint8_t keyBlock
[13*6];
797 bool transferToEml
= false;
799 bool createDumpFile
= false;
801 uint8_t standart
[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
802 uint8_t tempkey
[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
807 PrintAndLog("Usage:");
808 PrintAndLog(" all sectors: hf mf nested <card memory> <block number> <key A/B> <key (12 hex symbols)> [t,d]");
809 PrintAndLog(" one sector: hf mf nested o <block number> <key A/B> <key (12 hex symbols)>");
810 PrintAndLog(" <target block number> <target key A/B> [t]");
811 PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");
812 PrintAndLog("t - transfer keys into emulator memory");
813 PrintAndLog("d - write keys to binary file");
815 PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF ");
816 PrintAndLog(" sample2: hf mf nested 1 0 A FFFFFFFFFFFF t ");
817 PrintAndLog(" sample3: hf mf nested 1 0 A FFFFFFFFFFFF d ");
818 PrintAndLog(" sample4: hf mf nested o 0 A FFFFFFFFFFFF 4 A");
822 cmdp
= param_getchar(Cmd
, 0);
823 blockNo
= param_get8(Cmd
, 1);
824 ctmp
= param_getchar(Cmd
, 2);
826 if (ctmp
!= 'a' && ctmp
!= 'A' && ctmp
!= 'b' && ctmp
!= 'B') {
827 PrintAndLog("Key type must be A or B");
831 if (ctmp
!= 'A' && ctmp
!= 'a')
834 if (param_gethex(Cmd
, 3, key
, 12)) {
835 PrintAndLog("Key must include 12 HEX symbols");
839 if (cmdp
== 'o' || cmdp
== 'O') {
841 trgBlockNo
= param_get8(Cmd
, 4);
842 ctmp
= param_getchar(Cmd
, 5);
843 if (ctmp
!= 'a' && ctmp
!= 'A' && ctmp
!= 'b' && ctmp
!= 'B') {
844 PrintAndLog("Target key type must be A or B");
847 if (ctmp
!= 'A' && ctmp
!= 'a')
854 case '0': SectorsCnt
= 05; break;
855 case '1': SectorsCnt
= 16; break;
856 case '2': SectorsCnt
= 32; break;
857 case '4': SectorsCnt
= 40; break;
858 default: SectorsCnt
= 16;
862 ctmp
= param_getchar(Cmd
, 4);
863 if (ctmp
== 't' || ctmp
== 'T') transferToEml
= true;
864 else if (ctmp
== 'd' || ctmp
== 'D') createDumpFile
= true;
866 ctmp
= param_getchar(Cmd
, 6);
867 transferToEml
|= (ctmp
== 't' || ctmp
== 'T');
868 transferToEml
|= (ctmp
== 'd' || ctmp
== 'D');
871 PrintAndLog("--target block no:%3d, target key type:%c ", trgBlockNo
, trgKeyType
?'B':'A');
872 if (mfnested(blockNo
, keyType
, key
, trgBlockNo
, trgKeyType
, keyBlock
, true)) {
873 PrintAndLog("Nested error.");
876 key64
= bytes_to_num(keyBlock
, 6);
878 PrintAndLog("Found valid key:%012"llx
, key64
);
880 // transfer key to the emulator
882 uint8_t sectortrailer
;
883 if (trgBlockNo
< 32*4) { // 4 block sector
884 sectortrailer
= (trgBlockNo
& 0x03) + 3;
885 } else { // 16 block sector
886 sectortrailer
= (trgBlockNo
& 0x0f) + 15;
888 mfEmlGetMem(keyBlock
, sectortrailer
, 1);
891 num_to_bytes(key64
, 6, keyBlock
);
893 num_to_bytes(key64
, 6, &keyBlock
[10]);
894 mfEmlSetMem(keyBlock
, sectortrailer
, 1);
897 PrintAndLog("No valid key found");
900 else { // ------------------------------------ multiple sectors working
904 e_sector
= calloc(SectorsCnt
, sizeof(sector
));
905 if (e_sector
== NULL
) return 1;
907 //test current key and additional standard keys first
908 memcpy(keyBlock
, key
, 6);
909 num_to_bytes(0xffffffffffff, 6, (uint8_t*)(keyBlock
+ 1 * 6));
910 num_to_bytes(0x000000000000, 6, (uint8_t*)(keyBlock
+ 2 * 6));
911 num_to_bytes(0xa0a1a2a3a4a5, 6, (uint8_t*)(keyBlock
+ 3 * 6));
912 num_to_bytes(0xb0b1b2b3b4b5, 6, (uint8_t*)(keyBlock
+ 4 * 6));
913 num_to_bytes(0xaabbccddeeff, 6, (uint8_t*)(keyBlock
+ 5 * 6));
914 num_to_bytes(0x4d3a99c351dd, 6, (uint8_t*)(keyBlock
+ 6 * 6));
915 num_to_bytes(0x1a982c7e459a, 6, (uint8_t*)(keyBlock
+ 7 * 6));
916 num_to_bytes(0xd3f7d3f7d3f7, 6, (uint8_t*)(keyBlock
+ 8 * 6));
917 num_to_bytes(0x714c5c886e97, 6, (uint8_t*)(keyBlock
+ 9 * 6));
918 num_to_bytes(0x587ee5f9350f, 6, (uint8_t*)(keyBlock
+ 10 * 6));
919 num_to_bytes(0xa0478cc39091, 6, (uint8_t*)(keyBlock
+ 11 * 6));
920 num_to_bytes(0x533cb6c723f6, 6, (uint8_t*)(keyBlock
+ 12 * 6));
921 num_to_bytes(0x8fd0a4f256e9, 6, (uint8_t*)(keyBlock
+ 13 * 6));
923 PrintAndLog("Testing known keys. Sector count=%d", SectorsCnt
);
924 for (i
= 0; i
< SectorsCnt
; i
++) {
925 for (j
= 0; j
< 2; j
++) {
926 if (e_sector
[i
].foundKey
[j
]) continue;
928 res
= mfCheckKeys(FirstBlockOfSector(i
), j
, 6, keyBlock
, &key64
);
931 e_sector
[i
].Key
[j
] = key64
;
932 e_sector
[i
].foundKey
[j
] = 1;
940 PrintAndLog("nested...");
941 bool calibrate
= true;
942 for (i
= 0; i
< NESTED_SECTOR_RETRY
; i
++) {
943 for (uint8_t sectorNo
= 0; sectorNo
< SectorsCnt
; sectorNo
++) {
944 for (trgKeyType
= 0; trgKeyType
< 2; trgKeyType
++) {
945 if (e_sector
[sectorNo
].foundKey
[trgKeyType
]) continue;
946 PrintAndLog("-----------------------------------------------");
947 if(mfnested(blockNo
, keyType
, key
, FirstBlockOfSector(sectorNo
), trgKeyType
, keyBlock
, calibrate
)) {
948 PrintAndLog("Nested error.\n");
957 key64
= bytes_to_num(keyBlock
, 6);
959 PrintAndLog("Found valid key:%012"llx
, key64
);
960 e_sector
[sectorNo
].foundKey
[trgKeyType
] = 1;
961 e_sector
[sectorNo
].Key
[trgKeyType
] = key64
;
967 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
);
969 PrintAndLog("-----------------------------------------------\nIterations count: %d\n\n", iterations
);
971 PrintAndLog("|---|----------------|---|----------------|---|");
972 PrintAndLog("|sec|key A |res|key B |res|");
973 PrintAndLog("|---|----------------|---|----------------|---|");
974 for (i
= 0; i
< SectorsCnt
; i
++) {
975 PrintAndLog("|%03d| %012"llx
" | %d | %012"llx
" | %d |", i
,
976 e_sector
[i
].Key
[0], e_sector
[i
].foundKey
[0], e_sector
[i
].Key
[1], e_sector
[i
].foundKey
[1]);
978 PrintAndLog("|---|----------------|---|----------------|---|");
980 // transfer them to the emulator
982 for (i
= 0; i
< SectorsCnt
; i
++) {
983 mfEmlGetMem(keyBlock
, FirstBlockOfSector(i
) + NumBlocksPerSector(i
) - 1, 1);
984 if (e_sector
[i
].foundKey
[0])
985 num_to_bytes(e_sector
[i
].Key
[0], 6, keyBlock
);
986 if (e_sector
[i
].foundKey
[1])
987 num_to_bytes(e_sector
[i
].Key
[1], 6, &keyBlock
[10]);
988 mfEmlSetMem(keyBlock
, FirstBlockOfSector(i
) + NumBlocksPerSector(i
) - 1, 1);
993 if (createDumpFile
) {
994 if ((fkeys
= fopen("dumpkeys.bin","wb")) == NULL
) {
995 PrintAndLog("Could not create file dumpkeys.bin");
999 PrintAndLog("Printing keys to binary file dumpkeys.bin...");
1000 for(i
=0; i
<SectorsCnt
; i
++) {
1001 if (e_sector
[i
].foundKey
[0]){
1002 num_to_bytes(e_sector
[i
].Key
[0], 6, tempkey
);
1003 fwrite ( tempkey
, 1, 6, fkeys
);
1006 fwrite ( &standart
, 1, 6, fkeys
);
1009 for(i
=0; i
<SectorsCnt
; i
++) {
1010 if (e_sector
[i
].foundKey
[1]){
1011 num_to_bytes(e_sector
[i
].Key
[1], 6, tempkey
);
1012 fwrite ( tempkey
, 1, 6, fkeys
);
1015 fwrite ( &standart
, 1, 6, fkeys
);
1028 int CmdHF14AMfChk(const char *Cmd
)
1030 if (strlen(Cmd
)<3) {
1031 PrintAndLog("Usage: hf mf chk <block number>|<*card memory> <key type (A/B/?)> [t|d] [<key (12 hex symbols)>] [<dic (*.dic)>]");
1032 PrintAndLog(" * - all sectors");
1033 PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");
1034 PrintAndLog("d - write keys to binary file\n");
1035 PrintAndLog("t - write keys to emulator memory");
1036 PrintAndLog(" sample: hf mf chk 0 A 1234567890ab keys.dic");
1037 PrintAndLog(" hf mf chk *1 ? t");
1038 PrintAndLog(" hf mf chk *1 ? d");
1043 char filename
[256]={0};
1045 uint8_t *keyBlock
= NULL
, *p
;
1046 uint8_t stKeyBlock
= 20;
1051 uint8_t blockNo
= 0;
1052 uint8_t SectorsCnt
= 1;
1053 uint8_t keyType
= 0;
1056 int transferToEml
= 0;
1057 int createDumpFile
= 0;
1059 keyBlock
= calloc(stKeyBlock
, 6);
1060 if (keyBlock
== NULL
) return 1;
1062 uint64_t defaultKeys
[] =
1064 0xffffffffffff, // Default key (first key used by program if no user defined key)
1065 0x000000000000, // Blank key
1066 0xa0a1a2a3a4a5, // NFCForum MAD key
1078 int defaultKeysSize
= sizeof(defaultKeys
) / sizeof(uint64_t);
1080 for (int defaultKeyCounter
= 0; defaultKeyCounter
< defaultKeysSize
; defaultKeyCounter
++)
1082 num_to_bytes(defaultKeys
[defaultKeyCounter
], 6, (uint8_t*)(keyBlock
+ defaultKeyCounter
* 6));
1085 if (param_getchar(Cmd
, 0)=='*') {
1087 switch(param_getchar(Cmd
+1, 0)) {
1088 case '0': SectorsCnt
= 5; break;
1089 case '1': SectorsCnt
= 16; break;
1090 case '2': SectorsCnt
= 32; break;
1091 case '4': SectorsCnt
= 40; break;
1092 default: SectorsCnt
= 16;
1096 blockNo
= param_get8(Cmd
, 0);
1098 ctmp
= param_getchar(Cmd
, 1);
1110 PrintAndLog("Key type must be A , B or ?");
1114 ctmp
= param_getchar(Cmd
, 2);
1115 if (ctmp
== 't' || ctmp
== 'T') transferToEml
= 1;
1116 else if (ctmp
== 'd' || ctmp
== 'D') createDumpFile
= 1;
1118 for (i
= transferToEml
|| createDumpFile
; param_getchar(Cmd
, 2 + i
); i
++) {
1119 if (!param_gethex(Cmd
, 2 + i
, keyBlock
+ 6 * keycnt
, 12)) {
1120 if ( stKeyBlock
- keycnt
< 2) {
1121 p
= realloc(keyBlock
, 6*(stKeyBlock
+=10));
1123 PrintAndLog("Cannot allocate memory for Keys");
1129 PrintAndLog("chk key[%2d] %02x%02x%02x%02x%02x%02x", keycnt
,
1130 (keyBlock
+ 6*keycnt
)[0],(keyBlock
+ 6*keycnt
)[1], (keyBlock
+ 6*keycnt
)[2],
1131 (keyBlock
+ 6*keycnt
)[3], (keyBlock
+ 6*keycnt
)[4], (keyBlock
+ 6*keycnt
)[5], 6);
1134 // May be a dic file
1135 if ( param_getstr(Cmd
, 2 + i
,filename
) > 255 ) {
1136 PrintAndLog("File name too long");
1141 if ( (f
= fopen( filename
, "r")) ) {
1142 while( fgets(buf
, sizeof(buf
), f
) ){
1143 if (strlen(buf
) < 12 || buf
[11] == '\n')
1146 while (fgetc(f
) != '\n' && !feof(f
)) ; //goto next line
1148 if( buf
[0]=='#' ) continue; //The line start with # is comment, skip
1150 if (!isxdigit(buf
[0])){
1151 PrintAndLog("File content error. '%s' must include 12 HEX symbols",buf
);
1157 if ( stKeyBlock
- keycnt
< 2) {
1158 p
= realloc(keyBlock
, 6*(stKeyBlock
+=10));
1160 PrintAndLog("Cannot allocate memory for defKeys");
1166 memset(keyBlock
+ 6 * keycnt
, 0, 6);
1167 num_to_bytes(strtoll(buf
, NULL
, 16), 6, keyBlock
+ 6*keycnt
);
1168 PrintAndLog("chk custom key[%2d] %012"llx
, keycnt
, bytes_to_num(keyBlock
+ 6*keycnt
, 6));
1170 memset(buf
, 0, sizeof(buf
));
1173 PrintAndLog("File: %s: not found or locked.", filename
);
1182 PrintAndLog("No key specified, trying default keys");
1183 for (;keycnt
< defaultKeysSize
; keycnt
++)
1184 PrintAndLog("chk default key[%2d] %02x%02x%02x%02x%02x%02x", keycnt
,
1185 (keyBlock
+ 6*keycnt
)[0],(keyBlock
+ 6*keycnt
)[1], (keyBlock
+ 6*keycnt
)[2],
1186 (keyBlock
+ 6*keycnt
)[3], (keyBlock
+ 6*keycnt
)[4], (keyBlock
+ 6*keycnt
)[5], 6);
1189 // initialize storage for found keys
1190 bool validKey
[2][40];
1191 uint8_t foundKey
[2][40][6];
1192 for (uint16_t t
= 0; t
< 2; t
++) {
1193 for (uint16_t sectorNo
= 0; sectorNo
< SectorsCnt
; sectorNo
++) {
1194 validKey
[t
][sectorNo
] = false;
1195 for (uint16_t i
= 0; i
< 6; i
++) {
1196 foundKey
[t
][sectorNo
][i
] = 0xff;
1201 for ( int t
= !keyType
; t
< 2; keyType
==2?(t
++):(t
=2) ) {
1203 for (int i
= 0; i
< SectorsCnt
; ++i
) {
1204 PrintAndLog("--sector:%2d, block:%3d, key type:%C, key count:%2d ", i
, b
, t
?'B':'A', keycnt
);
1205 uint32_t max_keys
= keycnt
>USB_CMD_DATA_SIZE
/6?USB_CMD_DATA_SIZE
/6:keycnt
;
1206 for (uint32_t c
= 0; c
< keycnt
; c
+=max_keys
) {
1207 uint32_t size
= keycnt
-c
>max_keys
?max_keys
:keycnt
-c
;
1208 res
= mfCheckKeys(b
, t
, size
, &keyBlock
[6*c
], &key64
);
1211 PrintAndLog("Found valid key:[%012"llx
"]",key64
);
1212 num_to_bytes(key64
, 6, foundKey
[t
][i
]);
1213 validKey
[t
][i
] = true;
1216 PrintAndLog("Command execute timeout");
1219 b
<127?(b
+=4):(b
+=16);
1223 if (transferToEml
) {
1225 for (uint16_t sectorNo
= 0; sectorNo
< SectorsCnt
; sectorNo
++) {
1226 if (validKey
[0][sectorNo
] || validKey
[1][sectorNo
]) {
1227 mfEmlGetMem(block
, FirstBlockOfSector(sectorNo
) + NumBlocksPerSector(sectorNo
) - 1, 1);
1228 for (uint16_t t
= 0; t
< 2; t
++) {
1229 if (validKey
[t
][sectorNo
]) {
1230 memcpy(block
+ t
*10, foundKey
[t
][sectorNo
], 6);
1233 mfEmlSetMem(block
, FirstBlockOfSector(sectorNo
) + NumBlocksPerSector(sectorNo
) - 1, 1);
1236 PrintAndLog("Found keys have been transferred to the emulator memory");
1239 if (createDumpFile
) {
1240 FILE *fkeys
= fopen("dumpkeys.bin","wb");
1241 if (fkeys
== NULL
) {
1242 PrintAndLog("Could not create file dumpkeys.bin");
1246 for (uint16_t t
= 0; t
< 2; t
++) {
1247 fwrite(foundKey
[t
], 1, 6*SectorsCnt
, fkeys
);
1250 PrintAndLog("Found keys have been dumped to file dumpkeys.bin. 0xffffffffffff has been inserted for unknown keys.");
1259 int CmdHF14AMf1kSim(const char *Cmd
)
1261 uint8_t uid
[7] = {0, 0, 0, 0, 0, 0, 0};
1262 uint8_t exitAfterNReads
= 0;
1265 if (param_getchar(Cmd
, 0) == 'h') {
1266 PrintAndLog("Usage: hf mf sim u <uid (8 hex symbols)> n <numreads> i x");
1267 PrintAndLog(" u (Optional) UID. If not specified, the UID from emulator memory will be used");
1268 PrintAndLog(" n (Optional) Automatically exit simulation after <numreads> blocks have been read by reader. 0 = infinite");
1269 PrintAndLog(" i (Optional) Interactive, means that console will not be returned until simulation finishes or is aborted");
1270 PrintAndLog(" x (Optional) Crack, performs the 'reader attack', nr/ar attack against a legitimate reader, fishes out the key(s)");
1271 PrintAndLog(" sample: hf mf sim u 0a0a0a0a ");
1275 if (param_getchar(Cmd
, pnr
) == 'u') {
1276 if(param_gethex(Cmd
, pnr
+1, uid
, 8) == 0)
1278 flags
|= FLAG_4B_UID_IN_DATA
; // UID from packet
1279 } else if(param_gethex(Cmd
,pnr
+1,uid
,14) == 0) {
1280 flags
|= FLAG_7B_UID_IN_DATA
;// UID from packet
1282 PrintAndLog("UID, if specified, must include 8 or 14 HEX symbols");
1287 if (param_getchar(Cmd
, pnr
) == 'n') {
1288 exitAfterNReads
= param_get8(Cmd
,pnr
+1);
1291 if (param_getchar(Cmd
, pnr
) == 'i' ) {
1292 //Using a flag to signal interactiveness, least significant bit
1293 flags
|= FLAG_INTERACTIVE
;
1297 if (param_getchar(Cmd
, pnr
) == 'x' ) {
1298 //Using a flag to signal interactiveness, least significant bit
1299 flags
|= FLAG_NR_AR_ATTACK
;
1301 PrintAndLog(" uid:%s, numreads:%d, flags:%d (0x%02x) ",
1302 flags
& FLAG_4B_UID_IN_DATA
? sprint_hex(uid
,4):
1303 flags
& FLAG_7B_UID_IN_DATA
? sprint_hex(uid
,7): "N/A"
1304 , exitAfterNReads
, flags
,flags
);
1307 UsbCommand c
= {CMD_SIMULATE_MIFARE_CARD
, {flags
, exitAfterNReads
,0}};
1308 memcpy(c
.d
.asBytes
, uid
, sizeof(uid
));
1311 if(flags
& FLAG_INTERACTIVE
)
1314 PrintAndLog("Press pm3-button to abort simulation");
1315 while(! WaitForResponseTimeout(CMD_ACK
,&resp
,1500)) {
1316 //We're waiting only 1.5 s at a time, otherwise we get the
1317 // annoying message about "Waiting for a response... "
1325 int CmdHF14AMfDbg(const char *Cmd
)
1327 int dbgMode
= param_get32ex(Cmd
, 0, 0, 10);
1329 PrintAndLog("Max debug mode parameter is 4 \n");
1332 if (strlen(Cmd
) < 1 || !param_getchar(Cmd
, 0) || dbgMode
> 4) {
1333 PrintAndLog("Usage: hf mf dbg <debug level>");
1334 PrintAndLog(" 0 - no debug messages");
1335 PrintAndLog(" 1 - error messages");
1336 PrintAndLog(" 2 - plus information messages");
1337 PrintAndLog(" 3 - plus debug messages");
1338 PrintAndLog(" 4 - print even debug messages in timing critical functions");
1339 PrintAndLog(" Note: this option therefore may cause malfunction itself");
1343 UsbCommand c
= {CMD_MIFARE_SET_DBGMODE
, {dbgMode
, 0, 0}};
1349 int CmdHF14AMfEGet(const char *Cmd
)
1351 uint8_t blockNo
= 0;
1354 if (strlen(Cmd
) < 1 || param_getchar(Cmd
, 0) == 'h') {
1355 PrintAndLog("Usage: hf mf eget <block number>");
1356 PrintAndLog(" sample: hf mf eget 0 ");
1360 blockNo
= param_get8(Cmd
, 0);
1363 if (!mfEmlGetMem(data
, blockNo
, 1)) {
1364 PrintAndLog("data[%3d]:%s", blockNo
, sprint_hex(data
, 16));
1366 PrintAndLog("Command execute timeout");
1373 int CmdHF14AMfEClear(const char *Cmd
)
1375 if (param_getchar(Cmd
, 0) == 'h') {
1376 PrintAndLog("Usage: hf mf eclr");
1377 PrintAndLog("It set card emulator memory to empty data blocks and key A/B FFFFFFFFFFFF \n");
1381 UsbCommand c
= {CMD_MIFARE_EML_MEMCLR
, {0, 0, 0}};
1387 int CmdHF14AMfESet(const char *Cmd
)
1389 uint8_t memBlock
[16];
1390 uint8_t blockNo
= 0;
1392 memset(memBlock
, 0x00, sizeof(memBlock
));
1394 if (strlen(Cmd
) < 3 || param_getchar(Cmd
, 0) == 'h') {
1395 PrintAndLog("Usage: hf mf eset <block number> <block data (32 hex symbols)>");
1396 PrintAndLog(" sample: hf mf eset 1 000102030405060708090a0b0c0d0e0f ");
1400 blockNo
= param_get8(Cmd
, 0);
1402 if (param_gethex(Cmd
, 1, memBlock
, 32)) {
1403 PrintAndLog("block data must include 32 HEX symbols");
1408 UsbCommand c
= {CMD_MIFARE_EML_MEMSET
, {blockNo
, 1, 0}};
1409 memcpy(c
.d
.asBytes
, memBlock
, 16);
1415 int CmdHF14AMfELoad(const char *Cmd
)
1419 char *fnameptr
= filename
;
1422 int i
, len
, blockNum
;
1424 memset(filename
, 0, sizeof(filename
));
1425 memset(buf
, 0, sizeof(buf
));
1427 if (param_getchar(Cmd
, 0) == 'h' || param_getchar(Cmd
, 0)== 0x00) {
1428 PrintAndLog("It loads emul dump from the file `filename.eml`");
1429 PrintAndLog("Usage: hf mf eload <file name w/o `.eml`>");
1430 PrintAndLog(" sample: hf mf eload filename");
1435 if (len
> 14) len
= 14;
1437 memcpy(filename
, Cmd
, len
);
1440 sprintf(fnameptr
, ".eml");
1443 f
= fopen(filename
, "r");
1445 PrintAndLog("File not found or locked.");
1451 memset(buf
, 0, sizeof(buf
));
1452 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
1453 if((blockNum
== 16*4) || (blockNum
== 32*4 + 8*16)) { // supports both old (1K) and new (4K) .eml files)
1456 PrintAndLog("File reading error.");
1459 if (strlen(buf
) < 32){
1460 if(strlen(buf
) && feof(f
))
1462 PrintAndLog("File content error. Block data must include 32 HEX symbols");
1465 for (i
= 0; i
< 32; i
+= 2) {
1466 sscanf(&buf
[i
], "%02x", (unsigned int *)&buf8
[i
/ 2]);
1467 // PrintAndLog("data[%02d]:%s", blockNum, sprint_hex(buf8, 16));
1469 if (mfEmlSetMem(buf8
, blockNum
, 1)) {
1470 PrintAndLog("Cant set emul block: %3d", blockNum
);
1475 if (blockNum
>= 32*4 + 8*16) break;
1479 if ((blockNum
!= 16*4) && (blockNum
!= 32*4 + 8*16)) {
1480 PrintAndLog("File content error. There must be 64 or 256 blocks.");
1483 PrintAndLog("Loaded %d blocks from file: %s", blockNum
, filename
);
1488 int CmdHF14AMfESave(const char *Cmd
)
1492 char * fnameptr
= filename
;
1496 memset(filename
, 0, sizeof(filename
));
1497 memset(buf
, 0, sizeof(buf
));
1499 if (param_getchar(Cmd
, 0) == 'h') {
1500 PrintAndLog("It saves emul dump into the file `filename.eml` or `cardID.eml`");
1501 PrintAndLog("Usage: hf mf esave [file name w/o `.eml`]");
1502 PrintAndLog(" sample: hf mf esave ");
1503 PrintAndLog(" hf mf esave filename");
1508 if (len
> 14) len
= 14;
1512 if (mfEmlGetMem(buf
, 0, 1)) {
1513 PrintAndLog("Cant get block: %d", 0);
1516 for (j
= 0; j
< 7; j
++, fnameptr
+= 2)
1517 sprintf(fnameptr
, "%02x", buf
[j
]);
1519 memcpy(filename
, Cmd
, len
);
1523 sprintf(fnameptr
, ".eml");
1526 f
= fopen(filename
, "w+");
1529 for (i
= 0; i
< 32*4 + 8*16; i
++) {
1530 if (mfEmlGetMem(buf
, i
, 1)) {
1531 PrintAndLog("Cant get block: %d", i
);
1534 for (j
= 0; j
< 16; j
++)
1535 fprintf(f
, "%02x", buf
[j
]);
1540 PrintAndLog("Saved to file: %s", filename
);
1546 int CmdHF14AMfECFill(const char *Cmd
)
1548 uint8_t keyType
= 0;
1549 uint8_t numSectors
= 16;
1551 if (strlen(Cmd
) < 1 || param_getchar(Cmd
, 0) == 'h') {
1552 PrintAndLog("Usage: hf mf ecfill <key A/B> [card memory]");
1553 PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");
1555 PrintAndLog("samples: hf mf ecfill A");
1556 PrintAndLog(" hf mf ecfill A 4");
1557 PrintAndLog("Read card and transfer its data to emulator memory.");
1558 PrintAndLog("Keys must be laid in the emulator memory. \n");
1562 char ctmp
= param_getchar(Cmd
, 0);
1563 if (ctmp
!= 'a' && ctmp
!= 'A' && ctmp
!= 'b' && ctmp
!= 'B') {
1564 PrintAndLog("Key type must be A or B");
1567 if (ctmp
!= 'A' && ctmp
!= 'a') keyType
= 1;
1569 ctmp
= param_getchar(Cmd
, 1);
1571 case '0' : numSectors
= 5; break;
1573 case '\0': numSectors
= 16; break;
1574 case '2' : numSectors
= 32; break;
1575 case '4' : numSectors
= 40; break;
1576 default: numSectors
= 16;
1579 printf("--params: numSectors: %d, keyType:%d", numSectors
, keyType
);
1580 UsbCommand c
= {CMD_MIFARE_EML_CARDLOAD
, {numSectors
, keyType
, 0}};
1586 int CmdHF14AMfEKeyPrn(const char *Cmd
)
1590 uint64_t keyA
, keyB
;
1592 PrintAndLog("|---|----------------|----------------|");
1593 PrintAndLog("|sec|key A |key B |");
1594 PrintAndLog("|---|----------------|----------------|");
1595 for (i
= 0; i
< 40; i
++) {
1596 if (mfEmlGetMem(data
, FirstBlockOfSector(i
) + NumBlocksPerSector(i
) - 1, 1)) {
1597 PrintAndLog("error get block %d", FirstBlockOfSector(i
) + NumBlocksPerSector(i
) - 1);
1600 keyA
= bytes_to_num(data
, 6);
1601 keyB
= bytes_to_num(data
+ 10, 6);
1602 PrintAndLog("|%03d| %012"llx
" | %012"llx
" |", i
, keyA
, keyB
);
1604 PrintAndLog("|---|----------------|----------------|");
1610 int CmdHF14AMfCSetUID(const char *Cmd
)
1612 uint8_t wipeCard
= 0;
1617 if (strlen(Cmd
) < 1 || param_getchar(Cmd
, 0) == 'h') {
1618 PrintAndLog("Usage: hf mf csetuid <UID 8 hex symbols> <w>");
1619 PrintAndLog("sample: hf mf csetuid 01020304 w");
1620 PrintAndLog("Set UID for magic Chinese card (only works with!!!)");
1621 PrintAndLog("If you want wipe card then add 'w' into command line. \n");
1625 if (param_getchar(Cmd
, 0) && param_gethex(Cmd
, 0, uid
, 8)) {
1626 PrintAndLog("UID must include 8 HEX symbols");
1630 char ctmp
= param_getchar(Cmd
, 1);
1631 if (ctmp
== 'w' || ctmp
== 'W') wipeCard
= 1;
1633 PrintAndLog("--wipe card:%02x uid:%s", wipeCard
, sprint_hex(uid
, 4));
1635 res
= mfCSetUID(uid
, oldUid
, wipeCard
);
1637 PrintAndLog("Can't set UID. error=%d", res
);
1641 PrintAndLog("old UID:%s", sprint_hex(oldUid
, 4));
1645 int CmdHF14AMfCSetBlk(const char *Cmd
)
1648 uint8_t memBlock
[16];
1649 uint8_t blockNo
= 0;
1651 memset(memBlock
, 0x00, sizeof(memBlock
));
1653 if (strlen(Cmd
) < 1 || param_getchar(Cmd
, 0) == 'h') {
1654 PrintAndLog("Usage: hf mf csetblk <block number> <block data (32 hex symbols)>");
1655 PrintAndLog("sample: hf mf csetblk 1 01020304050607080910111213141516");
1656 PrintAndLog("Set block data for magic Chinese card (only works with!!!)");
1657 PrintAndLog("If you want wipe card then add 'w' into command line. \n");
1661 blockNo
= param_get8(Cmd
, 0);
1663 if (param_gethex(Cmd
, 1, memBlock
, 32)) {
1664 PrintAndLog("block data must include 32 HEX symbols");
1668 PrintAndLog("--block number:%2d data:%s", blockNo
, sprint_hex(memBlock
, 16));
1670 res
= mfCSetBlock(blockNo
, memBlock
, uid
, 0, CSETBLOCK_SINGLE_OPER
);
1672 PrintAndLog("Can't write block. error=%d", res
);
1676 PrintAndLog("UID:%s", sprint_hex(uid
, 4));
1681 int CmdHF14AMfCLoad(const char *Cmd
)
1685 char * fnameptr
= filename
;
1688 uint8_t fillFromEmulator
= 0;
1689 int i
, len
, blockNum
, flags
;
1691 memset(filename
, 0, sizeof(filename
));
1692 memset(buf
, 0, sizeof(buf
));
1694 if (param_getchar(Cmd
, 0) == 'h' || param_getchar(Cmd
, 0)== 0x00) {
1695 PrintAndLog("It loads magic Chinese card (only works with!!!) from the file `filename.eml`");
1696 PrintAndLog("or from emulator memory (option `e`)");
1697 PrintAndLog("Usage: hf mf cload <file name w/o `.eml`>");
1698 PrintAndLog(" or: hf mf cload e ");
1699 PrintAndLog(" sample: hf mf cload filename");
1703 char ctmp
= param_getchar(Cmd
, 0);
1704 if (ctmp
== 'e' || ctmp
== 'E') fillFromEmulator
= 1;
1706 if (fillFromEmulator
) {
1707 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1708 for (blockNum
= 0; blockNum
< 16 * 4; blockNum
+= 1) {
1709 if (mfEmlGetMem(buf8
, blockNum
, 1)) {
1710 PrintAndLog("Cant get block: %d", blockNum
);
1714 if (blockNum
== 2) flags
= 0;
1715 if (blockNum
== 16 * 4 - 1) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1717 if (mfCSetBlock(blockNum
, buf8
, NULL
, 0, flags
)) {
1718 PrintAndLog("Cant set magic card block: %d", blockNum
);
1725 if (len
> 14) len
= 14;
1727 memcpy(filename
, Cmd
, len
);
1730 sprintf(fnameptr
, ".eml");
1733 f
= fopen(filename
, "r");
1735 PrintAndLog("File not found or locked.");
1740 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1742 memset(buf
, 0, sizeof(buf
));
1743 if (fgets(buf
, sizeof(buf
), f
) == NULL
) {
1744 PrintAndLog("File reading error.");
1748 if (strlen(buf
) < 32){
1749 if(strlen(buf
) && feof(f
))
1751 PrintAndLog("File content error. Block data must include 32 HEX symbols");
1754 for (i
= 0; i
< 32; i
+= 2)
1755 sscanf(&buf
[i
], "%02x", (unsigned int *)&buf8
[i
/ 2]);
1757 if (blockNum
== 2) flags
= 0;
1758 if (blockNum
== 16 * 4 - 1) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1760 if (mfCSetBlock(blockNum
, buf8
, NULL
, 0, flags
)) {
1761 PrintAndLog("Can't set magic card block: %d", blockNum
);
1766 if (blockNum
>= 16 * 4) break; // magic card type - mifare 1K
1770 if (blockNum
!= 16 * 4 && blockNum
!= 32 * 4 + 8 * 16){
1771 PrintAndLog("File content error. There must be 64 blocks");
1774 PrintAndLog("Loaded from file: %s", filename
);
1779 int CmdHF14AMfCGetBlk(const char *Cmd
) {
1780 uint8_t memBlock
[16];
1781 uint8_t blockNo
= 0;
1783 memset(memBlock
, 0x00, sizeof(memBlock
));
1785 if (strlen(Cmd
) < 1 || param_getchar(Cmd
, 0) == 'h') {
1786 PrintAndLog("Usage: hf mf cgetblk <block number>");
1787 PrintAndLog("sample: hf mf cgetblk 1");
1788 PrintAndLog("Get block data from magic Chinese card (only works with!!!)\n");
1792 blockNo
= param_get8(Cmd
, 0);
1794 PrintAndLog("--block number:%2d ", blockNo
);
1796 res
= mfCGetBlock(blockNo
, memBlock
, CSETBLOCK_SINGLE_OPER
);
1798 PrintAndLog("Can't read block. error=%d", res
);
1802 PrintAndLog("block data:%s", sprint_hex(memBlock
, 16));
1807 int CmdHF14AMfCGetSc(const char *Cmd
) {
1808 uint8_t memBlock
[16];
1809 uint8_t sectorNo
= 0;
1811 memset(memBlock
, 0x00, sizeof(memBlock
));
1813 if (strlen(Cmd
) < 1 || param_getchar(Cmd
, 0) == 'h') {
1814 PrintAndLog("Usage: hf mf cgetsc <sector number>");
1815 PrintAndLog("sample: hf mf cgetsc 0");
1816 PrintAndLog("Get sector data from magic Chinese card (only works with!!!)\n");
1820 sectorNo
= param_get8(Cmd
, 0);
1821 if (sectorNo
> 15) {
1822 PrintAndLog("Sector number must be in [0..15] as in MIFARE classic.");
1826 PrintAndLog("--sector number:%d ", sectorNo
);
1828 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1829 for (i
= 0; i
< 4; i
++) {
1830 if (i
== 1) flags
= 0;
1831 if (i
== 3) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1833 res
= mfCGetBlock(sectorNo
* 4 + i
, memBlock
, flags
);
1835 PrintAndLog("Can't read block. %d error=%d", sectorNo
* 4 + i
, res
);
1839 PrintAndLog("block %3d data:%s", sectorNo
* 4 + i
, sprint_hex(memBlock
, 16));
1845 int CmdHF14AMfCSave(const char *Cmd
) {
1849 char * fnameptr
= filename
;
1850 uint8_t fillFromEmulator
= 0;
1852 int i
, j
, len
, flags
;
1854 memset(filename
, 0, sizeof(filename
));
1855 memset(buf
, 0, sizeof(buf
));
1857 if (param_getchar(Cmd
, 0) == 'h') {
1858 PrintAndLog("It saves `magic Chinese` card dump into the file `filename.eml` or `cardID.eml`");
1859 PrintAndLog("or into emulator memory (option `e`)");
1860 PrintAndLog("Usage: hf mf esave [file name w/o `.eml`][e]");
1861 PrintAndLog(" sample: hf mf esave ");
1862 PrintAndLog(" hf mf esave filename");
1863 PrintAndLog(" hf mf esave e \n");
1867 char ctmp
= param_getchar(Cmd
, 0);
1868 if (ctmp
== 'e' || ctmp
== 'E') fillFromEmulator
= 1;
1870 if (fillFromEmulator
) {
1871 // put into emulator
1872 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1873 for (i
= 0; i
< 16 * 4; i
++) {
1874 if (i
== 1) flags
= 0;
1875 if (i
== 16 * 4 - 1) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1877 if (mfCGetBlock(i
, buf
, flags
)) {
1878 PrintAndLog("Cant get block: %d", i
);
1882 if (mfEmlSetMem(buf
, i
, 1)) {
1883 PrintAndLog("Cant set emul block: %d", i
);
1890 if (len
> 14) len
= 14;
1894 if (mfCGetBlock(0, buf
, CSETBLOCK_SINGLE_OPER
)) {
1895 PrintAndLog("Cant get block: %d", 0);
1898 for (j
= 0; j
< 7; j
++, fnameptr
+= 2)
1899 sprintf(fnameptr
, "%02x", buf
[j
]);
1901 memcpy(filename
, Cmd
, len
);
1905 sprintf(fnameptr
, ".eml");
1908 f
= fopen(filename
, "w+");
1911 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1912 for (i
= 0; i
< 16 * 4; i
++) {
1913 if (i
== 1) flags
= 0;
1914 if (i
== 16 * 4 - 1) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1916 if (mfCGetBlock(i
, buf
, flags
)) {
1917 PrintAndLog("Cant get block: %d", i
);
1920 for (j
= 0; j
< 16; j
++)
1921 fprintf(f
, "%02x", buf
[j
]);
1926 PrintAndLog("Saved to file: %s", filename
);
1933 int CmdHF14AMfSniff(const char *Cmd
){
1935 bool wantLogToFile
= 0;
1936 bool wantDecrypt
= 0;
1937 //bool wantSaveToEml = 0; TODO
1938 bool wantSaveToEmlFile
= 0;
1953 uint8_t * bufPtr
= buf
;
1954 memset(buf
, 0x00, 3000);
1956 if (param_getchar(Cmd
, 0) == 'h') {
1957 PrintAndLog("It continuously gets data from the field and saves it to: log, emulator, emulator file.");
1958 PrintAndLog("You can specify:");
1959 PrintAndLog(" l - save encrypted sequence to logfile `uid.log`");
1960 PrintAndLog(" d - decrypt sequence and put it to log file `uid.log`");
1961 PrintAndLog(" n/a e - decrypt sequence, collect read and write commands and save the result of the sequence to emulator memory");
1962 PrintAndLog(" r - decrypt sequence, collect read and write commands and save the result of the sequence to emulator dump file `uid.eml`");
1963 PrintAndLog("Usage: hf mf sniff [l][d][e][r]");
1964 PrintAndLog(" sample: hf mf sniff l d e");
1968 for (int i
= 0; i
< 4; i
++) {
1969 char ctmp
= param_getchar(Cmd
, i
);
1970 if (ctmp
== 'l' || ctmp
== 'L') wantLogToFile
= true;
1971 if (ctmp
== 'd' || ctmp
== 'D') wantDecrypt
= true;
1972 //if (ctmp == 'e' || ctmp == 'E') wantSaveToEml = true; TODO
1973 if (ctmp
== 'f' || ctmp
== 'F') wantSaveToEmlFile
= true;
1976 printf("-------------------------------------------------------------------------\n");
1977 printf("Executing command. \n");
1978 printf("Press the key on the proxmark3 device to abort both proxmark3 and client.\n");
1979 printf("Press the key on pc keyboard to abort the client.\n");
1980 printf("-------------------------------------------------------------------------\n");
1982 UsbCommand c
= {CMD_MIFARE_SNIFFER
, {0, 0, 0}};
1983 clearCommandBuffer();
1992 printf("\naborted via keyboard!\n");
1997 if (WaitForResponseTimeout(CMD_ACK
,&resp
,2000)) {
1998 res
= resp
.arg
[0] & 0xff;
2002 if (res
== 0) return 0;
2006 memset(buf
, 0x00, 3000);
2008 memcpy(bufPtr
, resp
.d
.asBytes
, len
);
2013 blockLen
= bufPtr
- buf
;
2016 PrintAndLog("received trace len: %d packages: %d", blockLen
, pckNum
);
2018 while (bufPtr
- buf
+ 9 < blockLen
) {
2019 isTag
= bufPtr
[3] & 0x80 ? true:false;
2021 parity
= *((uint32_t *)(bufPtr
));
2025 if ((len
== 14) && (bufPtr
[0] == 0xff) && (bufPtr
[1] == 0xff)) {
2026 memcpy(uid
, bufPtr
+ 2, 7);
2027 memcpy(atqa
, bufPtr
+ 2 + 7, 2);
2028 uid_len
= (atqa
[0] & 0xC0) == 0x40 ? 7 : 4;
2031 PrintAndLog("tag select uid:%s atqa:0x%02x%02x sak:0x%02x",
2032 sprint_hex(uid
+ (7 - uid_len
), uid_len
),
2036 if (wantLogToFile
|| wantDecrypt
) {
2037 FillFileNameByUID(logHexFileName
, uid
+ (7 - uid_len
), ".log", uid_len
);
2038 AddLogCurrentDT(logHexFileName
);
2041 mfTraceInit(uid
, atqa
, sak
, wantSaveToEmlFile
);
2043 PrintAndLog("%s(%d):%s", isTag
? "TAG":"RDR", num
, sprint_hex(bufPtr
, len
));
2045 AddLogHex(logHexFileName
, isTag
? "TAG: ":"RDR: ", bufPtr
, len
);
2047 mfTraceDecode(bufPtr
, len
, parity
, wantSaveToEmlFile
);
2059 // Tries to identify cardsize.
2060 // Returns <num> where num is:
2062 // 0 - MINI (320bytes)
2068 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_CONNECT
, 0, 0}};
2072 WaitForResponse(CMD_ACK
,&resp
);
2074 if(resp
.arg
[0] == 0) {
2075 PrintAndLog("iso14443a card select failed");
2079 iso14a_card_select_t
*card
= (iso14a_card_select_t
*)resp
.d
.asBytes
;
2081 PrintAndLog("Trying to detect card size.");
2085 atqa
= (card
->atqa
[1] & 0xff) << 8;
2086 atqa
+= card
->atqa
[0] & 0xff;
2089 // https://code.google.com/p/libnfc/source/browse/libnfc/target-subr.c
2091 PrintAndLog("found ATAQ: %04X SAK: %02X", atqa
, sak
);
2094 // NXP MIFARE Mini 0.3k
2095 if ( ( (atqa
& 0xff0f) == 0x0004) && (sak
== 0x09) ) return 0;
2097 // MIFARE Classic 1K
2098 if ( ((atqa
& 0xff0f) == 0x0004) && (sak
== 0x08) ) return 1;
2100 // MIFARE Classik 4K
2101 if ( ((atqa
& 0xff0f) == 0x0002) && (sak
== 0x18) ) return 4;
2103 // SmartMX with MIFARE 1K emulation
2104 if ( ((atqa
& 0xf0ff) == 0x0004) ) return 1;
2106 // SmartMX with MIFARE 4K emulation
2107 if ( ((atqa
& 0xf0ff) == 0x0002) ) return 4;
2109 // Infineon MIFARE CLASSIC 1K
2110 if ( ((atqa
& 0xffff) == 0x0004) && (sak
== 0x88) ) return 1;
2112 // MFC 4K emulated by Nokia 6212 Classic
2113 if ( ((atqa
& 0xffff) == 0x0002) && (sak
== 0x38) ) return 4;
2115 // MFC 4K emulated by Nokia 6131 NFC
2116 if ( ((atqa
& 0xffff) == 0x0008) && (sak
== 0x38) ) return 4;
2119 PrintAndLog("BEFOOO 1K %02X", (atqa
& 0xff0f));
2121 // MIFARE Plus (4 Byte UID or 4 Byte RID)
2122 // MIFARE Plus (7 Byte UID)
2124 ((atqa
& 0xffff) == 0x0002) |
2125 ((atqa
& 0xffff) == 0x0004) |
2126 ((atqa
& 0xffff) == 0x0042) |
2127 ((atqa
& 0xffff) == 0x0044)
2154 static command_t CommandTable
[] =
2156 {"help", CmdHelp
, 1, "This help"},
2157 {"dbg", CmdHF14AMfDbg
, 0, "Set default debug mode"},
2158 {"rdbl", CmdHF14AMfRdBl
, 0, "Read MIFARE classic block"},
2159 //{"urdbl", CmdHF14AMfURdBl, 0, "Read MIFARE Ultralight block"},
2160 //{"urdcard", CmdHF14AMfURdCard, 0,"Read MIFARE Ultralight Card"},
2161 //{"uwrbl", CmdHF14AMfUWrBl, 0,"Write MIFARE Ultralight block"},
2162 {"rdsc", CmdHF14AMfRdSc
, 0, "Read MIFARE classic sector"},
2163 {"dump", CmdHF14AMfDump
, 0, "Dump MIFARE classic tag to binary file"},
2164 {"restore", CmdHF14AMfRestore
, 0, "Restore MIFARE classic binary file to BLANK tag"},
2165 {"wrbl", CmdHF14AMfWrBl
, 0, "Write MIFARE classic block"},
2166 {"chk", CmdHF14AMfChk
, 0, "Test block keys"},
2167 {"mifare", CmdHF14AMifare
, 0, "Read parity error messages."},
2168 {"nested", CmdHF14AMfNested
, 0, "Test nested authentication"},
2169 {"sniff", CmdHF14AMfSniff
, 0, "Sniff card-reader communication"},
2170 {"sim", CmdHF14AMf1kSim
, 0, "Simulate MIFARE card"},
2171 {"eclr", CmdHF14AMfEClear
, 0, "Clear simulator memory block"},
2172 {"eget", CmdHF14AMfEGet
, 0, "Get simulator memory block"},
2173 {"eset", CmdHF14AMfESet
, 0, "Set simulator memory block"},
2174 {"eload", CmdHF14AMfELoad
, 0, "Load from file emul dump"},
2175 {"esave", CmdHF14AMfESave
, 0, "Save to file emul dump"},
2176 {"ecfill", CmdHF14AMfECFill
, 0, "Fill simulator memory with help of keys from simulator"},
2177 {"ekeyprn", CmdHF14AMfEKeyPrn
, 0, "Print keys from simulator memory"},
2178 {"csetuid", CmdHF14AMfCSetUID
, 0, "Set UID for magic Chinese card"},
2179 {"csetblk", CmdHF14AMfCSetBlk
, 0, "Write block into magic Chinese card"},
2180 {"cgetblk", CmdHF14AMfCGetBlk
, 0, "Read block from magic Chinese card"},
2181 {"cgetsc", CmdHF14AMfCGetSc
, 0, "Read sector from magic Chinese card"},
2182 {"cload", CmdHF14AMfCLoad
, 0, "Load dump into magic Chinese card"},
2183 {"csave", CmdHF14AMfCSave
, 0, "Save dump from magic Chinese card into file or emulator"},
2184 {NULL
, NULL
, 0, NULL
}
2187 int CmdHFMF(const char *Cmd
)
2190 WaitForResponseTimeout(CMD_ACK
,NULL
,100);
2192 CmdsParse(CommandTable
, Cmd
);
2196 int CmdHelp(const char *Cmd
)
2198 CmdsHelp(CommandTable
);