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;
47 // for the time being. Need better Bigbuf handling.
48 #define TRACE_SIZE 3000
50 uint8_t trace
[TRACE_SIZE
];
51 GetFromBigBuf(trace
, TRACE_SIZE
, 0);
52 WaitForResponse(CMD_ACK
, NULL
);
54 PrintAndLog("Recorded Activity");
56 PrintAndLog("Start = Start of Start Bit, End = End of last modulation. Src = Source of Transfer");
57 PrintAndLog("All times are in carrier periods (1/13.56Mhz)");
59 PrintAndLog(" Start | End | Src | Data");
60 PrintAndLog("-----------|-----------|-----|--------");
62 uint16_t tracepos
= 0;
68 uint32_t first_timestamp
;
69 uint32_t EndOfTransmissionTimestamp
;
73 if(tracepos
>= TRACE_SIZE
) {
77 timestamp
= *((uint32_t *)(trace
+ tracepos
));
79 first_timestamp
= timestamp
;
82 duration
= *((uint16_t *)(trace
+ tracepos
));
84 data_len
= *((uint16_t *)(trace
+ tracepos
));
87 if (data_len
& 0x8000) {
94 parity_len
= (data_len
-1)/8 + 1;
96 if (tracepos
+ data_len
+ parity_len
>= TRACE_SIZE
) {
100 uint8_t *frame
= trace
+ tracepos
;
101 tracepos
+= data_len
;
102 uint8_t *parityBytes
= trace
+ tracepos
;
103 tracepos
+= parity_len
;
105 // Break and stick with current result if buffer was not completely full
106 if (timestamp
== 0x44444444) break;
108 char line
[1000] = "";
110 for (j
= 0; j
< data_len
; j
++) {
111 int oddparity
= 0x01;
115 oddparity
^= (((frame
[j
] & 0xFF) >> k
) & 0x01);
118 uint8_t parityBits
= parityBytes
[j
>>3];
119 if (isResponse
&& (oddparity
!= ((parityBits
>> (7-(j
&0x0007))) & 0x01))) {
120 sprintf(line
+(j
*4), "%02x! ", frame
[j
]);
122 sprintf(line
+(j
*4), "%02x ", frame
[j
]);
129 ComputeCrc14443(CRC_14443_A
, frame
, data_len
-2, &b1
, &b2
);
130 if (b1
!= frame
[data_len
-2] || b2
!= frame
[data_len
-1]) {
131 sprintf(crc
, (isResponse
& (data_len
< 6)) ? "" : " !crc");
137 EndOfTransmissionTimestamp
= timestamp
+ duration
;
139 PrintAndLog(" %9d | %9d | %s | %s %s",
140 (timestamp
- first_timestamp
),
141 (EndOfTransmissionTimestamp
- first_timestamp
),
142 (isResponse
? "Tag" : "Rdr"),
146 bool next_isResponse
= *((uint16_t *)(trace
+ tracepos
+ 6)) & 0x8000;
148 if (ShowWaitCycles
&& !isResponse
&& next_isResponse
) {
149 uint32_t next_timestamp
= *((uint32_t *)(trace
+ tracepos
));
150 if (next_timestamp
!= 0x44444444) {
151 PrintAndLog(" %9d | %9d | %s | fdt (Frame Delay Time): %d",
152 (EndOfTransmissionTimestamp
- first_timestamp
),
153 (next_timestamp
- first_timestamp
),
155 (next_timestamp
- EndOfTransmissionTimestamp
));
164 void iso14a_set_timeout(uint32_t timeout
) {
165 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_SET_TIMEOUT
, 0, timeout
}};
169 int CmdHF14AReader(const char *Cmd
)
171 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_CONNECT
| ISO14A_NO_DISCONNECT
, 0, 0}};
175 WaitForResponse(CMD_ACK
,&resp
);
177 iso14a_card_select_t card
;
178 memcpy(&card
, (iso14a_card_select_t
*)resp
.d
.asBytes
, sizeof(iso14a_card_select_t
));
180 uint64_t select_status
= resp
.arg
[0]; // 0: couldn't read, 1: OK, with ATS, 2: OK, no ATS
182 if(select_status
== 0) {
183 PrintAndLog("iso14443a card select failed");
187 PrintAndLog("ATQA : %02x %02x", card
.atqa
[1], card
.atqa
[0]);
188 PrintAndLog(" UID : %s", sprint_hex(card
.uid
, card
.uidlen
));
189 PrintAndLog(" SAK : %02x [%d]", card
.sak
, resp
.arg
[0]);
192 case 0x00: PrintAndLog("TYPE : NXP MIFARE Ultralight | Ultralight C"); break;
193 case 0x04: PrintAndLog("TYPE : NXP MIFARE (various !DESFire !DESFire EV1)"); break;
194 case 0x08: PrintAndLog("TYPE : NXP MIFARE CLASSIC 1k | Plus 2k SL1"); break;
195 case 0x09: PrintAndLog("TYPE : NXP MIFARE Mini 0.3k"); break;
196 case 0x10: PrintAndLog("TYPE : NXP MIFARE Plus 2k SL2"); break;
197 case 0x11: PrintAndLog("TYPE : NXP MIFARE Plus 4k SL2"); break;
198 case 0x18: PrintAndLog("TYPE : NXP MIFARE Classic 4k | Plus 4k SL1"); break;
199 case 0x20: PrintAndLog("TYPE : NXP MIFARE DESFire 4k | DESFire EV1 2k/4k/8k | Plus 2k/4k SL3 | JCOP 31/41"); break;
200 case 0x24: PrintAndLog("TYPE : NXP MIFARE DESFire | DESFire EV1"); break;
201 case 0x28: PrintAndLog("TYPE : JCOP31 or JCOP41 v2.3.1"); break;
202 case 0x38: PrintAndLog("TYPE : Nokia 6212 or 6131 MIFARE CLASSIC 4K"); break;
203 case 0x88: PrintAndLog("TYPE : Infineon MIFARE CLASSIC 1K"); break;
204 case 0x98: PrintAndLog("TYPE : Gemplus MPCOS"); break;
209 // try to request ATS even if tag claims not to support it
210 if (select_status
== 2) {
211 uint8_t rats
[] = { 0xE0, 0x80 }; // FSDI=8 (FSD=256), CID=0
212 c
.arg
[0] = ISO14A_RAW
| ISO14A_APPEND_CRC
| ISO14A_NO_DISCONNECT
;
215 memcpy(c
.d
.asBytes
, rats
, 2);
217 WaitForResponse(CMD_ACK
,&resp
);
219 memcpy(&card
.ats
, resp
.d
.asBytes
, resp
.arg
[0]);
220 card
.ats_len
= resp
.arg
[0]; // note: ats_len includes CRC Bytes
230 if(card
.ats_len
>= 3) { // a valid ATS consists of at least the length byte (TL) and 2 CRC bytes
231 bool ta1
= 0, tb1
= 0, tc1
= 0;
234 if (select_status
== 2) {
235 PrintAndLog("SAK incorrectly claims that card doesn't support RATS");
237 PrintAndLog(" ATS : %s", sprint_hex(card
.ats
, card
.ats_len
));
238 PrintAndLog(" - TL : length is %d bytes", card
.ats
[0]);
239 if (card
.ats
[0] != card
.ats_len
- 2) {
240 PrintAndLog("ATS may be corrupted. Length of ATS (%d bytes incl. 2 Bytes CRC) doesn't match TL", card
.ats_len
);
243 if (card
.ats
[0] > 1) { // there is a format byte (T0)
244 ta1
= (card
.ats
[1] & 0x10) == 0x10;
245 tb1
= (card
.ats
[1] & 0x20) == 0x20;
246 tc1
= (card
.ats
[1] & 0x40) == 0x40;
247 int16_t fsci
= card
.ats
[1] & 0x0f;
248 PrintAndLog(" - T0 : TA1 is%s present, TB1 is%s present, "
249 "TC1 is%s present, FSCI is %d (FSC = %ld)",
250 (ta1
? "" : " NOT"), (tb1
? "" : " NOT"), (tc1
? "" : " NOT"),
252 fsci
< 5 ? (fsci
- 2) * 8 :
253 fsci
< 8 ? (fsci
- 3) * 32 :
261 dr
[0] = ds
[0] = '\0';
262 if (card
.ats
[pos
] & 0x10) strcat(ds
, "2, ");
263 if (card
.ats
[pos
] & 0x20) strcat(ds
, "4, ");
264 if (card
.ats
[pos
] & 0x40) strcat(ds
, "8, ");
265 if (card
.ats
[pos
] & 0x01) strcat(dr
, "2, ");
266 if (card
.ats
[pos
] & 0x02) strcat(dr
, "4, ");
267 if (card
.ats
[pos
] & 0x04) strcat(dr
, "8, ");
268 if (strlen(ds
) != 0) ds
[strlen(ds
) - 2] = '\0';
269 if (strlen(dr
) != 0) dr
[strlen(dr
) - 2] = '\0';
270 PrintAndLog(" - TA1 : different divisors are%s supported, "
271 "DR: [%s], DS: [%s]",
272 (card
.ats
[pos
] & 0x80 ? " NOT" : ""), dr
, ds
);
276 uint32_t sfgi
= card
.ats
[pos
] & 0x0F;
277 uint32_t fwi
= card
.ats
[pos
] >> 4;
278 PrintAndLog(" - TB1 : SFGI = %d (SFGT = %s%ld/fc), FWI = %d (FWT = %ld/fc)",
280 sfgi
? "" : "(not needed) ",
281 sfgi
? (1 << 12) << sfgi
: 0,
288 PrintAndLog(" - TC1 : NAD is%s supported, CID is%s supported",
289 (card
.ats
[pos
] & 0x01) ? "" : " NOT",
290 (card
.ats
[pos
] & 0x02) ? "" : " NOT");
293 if (card
.ats
[0] > pos
) {
295 if (card
.ats
[0] - pos
>= 7) {
296 if (memcmp(card
.ats
+ pos
, "\xC1\x05\x2F\x2F\x01\xBC\xD6", 7) == 0) {
297 tip
= "-> MIFARE Plus X 2K or 4K";
298 } else if (memcmp(card
.ats
+ pos
, "\xC1\x05\x2F\x2F\x00\x35\xC7", 7) == 0) {
299 tip
= "-> MIFARE Plus S 2K or 4K";
302 PrintAndLog(" - HB : %s%s", sprint_hex(card
.ats
+ pos
, card
.ats
[0] - pos
), tip
);
303 if (card
.ats
[pos
] == 0xC1) {
304 PrintAndLog(" c1 -> Mifare or (multiple) virtual cards of various type");
305 PrintAndLog(" %02x -> Length is %d bytes",
306 card
.ats
[pos
+ 1], card
.ats
[pos
+ 1]);
307 switch (card
.ats
[pos
+ 2] & 0xf0) {
309 PrintAndLog(" 1x -> MIFARE DESFire");
312 PrintAndLog(" 2x -> MIFARE Plus");
315 switch (card
.ats
[pos
+ 2] & 0x0f) {
317 PrintAndLog(" x0 -> <1 kByte");
320 PrintAndLog(" x0 -> 1 kByte");
323 PrintAndLog(" x0 -> 2 kByte");
326 PrintAndLog(" x0 -> 4 kByte");
329 PrintAndLog(" x0 -> 8 kByte");
332 switch (card
.ats
[pos
+ 3] & 0xf0) {
334 PrintAndLog(" 0x -> Engineering sample");
337 PrintAndLog(" 2x -> Released");
340 switch (card
.ats
[pos
+ 3] & 0x0f) {
342 PrintAndLog(" x0 -> Generation 1");
345 PrintAndLog(" x1 -> Generation 2");
348 PrintAndLog(" x2 -> Generation 3");
351 switch (card
.ats
[pos
+ 4] & 0x0f) {
353 PrintAndLog(" x0 -> Only VCSL supported");
356 PrintAndLog(" x1 -> VCS, VCSL, and SVC supported");
359 PrintAndLog(" xE -> no VCS command supported");
365 PrintAndLog("proprietary non iso14443-4 card found, RATS not supported");
368 return select_status
;
371 // Collect ISO14443 Type A UIDs
372 int CmdHF14ACUIDs(const char *Cmd
)
374 // requested number of UIDs
376 // collect at least 1 (e.g. if no parameter was given)
379 PrintAndLog("Collecting %d UIDs", n
);
380 PrintAndLog("Start: %u", time(NULL
));
382 for (int i
= 0; i
< n
; i
++) {
383 // execute anticollision procedure
384 UsbCommand c
= {CMD_READER_ISO_14443a
, {ISO14A_CONNECT
, 0, 0}};
388 WaitForResponse(CMD_ACK
,&resp
);
390 iso14a_card_select_t
*card
= (iso14a_card_select_t
*) resp
.d
.asBytes
;
392 // check if command failed
393 if (resp
.arg
[0] == 0) {
394 PrintAndLog("Card select failed.");
397 for (uint16_t i
= 0; i
< card
->uidlen
; i
++) {
398 sprintf(&uid_string
[2*i
], "%02X", card
->uid
[i
]);
400 PrintAndLog("%s", uid_string
);
403 PrintAndLog("End: %u", time(NULL
));
408 // ## simulate iso14443a tag
409 // ## greg - added ability to specify tag UID
410 int CmdHF14ASim(const char *Cmd
)
412 UsbCommand c
= {CMD_SIMULATE_TAG_ISO_14443a
,{0,0,0}};
414 // Retrieve the tag type
415 uint8_t tagtype
= param_get8ex(Cmd
,0,0,10);
417 // When no argument was given, just print help message
420 PrintAndLog(" Emulating ISO/IEC 14443 type A tag with 4 or 7 byte UID");
422 PrintAndLog(" syntax: hf 14a sim <type> <uid>");
423 PrintAndLog(" types: 1 = MIFARE Classic");
424 PrintAndLog(" 2 = MIFARE Ultralight");
425 PrintAndLog(" 3 = MIFARE DESFIRE");
426 PrintAndLog(" 4 = ISO/IEC 14443-4");
431 // Store the tag type
434 // Retrieve the full 4 or 7 byte long uid
435 uint64_t long_uid
= param_get64ex(Cmd
,1,0,16);
437 // Are we handling the (optional) second part uid?
438 if (long_uid
> 0xffffffff) {
439 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 7 byte UID (%014"llx
")",long_uid
);
440 // Store the second part
441 c
.arg
[2] = (long_uid
& 0xffffffff);
443 // Store the first part, ignore the first byte, it is replaced by cascade byte (0x88)
444 c
.arg
[1] = (long_uid
& 0xffffff);
446 PrintAndLog("Emulating ISO/IEC 14443 type A tag with 4 byte UID (%08x)",long_uid
);
447 // Only store the first part
448 c
.arg
[1] = long_uid
& 0xffffffff;
451 // At lease save the mandatory first part of the UID
452 c.arg[0] = long_uid & 0xffffffff;
455 // At lease save the mandatory first part of the UID
456 c.arg[0] = long_uid & 0xffffffff;
459 PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
464 PrintAndLog("Emulating ISO/IEC 14443-3 type A tag with 4 byte UID");
465 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)};
468 PrintAndLog("Emulating ISO/IEC 14443-4 type A tag with 7 byte UID");
471 PrintAndLog("Error: unkown tag type (%d)",c.arg[0]);
472 PrintAndLog("syntax: hf 14a sim <uid>",c.arg[0]);
473 PrintAndLog(" type1: 4 ",c.arg[0]);
480 unsigned int hi = 0, lo = 0;
482 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
483 hi= (hi << 4) | (lo >> 28);
484 lo= (lo << 4) | (n & 0xf);
487 // 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)};
488 // PrintAndLog("Emulating ISO/IEC 14443 type A tag with UID %01d %08x %08x",c.arg[0],c.arg[1],c.arg[2]);
493 int CmdHF14ASnoop(const char *Cmd
) {
496 if (param_getchar(Cmd
, 0) == 'h') {
497 PrintAndLog("It get data from the field and saves it into command buffer.");
498 PrintAndLog("Buffer accessible from command hf 14a list.");
499 PrintAndLog("Usage: hf 14a snoop [c][r]");
500 PrintAndLog("c - triggered by first data from card");
501 PrintAndLog("r - triggered by first 7-bit request from reader (REQ,WUP,...)");
502 PrintAndLog("sample: hf 14a snoop c r");
506 for (int i
= 0; i
< 2; i
++) {
507 char ctmp
= param_getchar(Cmd
, i
);
508 if (ctmp
== 'c' || ctmp
== 'C') param
|= 0x01;
509 if (ctmp
== 'r' || ctmp
== 'R') param
|= 0x02;
512 UsbCommand c
= {CMD_SNOOP_ISO_14443a
, {param
, 0, 0}};
517 int CmdHF14ACmdRaw(const char *cmd
) {
518 UsbCommand c
= {CMD_READER_ISO_14443a
, {0, 0, 0}};
523 uint8_t active_select
=0;
528 unsigned int datalen
=0, temp
;
531 PrintAndLog("Usage: hf 14a raw [-r] [-c] [-p] [-f] [-b] <number of bits> <0A 0B 0C ... hex>");
532 PrintAndLog(" -r do not read response");
533 PrintAndLog(" -c calculate and append CRC");
534 PrintAndLog(" -p leave the signal field ON after receive");
535 PrintAndLog(" -a active signal field ON without select");
536 PrintAndLog(" -s active signal field ON with select");
537 PrintAndLog(" -b number of bits to send. Useful for send partial byte");
542 while (*cmd
==' ' || *cmd
=='\t') cmd
++;
544 while (cmd
[i
]!='\0') {
545 if (cmd
[i
]==' ' || cmd
[i
]=='\t') { i
++; continue; }
564 sscanf(cmd
+i
+2,"%d",&temp
);
565 numbits
= temp
& 0xFFFF;
567 while(cmd
[i
]!=' ' && cmd
[i
]!='\0') { i
++; }
571 PrintAndLog("Invalid option");
577 if ((cmd
[i
]>='0' && cmd
[i
]<='9') ||
578 (cmd
[i
]>='a' && cmd
[i
]<='f') ||
579 (cmd
[i
]>='A' && cmd
[i
]<='F') ) {
580 buf
[strlen(buf
)+1]=0;
581 buf
[strlen(buf
)]=cmd
[i
];
584 if (strlen(buf
)>=2) {
585 sscanf(buf
,"%x",&temp
);
586 data
[datalen
]=(uint8_t)(temp
& 0xff);
592 PrintAndLog("Invalid char on input");
597 uint8_t first
, second
;
598 ComputeCrc14443(CRC_14443_A
, data
, datalen
, &first
, &second
);
599 data
[datalen
++] = first
;
600 data
[datalen
++] = second
;
603 if(active
|| active_select
)
605 c
.arg
[0] |= ISO14A_CONNECT
;
607 c
.arg
[0] |= ISO14A_NO_SELECT
;
610 c
.arg
[0] |= ISO14A_NO_DISCONNECT
;
612 c
.arg
[0] |= ISO14A_RAW
;
616 memcpy(c
.d
.asBytes
,data
,datalen
);
629 static void waitCmd(uint8_t iSelect
)
635 if (WaitForResponseTimeout(CMD_ACK
,&resp
,1000)) {
636 recv
= resp
.d
.asBytes
;
637 uint8_t iLen
= iSelect
? resp
.arg
[1] : resp
.arg
[0];
638 PrintAndLog("received %i octets",iLen
);
641 hexout
= (char *)malloc(iLen
* 3 + 1);
642 if (hexout
!= NULL
) {
643 for (int i
= 0; i
< iLen
; i
++) { // data in hex
644 sprintf(&hexout
[i
* 3], "%02X ", recv
[i
]);
646 PrintAndLog("%s", hexout
);
649 PrintAndLog("malloc failed your client has low memory?");
652 PrintAndLog("timeout while waiting for reply.");
656 static command_t CommandTable
[] =
658 {"help", CmdHelp
, 1, "This help"},
659 {"list", CmdHF14AList
, 0, "List ISO 14443a history"},
660 {"reader", CmdHF14AReader
, 0, "Act like an ISO14443 Type A reader"},
661 {"cuids", CmdHF14ACUIDs
, 0, "<n> Collect n>0 ISO14443 Type A UIDs in one go"},
662 {"sim", CmdHF14ASim
, 0, "<UID> -- Fake ISO 14443a tag"},
663 {"snoop", CmdHF14ASnoop
, 0, "Eavesdrop ISO 14443 Type A"},
664 {"raw", CmdHF14ACmdRaw
, 0, "Send raw hex data to tag"},
665 {NULL
, NULL
, 0, NULL
}
668 int CmdHF14A(const char *Cmd
) {
670 WaitForResponseTimeout(CMD_ACK
,NULL
,100);
673 CmdsParse(CommandTable
, Cmd
);
677 int CmdHelp(const char *Cmd
)
679 CmdsHelp(CommandTable
);