1 //-----------------------------------------------------------------------------
3 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>, Hagen Fritsch
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // High frequency ISO14443A commands
10 //-----------------------------------------------------------------------------
17 #include "iso14443crc.h"
19 #include "proxmark3.h"
21 #include "cmdparser.h"
27 static int CmdHelp(const char *Cmd
);
28 static void waitCmd(uint8_t iLen
);
30 int CmdHF14AList(const char *Cmd
)
32 bool ShowWaitCycles
= false;
33 char param
= param_getchar(Cmd
, 0);
35 if (param
== 'h' || (param
!= 0 && param
!= 'f')) {
36 PrintAndLog("List data in trace buffer.");
37 PrintAndLog("Usage: hf 14a list [f]");
38 PrintAndLog("f - show frame delay times as well");
39 PrintAndLog("sample: hf 14a list f");
44 ShowWaitCycles
= true;
48 GetFromBigBuf(got
,sizeof(got
),0);
49 WaitForResponse(CMD_ACK
,NULL
);
51 PrintAndLog("Recorded Activity");
53 PrintAndLog("Start = Start of Start Bit, End = End of last modulation. Src = Source of Transfer");
54 PrintAndLog("All times are in carrier periods (1/13.56Mhz)");
56 PrintAndLog(" Start | End | Src | Data");
57 PrintAndLog("-----------|-----------|-----|--------");
60 uint32_t first_timestamp
= 0;
62 uint32_t EndOfTransmissionTimestamp
= 0;
70 timestamp
= *((uint32_t *)(got
+i
));
71 if (timestamp
& 0x80000000) {
72 timestamp
&= 0x7fffffff;
79 first_timestamp
= timestamp
;
82 int parityBits
= *((uint32_t *)(got
+i
+4));
89 if (i
+ len
>= 1900) {
93 uint8_t *frame
= (got
+i
+9);
95 // Break and stick with current result if buffer was not completely full
96 if (frame
[0] == 0x44 && frame
[1] == 0x44 && frame
[2] == 0x44 && frame
[3] == 0x44) break;
101 for (j
= 0; j
< len
; j
++) {
102 int oddparity
= 0x01;
106 oddparity
^= (((frame
[j
] & 0xFF) >> k
) & 0x01);
109 //if((parityBits >> (len - j - 1)) & 0x01) {
110 if (isResponse
&& (oddparity
!= ((parityBits
>> (len
- j
- 1)) & 0x01))) {
111 sprintf(line
+(j
*4), "%02x! ", frame
[j
]);
113 sprintf(line
+(j
*4), "%02x ", frame
[j
]);
117 if (ShowWaitCycles
) {
118 uint32_t next_timestamp
= (*((uint32_t *)(got
+i
+9))) & 0x7fffffff;
119 sprintf(line
, "fdt (Frame Delay Time): %d", (next_timestamp
- timestamp
));
127 for (j
= 0; j
< (len
- 1); j
++) {
128 // gives problems... search for the reason..
129 /*if(frame[j] == 0xAA) {
132 crc = "[1] Two drops close after each other";
135 crc = "[2] Potential SOC with a drop in second half of bitperiod";
138 crc = "[3] Segment Z after segment X is not possible";
141 crc = "[4] Parity bit of a fully received byte was wrong";
144 crc = "[?] Unknown error";
151 if (strlen(crc
)==0) {
152 ComputeCrc14443(CRC_14443_A
, frame
, len
-2, &b1
, &b2
);
153 if (b1
!= frame
[len
-2] || b2
!= frame
[len
-1]) {
154 crc
= (isResponse
& (len
< 6)) ? "" : " !crc";
165 EndOfTransmissionTimestamp
= (*((uint32_t *)(got
+i
))) & 0x7fffffff;
167 if (!ShowWaitCycles
) i
+= 9;
169 PrintAndLog(" %9d | %9d | %s | %s %s",
170 (timestamp
- first_timestamp
),
171 (EndOfTransmissionTimestamp
- first_timestamp
),
172 (len
?(isResponse
? "Tag" : "Rdr"):" "),
179 void iso14a_set_timeout(uint32_t timeout
) {
180 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_SET_TIMEOUT
, 0, timeout
}};
184 int CmdHF14AReader(const char *Cmd
)
186 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_CONNECT
| ISO14A_NO_DISCONNECT
, 0, 0}};
190 WaitForResponse(CMD_ACK
,&resp
);
192 iso14a_card_select_t card
;
193 memcpy(&card
, (iso14a_card_select_t
*)resp
.d
.asBytes
, sizeof(iso14a_card_select_t
));
195 uint64_t select_status
= resp
.arg
[0]; // 0: couldn't read, 1: OK, with ATS, 2: OK, no ATS
197 if(select_status
== 0) {
198 PrintAndLog("iso14443a card select failed");
202 PrintAndLog("ATQA : %02x %02x", card
.atqa
[1], card
.atqa
[0]);
203 PrintAndLog(" UID : %s", sprint_hex(card
.uid
, card
.uidlen
));
204 PrintAndLog(" SAK : %02x [%d]", card
.sak
, resp
.arg
[0]);
207 case 0x00: PrintAndLog("TYPE : NXP MIFARE Ultralight | Ultralight C"); break;
208 case 0x04: PrintAndLog("TYPE : NXP MIFARE (various !DESFire !DESFire EV1)"); break;
209 case 0x08: PrintAndLog("TYPE : NXP MIFARE CLASSIC 1k | Plus 2k SL1"); break;
210 case 0x09: PrintAndLog("TYPE : NXP MIFARE Mini 0.3k"); break;
211 case 0x10: PrintAndLog("TYPE : NXP MIFARE Plus 2k SL2"); break;
212 case 0x11: PrintAndLog("TYPE : NXP MIFARE Plus 4k SL2"); break;
213 case 0x18: PrintAndLog("TYPE : NXP MIFARE Classic 4k | Plus 4k SL1"); break;
214 case 0x20: PrintAndLog("TYPE : NXP MIFARE DESFire 4k | DESFire EV1 2k/4k/8k | Plus 2k/4k SL3 | JCOP 31/41"); break;
215 case 0x24: PrintAndLog("TYPE : NXP MIFARE DESFire | DESFire EV1"); break;
216 case 0x28: PrintAndLog("TYPE : JCOP31 or JCOP41 v2.3.1"); break;
217 case 0x38: PrintAndLog("TYPE : Nokia 6212 or 6131 MIFARE CLASSIC 4K"); break;
218 case 0x88: PrintAndLog("TYPE : Infineon MIFARE CLASSIC 1K"); break;
219 case 0x98: PrintAndLog("TYPE : Gemplus MPCOS"); break;
224 // try to request ATS even if tag claims not to support it
225 if (select_status
== 2) {
226 uint8_t rats
[] = { 0xE0, 0x80 }; // FSDI=8 (FSD=256), CID=0
227 c
.arg
[0] = ISO14A_RAW
| ISO14A_APPEND_CRC
| ISO14A_NO_DISCONNECT
;
230 memcpy(c
.d
.asBytes
, rats
, 2);
232 WaitForResponse(CMD_ACK
,&resp
);
234 memcpy(&card
.ats
, resp
.d
.asBytes
, resp
.arg
[0]);
235 card
.ats_len
= resp
.arg
[0]; // note: ats_len includes CRC Bytes
245 if(card
.ats_len
>= 3) { // a valid ATS consists of at least the length byte (TL) and 2 CRC bytes
246 bool ta1
= 0, tb1
= 0, tc1
= 0;
249 if (select_status
== 2) {
250 PrintAndLog("SAK incorrectly claims that card doesn't support RATS");
252 PrintAndLog(" ATS : %s", sprint_hex(card
.ats
, card
.ats_len
));
253 PrintAndLog(" - TL : length is %d bytes", card
.ats
[0]);
254 if (card
.ats
[0] != card
.ats_len
- 2) {
255 PrintAndLog("ATS may be corrupted. Length of ATS (%d bytes incl. 2 Bytes CRC) doesn't match TL", card
.ats_len
);
258 if (card
.ats
[0] > 1) { // there is a format byte (T0)
259 ta1
= (card
.ats
[1] & 0x10) == 0x10;
260 tb1
= (card
.ats
[1] & 0x20) == 0x20;
261 tc1
= (card
.ats
[1] & 0x40) == 0x40;
262 int16_t fsci
= card
.ats
[1] & 0x0f;
263 PrintAndLog(" - T0 : TA1 is%s present, TB1 is%s present, "
264 "TC1 is%s present, FSCI is %d (FSC = %ld)",
265 (ta1
? "" : " NOT"), (tb1
? "" : " NOT"), (tc1
? "" : " NOT"),
267 fsci
< 5 ? (fsci
- 2) * 8 :
268 fsci
< 8 ? (fsci
- 3) * 32 :
276 dr
[0] = ds
[0] = '\0';
277 if (card
.ats
[pos
] & 0x10) strcat(ds
, "2, ");
278 if (card
.ats
[pos
] & 0x20) strcat(ds
, "4, ");
279 if (card
.ats
[pos
] & 0x40) strcat(ds
, "8, ");
280 if (card
.ats
[pos
] & 0x01) strcat(dr
, "2, ");
281 if (card
.ats
[pos
] & 0x02) strcat(dr
, "4, ");
282 if (card
.ats
[pos
] & 0x04) strcat(dr
, "8, ");
283 if (strlen(ds
) != 0) ds
[strlen(ds
) - 2] = '\0';
284 if (strlen(dr
) != 0) dr
[strlen(dr
) - 2] = '\0';
285 PrintAndLog(" - TA1 : different divisors are%s supported, "
286 "DR: [%s], DS: [%s]",
287 (card
.ats
[pos
] & 0x80 ? " NOT" : ""), dr
, ds
);
291 uint32_t sfgi
= card
.ats
[pos
] & 0x0F;
292 uint32_t fwi
= card
.ats
[pos
] >> 4;
293 PrintAndLog(" - TB1 : SFGI = %d (SFGT = %s%ld/fc), FWI = %d (FWT = %ld/fc)",
295 sfgi
? "" : "(not needed) ",
296 sfgi
? (1 << 12) << sfgi
: 0,
303 PrintAndLog(" - TC1 : NAD is%s supported, CID is%s supported",
304 (card
.ats
[pos
] & 0x01) ? "" : " NOT",
305 (card
.ats
[pos
] & 0x02) ? "" : " NOT");
308 if (card
.ats
[0] > pos
) {
310 if (card
.ats
[0] - pos
>= 7) {
311 if (memcmp(card
.ats
+ pos
, "\xC1\x05\x2F\x2F\x01\xBC\xD6", 7) == 0) {
312 tip
= "-> MIFARE Plus X 2K or 4K";
313 } else if (memcmp(card
.ats
+ pos
, "\xC1\x05\x2F\x2F\x00\x35\xC7", 7) == 0) {
314 tip
= "-> MIFARE Plus S 2K or 4K";
317 PrintAndLog(" - HB : %s%s", sprint_hex(card
.ats
+ pos
, card
.ats
[0] - pos
), tip
);
318 if (card
.ats
[pos
] == 0xC1) {
319 PrintAndLog(" c1 -> Mifare or (multiple) virtual cards of various type");
320 PrintAndLog(" %02x -> Length is %d bytes",
321 card
.ats
[pos
+ 1], card
.ats
[pos
+ 1]);
322 switch (card
.ats
[pos
+ 2] & 0xf0) {
324 PrintAndLog(" 1x -> MIFARE DESFire");
327 PrintAndLog(" 2x -> MIFARE Plus");
330 switch (card
.ats
[pos
+ 2] & 0x0f) {
332 PrintAndLog(" x0 -> <1 kByte");
335 PrintAndLog(" x0 -> 1 kByte");
338 PrintAndLog(" x0 -> 2 kByte");
341 PrintAndLog(" x0 -> 4 kByte");
344 PrintAndLog(" x0 -> 8 kByte");
347 switch (card
.ats
[pos
+ 3] & 0xf0) {
349 PrintAndLog(" 0x -> Engineering sample");
352 PrintAndLog(" 2x -> Released");
355 switch (card
.ats
[pos
+ 3] & 0x0f) {
357 PrintAndLog(" x0 -> Generation 1");
360 PrintAndLog(" x1 -> Generation 2");
363 PrintAndLog(" x2 -> Generation 3");
366 switch (card
.ats
[pos
+ 4] & 0x0f) {
368 PrintAndLog(" x0 -> Only VCSL supported");
371 PrintAndLog(" x1 -> VCS, VCSL, and SVC supported");
374 PrintAndLog(" xE -> no VCS command supported");
380 PrintAndLog("proprietary non iso14443-4 card found, RATS not supported");
383 return select_status
;
386 // Collect ISO14443 Type A UIDs
387 int CmdHF14ACUIDs(const char *Cmd
)
389 // requested number of UIDs
391 // collect at least 1 (e.g. if no parameter was given)
394 PrintAndLog("Collecting %d UIDs", n
);
395 PrintAndLog("Start: %u", time(NULL
));
397 for (int i
= 0; i
< n
; i
++) {
398 // execute anticollision procedure
399 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_CONNECT
, 0, 0}};
403 WaitForResponse(CMD_ACK
,&resp
);
405 iso14a_card_select_t
*card
= (iso14a_card_select_t
*) resp
.d
.asBytes
;
407 // check if command failed
408 if (resp
.arg
[0] == 0) {
409 PrintAndLog("Card select failed.");
412 for (uint16_t i
= 0; i
< card
->uidlen
; i
++) {
413 sprintf(&uid_string
[2*i
], "%02X", card
->uid
[i
]);
415 PrintAndLog("%s", uid_string
);
418 PrintAndLog("End: %u", time(NULL
));
423 // ## simulate iso14443a tag
424 // ## greg - added ability to specify tag UID
425 int CmdHF14ASim(const char *Cmd
)
427 UsbCommand c
= {CMD_SIMULATE_TAG_ISO_14443a
,{0,0,0}};
429 // Retrieve the tag type
430 uint8_t tagtype
= param_get8ex(Cmd
,0,0,10);
432 // When no argument was given, just print help message
435 PrintAndLog(" Emulating ISO/IEC 14443 type A tag with 4 or 7 byte UID");
437 PrintAndLog(" syntax: hf 14a sim <type> <uid>");
438 PrintAndLog(" types: 1 = MIFARE Classic");
439 PrintAndLog(" 2 = MIFARE Ultralight");
440 PrintAndLog(" 3 = MIFARE DESFIRE");
441 PrintAndLog(" 4 = ISO/IEC 14443-4");
446 // Store the tag type
449 // Retrieve the full 4 or 7 byte long uid
450 uint64_t long_uid
= param_get64ex(Cmd
,1,0,16);
452 // Are we handling the (optional) second part uid?
453 if (long_uid
> 0xffffffff) {
454 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 7 byte UID (%014"llx
")",long_uid
);
455 // Store the second part
456 c
.arg
[2] = (long_uid
& 0xffffffff);
458 // Store the first part, ignore the first byte, it is replaced by cascade byte (0x88)
459 c
.arg
[1] = (long_uid
& 0xffffff);
461 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 4 byte UID (%08x)",long_uid
);
462 // Only store the first part
463 c
.arg
[1] = long_uid
& 0xffffffff;
466 // At lease save the mandatory first part of the UID
467 c.arg[0] = long_uid & 0xffffffff;
470 // At lease save the mandatory first part of the UID
471 c.arg[0] = long_uid & 0xffffffff;
474 PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
479 PrintAndLog("Emulating ISO/IEC 14443-3 type A tag with 4 byte UID");
480 UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,param_get32ex(Cmd,0,0,10),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16)};
483 PrintAndLog("Emulating ISO/IEC 14443-4 type A tag with 7 byte UID");
486 PrintAndLog("Error: unkown tag type (%d)",c.arg[0]);
487 PrintAndLog("syntax: hf 14a sim <uid>",c.arg[0]);
488 PrintAndLog(" type1: 4 ",c.arg[0]);
495 unsigned int hi = 0, lo = 0;
497 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
498 hi= (hi << 4) | (lo >> 28);
499 lo= (lo << 4) | (n & 0xf);
502 // UsbCommand c = {CMD_SIMULATE_TAG_ISO_14443a,param_get32ex(Cmd,0,0,10),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16)};
503 // PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
508 int CmdHF14ASnoop(const char *Cmd
) {
511 if (param_getchar(Cmd
, 0) == 'h') {
512 PrintAndLog("It get data from the field and saves it into command buffer.");
513 PrintAndLog("Buffer accessible from command hf 14a list.");
514 PrintAndLog("Usage: hf 14a snoop [c][r]");
515 PrintAndLog("c - triggered by first data from card");
516 PrintAndLog("r - triggered by first 7-bit request from reader (REQ,WUP,...)");
517 PrintAndLog("sample: hf 14a snoop c r");
521 for (int i
= 0; i
< 2; i
++) {
522 char ctmp
= param_getchar(Cmd
, i
);
523 if (ctmp
== 'c' || ctmp
== 'C') param
|= 0x01;
524 if (ctmp
== 'r' || ctmp
== 'R') param
|= 0x02;
527 UsbCommand c
= {CMD_SNOOP_ISO_14443a
, {param
, 0, 0}};
532 int CmdHF14ACmdRaw(const char *cmd
) {
533 UsbCommand c
= {CMD_READER_ISO_14443a
, {0, 0, 0}};
538 uint8_t active_select
=0;
543 unsigned int datalen
=0, temp
;
546 PrintAndLog("Usage: hf 14a raw [-r] [-c] [-p] [-f] [-b] <number of bits> <0A 0B 0C ... hex>");
547 PrintAndLog(" -r do not read response");
548 PrintAndLog(" -c calculate and append CRC");
549 PrintAndLog(" -p leave the signal field ON after receive");
550 PrintAndLog(" -a active signal field ON without select");
551 PrintAndLog(" -s active signal field ON with select");
552 PrintAndLog(" -b number of bits to send. Useful for send partial byte");
557 while (*cmd
==' ' || *cmd
=='\t') cmd
++;
559 while (cmd
[i
]!='\0') {
560 if (cmd
[i
]==' ' || cmd
[i
]=='\t') { i
++; continue; }
579 sscanf(cmd
+i
+2,"%d",&temp
);
580 numbits
= temp
& 0xFFFF;
582 while(cmd
[i
]!=' ' && cmd
[i
]!='\0') { i
++; }
586 PrintAndLog("Invalid option");
592 if ((cmd
[i
]>='0' && cmd
[i
]<='9') ||
593 (cmd
[i
]>='a' && cmd
[i
]<='f') ||
594 (cmd
[i
]>='A' && cmd
[i
]<='F') ) {
595 buf
[strlen(buf
)+1]=0;
596 buf
[strlen(buf
)]=cmd
[i
];
599 if (strlen(buf
)>=2) {
600 sscanf(buf
,"%x",&temp
);
601 data
[datalen
]=(uint8_t)(temp
& 0xff);
607 PrintAndLog("Invalid char on input");
612 uint8_t first
, second
;
613 ComputeCrc14443(CRC_14443_A
, data
, datalen
, &first
, &second
);
614 data
[datalen
++] = first
;
615 data
[datalen
++] = second
;
618 if(active
|| active_select
)
620 c
.arg
[0] |= ISO14A_CONNECT
;
622 c
.arg
[0] |= ISO14A_NO_SELECT
;
625 c
.arg
[0] |= ISO14A_NO_DISCONNECT
;
627 c
.arg
[0] |= ISO14A_RAW
;
631 memcpy(c
.d
.asBytes
,data
,datalen
);
644 static void waitCmd(uint8_t iSelect
)
650 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1000)) {
651 recv
= resp
.d
.asBytes
;
652 uint8_t iLen
= iSelect
? resp
.arg
[1] : resp
.arg
[0];
653 PrintAndLog("received %i octets",iLen
);
656 hexout
= (char *)malloc(iLen
* 3 + 1);
657 if (hexout
!= NULL
) {
658 for (int i
= 0; i
< iLen
; i
++) { // data in hex
659 sprintf(&hexout
[i
* 3], "%02X ", recv
[i
]);
661 PrintAndLog("%s", hexout
);
664 PrintAndLog("malloc failed your client has low memory?");
667 PrintAndLog("timeout while waiting for reply.");
671 static command_t CommandTable
[] =
673 {"help", CmdHelp
, 1, "This help"},
674 {"list", CmdHF14AList
, 0, "List ISO 14443a history"},
675 {"reader", CmdHF14AReader
, 0, "Act like an ISO14443 Type A reader"},
676 {"cuids", CmdHF14ACUIDs
, 0, "<n> Collect n>0 ISO14443 Type A UIDs in one go"},
677 {"sim", CmdHF14ASim
, 0, "<UID> -- Fake ISO 14443a tag"},
678 {"snoop", CmdHF14ASnoop
, 0, "Eavesdrop ISO 14443 Type A"},
679 {"raw", CmdHF14ACmdRaw
, 0, "Send raw hex data to tag"},
680 {NULL
, NULL
, 0, NULL
}
683 int CmdHF14A(const char *Cmd
) {
685 WaitForResponseTimeout(CMD_ACK
,NULL
,100);
688 CmdsParse(CommandTable
, Cmd
);
692 int CmdHelp(const char *Cmd
)
694 CmdsHelp(CommandTable
);