1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
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 ISO14443B commands
9 //-----------------------------------------------------------------------------
16 #include "iso14443crc.h"
17 #include "proxmark3.h"
22 #include "cmdparser.h"
27 static int CmdHelp(const char *Cmd
);
29 int CmdHF14BList(const char *Cmd
)
31 PrintAndLog("Deprecated command, use 'hf list 14b' instead");
36 int CmdHF14BSim(const char *Cmd
)
38 UsbCommand c
={CMD_SIMULATE_TAG_ISO_14443B
};
44 int CmdHF14BSnoop(const char *Cmd
)
46 UsbCommand c
= {CMD_SNOOP_ISO_14443B
};
52 /* New command to read the contents of a SRI512 tag
53 * SRI512 tags are ISO14443-B modulated memory tags,
54 * this command just dumps the contents of the memory
56 int CmdSri512Read(const char *Cmd
)
58 UsbCommand c
= {CMD_READ_SRI512_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
64 /* New command to read the contents of a SRIX4K tag
65 * SRIX4K tags are ISO14443-B modulated memory tags,
66 * this command just dumps the contents of the memory/
68 int CmdSrix4kRead(const char *Cmd
)
70 UsbCommand c
= {CMD_READ_SRIX4K_TAG
, {strtol(Cmd
, NULL
, 0), 0, 0}};
78 UsbCommand c
= {CMD_ISO_14443B_COMMAND
, {0, 0, 0}};
81 if (!WaitForResponseTimeout(CMD_ACK
,&resp
,1000)) {
87 int HF14BCmdRaw(bool reply
, bool *crc
, bool power
, uint8_t *data
, uint8_t *datalen
, bool verbose
){
89 UsbCommand c
= {CMD_ISO_14443B_COMMAND
, {0, 0, 0}}; // len,recv,power
92 uint8_t first
, second
;
93 ComputeCrc14443(CRC_14443_B
, data
, *datalen
, &first
, &second
);
94 data
[*datalen
] = first
;
95 data
[*datalen
+ 1] = second
;
102 memcpy(c
.d
.asBytes
,data
,*datalen
);
103 clearCommandBuffer();
106 if (!reply
) return 1;
108 if (!WaitForResponseTimeout(CMD_ACK
,&resp
,1000)) {
109 if (verbose
) PrintAndLog("timeout while waiting for reply.");
112 *datalen
= resp
.arg
[0];
113 if (verbose
) PrintAndLog("received %u octets", *datalen
);
114 if(*datalen
<2) return 0;
116 memcpy(data
, resp
.d
.asBytes
, *datalen
);
117 if (verbose
) PrintAndLog("%s", sprint_hex(data
, *datalen
));
119 uint8_t first
, second
;
120 ComputeCrc14443(CRC_14443_B
, data
, *datalen
-2, &first
, &second
);
121 if(data
[*datalen
-2] == first
&& data
[*datalen
-1] == second
) {
122 if (verbose
) PrintAndLog("CRC OK");
125 if (verbose
) PrintAndLog("CRC failed");
131 int CmdHF14BCmdRaw (const char *Cmd
) {
138 uint8_t data
[100] = {0x00};
143 PrintAndLog("Usage: hf 14b raw [-r] [-c] [-p] [-s || -ss] <0A 0B 0C ... hex>");
144 PrintAndLog(" -r do not read response");
145 PrintAndLog(" -c calculate and append CRC");
146 PrintAndLog(" -p leave the field on after receive");
147 PrintAndLog(" -s active signal field ON with select");
148 PrintAndLog(" -ss active signal field ON with select for SRx ST Microelectronics tags");
153 while (*Cmd
==' ' || *Cmd
=='\t') Cmd
++;
155 while (Cmd
[i
]!='\0') {
156 if (Cmd
[i
]==' ' || Cmd
[i
]=='\t') { i
++; continue; }
174 if (Cmd
[i
+2]=='s' || Cmd
[i
+2]=='S') {
180 PrintAndLog("Invalid option");
186 if ((Cmd
[i
]>='0' && Cmd
[i
]<='9') ||
187 (Cmd
[i
]>='a' && Cmd
[i
]<='f') ||
188 (Cmd
[i
]>='A' && Cmd
[i
]<='F') ) {
189 buf
[strlen(buf
)+1]=0;
190 buf
[strlen(buf
)]=Cmd
[i
];
193 if (strlen(buf
)>=2) {
194 sscanf(buf
,"%x",&temp
);
195 data
[datalen
++]=(uint8_t)(temp
& 0xff);
200 PrintAndLog("Invalid char on input");
205 PrintAndLog("Missing data input");
209 if (select
){ //auto select 14b tag
227 if (HF14BCmdRaw(true, &crc2
, true, cmd2
, &cmdLen
, false)==0) return rawClose();
229 if ( SRx
&& (cmdLen
!= 3 || !crc2
) ) return rawClose();
230 else if (cmd2
[0] != 0x50 || cmdLen
!= 14 || !crc2
) return rawClose();
242 // UID from cmd2[1 - 4]
250 if (HF14BCmdRaw(true, &crc2
, true, cmd2
, &cmdLen
, false)==0) return rawClose();
252 if (cmdLen
!= 3 || !crc2
) return rawClose();
253 if (SRx
&& cmd2
[0] != chipID
) return rawClose();
255 return HF14BCmdRaw(reply
, &crc
, power
, data
, &datalen
, true);
258 // print full atqb info
259 static void print_atqb_resp(uint8_t *data
){
260 //PrintAndLog (" UID: %s", sprint_hex(data+1,4));
261 PrintAndLog (" App Data: %s", sprint_hex(data
+5,4));
262 PrintAndLog (" Protocol: %s", sprint_hex(data
+9,3));
263 uint8_t BitRate
= data
[9];
265 PrintAndLog (" Bit Rate: 106 kbit/s only PICC <-> PCD");
267 PrintAndLog (" Bit Rate: 212 kbit/s PICC -> PCD supported");
269 PrintAndLog (" Bit Rate: 424 kbit/s PICC -> PCD supported");
271 PrintAndLog (" Bit Rate: 847 kbit/s PICC -> PCD supported");
273 PrintAndLog (" Bit Rate: 212 kbit/s PICC <- PCD supported");
275 PrintAndLog (" Bit Rate: 424 kbit/s PICC <- PCD supported");
277 PrintAndLog (" Bit Rate: 847 kbit/s PICC <- PCD supported");
279 PrintAndLog (" Same bit rate <-> required");
281 uint16_t maxFrame
= data
[10]>>4;
283 maxFrame
= 8*maxFrame
+ 16;
284 else if (maxFrame
== 5)
286 else if (maxFrame
== 6)
288 else if (maxFrame
== 7)
290 else if (maxFrame
== 8)
295 PrintAndLog ("Max Frame Size: %u%s",maxFrame
, (maxFrame
== 257) ? "+ RFU" : "");
297 uint8_t protocolT
= data
[10] & 0xF;
298 PrintAndLog (" Protocol Type: Protocol is %scompliant with ISO/IEC 14443-4",(protocolT
) ? "" : "not " );
299 PrintAndLog ("Frame Wait Int: %u", data
[11]>>4);
300 PrintAndLog (" App Data Code: Application is %s",(data
[11]&4) ? "Standard" : "Proprietary");
301 PrintAndLog (" Frame Options: NAD is %ssupported",(data
[11]&2) ? "" : "not ");
302 PrintAndLog (" Frame Options: CID is %ssupported",(data
[11]&1) ? "" : "not ");
303 PrintAndLog ("Max Buf Length: %u (MBLI) %s",data
[14]>>4, (data
[14] & 0xF0) ? "" : "not supported");
308 // get SRx chip model (from UID) // from ST Microelectronics
309 char *get_ST_Chip_Model(uint8_t data
){
310 static char model
[20];
311 char *retStr
= model
;
312 memset(model
,0, sizeof(model
));
315 case 0x0: sprintf(retStr
, "SRIX4K (Special)"); break;
316 case 0x2: sprintf(retStr
, "SR176"); break;
317 case 0x3: sprintf(retStr
, "SRIX4K"); break;
318 case 0x4: sprintf(retStr
, "SRIX512"); break;
319 case 0x6: sprintf(retStr
, "SRI512"); break;
320 case 0x7: sprintf(retStr
, "SRI4K"); break;
321 case 0xC: sprintf(retStr
, "SRT512"); break;
322 default : sprintf(retStr
, "Unknown"); break;
327 int print_ST_Lock_info(uint8_t model
){
328 //assume connection open and tag selected...
329 uint8_t data
[16] = {0x00};
336 if (model
== 0x2) { //SR176 has special command:
345 if (HF14BCmdRaw(true, &crc
, true, data
, &datalen
, false)==0) return rawClose();
347 if (datalen
!= resplen
|| !crc
) return rawClose();
349 PrintAndLog("Chip Write Protection Bits:");
350 // now interpret the data
352 case 0x0: //fall through (SRIX4K special)
353 case 0x3: //fall through (SRIx4K)
357 PrintAndLog(" raw: %s",printBits(1,data
+3));
358 PrintAndLog(" 07/08:%slocked", (data
[3] & 1) ? " not " : " " );
359 for (uint8_t i
= 1; i
<8; i
++){
360 PrintAndLog(" %02u:%slocked", blk1
, (data
[3] & (1 << i
)) ? " not " : " " );
364 case 0x4: //fall through (SRIX512)
365 case 0x6: //fall through (SRI512)
366 case 0xC: // (SRT512)
367 //need data[2] and data[3]
369 PrintAndLog(" raw: %s",printBits(2,data
+2));
370 for (uint8_t b
=2; b
<4; b
++){
371 for (uint8_t i
=0; i
<8; i
++){
372 PrintAndLog(" %02u:%slocked", blk1
, (data
[b
] & (1 << i
)) ? " not " : " " );
380 PrintAndLog(" raw: %s",printBits(1,data
+2));
381 for (uint8_t i
= 0; i
<8; i
++){
382 PrintAndLog(" %02u/%02u:%slocked", blk1
, blk1
+1, (data
[2] & (1 << i
)) ? " " : " not " );
392 // print UID info from SRx chips (ST Microelectronics)
393 static void print_st_general_info(uint8_t *data
){
394 //uid = first 8 bytes in data
395 PrintAndLog(" UID: %s", sprint_hex(SwapEndian64(data
,8,8),8));
396 PrintAndLog(" MFG: %02X, %s", data
[6], getTagInfo(data
[6]));
397 PrintAndLog(" Chip: %02X, %s", data
[5]>>2, get_ST_Chip_Model(data
[5]>>2));
401 // 14b get and print UID only (general info)
402 int HF14BStdReader(uint8_t *data
, uint8_t *datalen
){
403 //05 00 00 = find one tag in field
404 //1d xx xx xx xx 00 08 01 00 = attrib xx=UID (resp 10 [f9 e0])
405 //a3 = ? (resp 03 [e2 c2])
406 //02 = ? (resp 02 [6a d3])
407 // 022b (resp 02 67 00 [29 5b])
408 // 0200a40400 (resp 02 67 00 [29 5b])
409 // 0200a4040c07a0000002480300 (resp 02 67 00 [29 5b])
410 // 0200a4040c07a0000002480200 (resp 02 67 00 [29 5b])
411 // 0200a4040006a0000000010100 (resp 02 6a 82 [4b 4c])
412 // 0200a4040c09d27600002545500200 (resp 02 67 00 [29 5b])
413 // 0200a404000cd2760001354b414e4d30310000 (resp 02 6a 82 [4b 4c])
414 // 0200a404000ca000000063504b43532d313500 (resp 02 6a 82 [4b 4c])
415 // 0200a4040010a000000018300301000000000000000000 (resp 02 6a 82 [4b 4c])
416 //03 = ? (resp 03 [e3 c2])
417 //c2 = ? (resp c2 [66 15])
418 //b2 = ? (resp a3 [e9 67])
419 //a2 = ? (resp 02 [6a d3])
427 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)==0) return rawClose();
429 if (data
[0] != 0x50 || *datalen
!= 14 || !crc
) return rawClose();
431 PrintAndLog ("\n14443-3b tag found:");
432 PrintAndLog (" UID: %s", sprint_hex(data
+1,4));
439 // UID from data[1 - 4]
451 if (HF14BCmdRaw(true, &crc2
, true, cmd2
, &cmdLen
, false)==0) return rawClose();
453 if (cmdLen
!= 3 || !crc2
) return rawClose();
454 // add attrib responce to data
460 // 14b get and print Full Info (as much as we know)
461 int HF14BStdInfo(uint8_t *data
, uint8_t *datalen
){
462 if (!HF14BStdReader(data
,datalen
)) return 0;
465 print_atqb_resp(data
);
471 // SRx get and print general info about SRx chip from UID
472 int HF14B_ST_Reader(uint8_t *data
, uint8_t *datalen
, bool closeCon
){
480 // verbose on for now for testing - turn off when functional
481 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)==0) return rawClose();
483 if (*datalen
!= 3 || !crc
) return rawClose();
485 uint8_t chipID
= data
[0];
492 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)==0) return rawClose();
494 if (*datalen
!= 3 || !crc
|| data
[0] != chipID
) return rawClose();
501 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)==0) return rawClose();
503 if (*datalen
!= 10 || !crc
) return rawClose();
506 if (closeCon
) rawClose();
508 PrintAndLog("\n14443-3b ST tag found:");
509 print_st_general_info(data
);
513 // SRx get and print full info (needs more info...)
514 int HF14B_ST_Info(uint8_t *data
, uint8_t *datalen
){
515 if (!HF14B_ST_Reader(data
, datalen
, false)) return 0;
517 //add locking bit information here.
518 if (print_ST_Lock_info(data
[5]>>2))
524 // test for other 14b type tags (mimic another reader - don't have tags to identify)
525 int HF14B_Other_Reader(uint8_t *data
, uint8_t *datalen
){
534 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)!=0) {
535 if (*datalen
> 2 || !crc
) {
536 PrintAndLog ("\n14443-3b tag found:");
537 PrintAndLog ("Unknown tag type answered to a 0x000b3f80 command ans:");
538 PrintAndLog ("%s",sprint_hex(data
,*datalen
));
548 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)!=0) {
550 PrintAndLog ("\n14443-3b tag found:");
551 PrintAndLog ("Unknown tag type answered to a 0x0A command ans:");
552 PrintAndLog ("%s",sprint_hex(data
,*datalen
));
562 if (HF14BCmdRaw(true, &crc
, true, data
, datalen
, false)!=0) {
564 PrintAndLog ("\n14443-3b tag found:");
565 PrintAndLog ("Unknown tag type answered to a 0x0C command ans:");
566 PrintAndLog ("%s",sprint_hex(data
,*datalen
));
575 // get and print all info known about any known 14b tag
576 int HF14BInfo(bool verbose
){
580 // try std 14b (atqb)
581 if (HF14BStdInfo(data
, &datalen
)) return 1;
584 if (HF14B_ST_Info(data
, &datalen
)) return 1;
586 // try unknown 14b read commands (to be identified later)
587 // could be read of calypso, CEPAS, moneo, or pico pass.
588 if (HF14B_Other_Reader(data
, &datalen
)) return 1;
590 if (verbose
) PrintAndLog("no 14443B tag found");
594 // menu command to get and print all info known about any known 14b tag
595 int CmdHF14Binfo(const char *Cmd
){
596 return HF14BInfo(true);
599 // get and print general info about all known 14b chips
600 int HF14BReader(bool verbose
){
604 // try std 14b (atqb)
605 if (HF14BStdReader(data
, &datalen
)) return 1;
608 if (HF14B_ST_Reader(data
, &datalen
, true)) return 1;
610 // try unknown 14b read commands (to be identified later)
611 // could be read of calypso, CEPAS, moneo, or pico pass.
612 if (HF14B_Other_Reader(data
, &datalen
)) return 1;
614 if (verbose
) PrintAndLog("no 14443B tag found");
618 // menu command to get and print general info about all known 14b chips
619 int CmdHF14BReader(const char *Cmd
){
620 return HF14BReader(true);
623 int CmdSriWrite( const char *Cmd
){
625 * For SRIX4K blocks 00 - 7F
626 * hf 14b raw -c -p 09 $srix4kwblock $srix4kwdata
628 * For SR512 blocks 00 - 0F
629 * hf 14b raw -c -p 09 $sr512wblock $sr512wdata
631 * Special block FF = otp_lock_reg block.
634 char cmdp
= param_getchar(Cmd
, 0);
635 uint8_t blockno
= -1;
636 uint8_t data
[4] = {0x00};
637 bool isSrix4k
= true;
640 if (strlen(Cmd
) < 1 || cmdp
== 'h' || cmdp
== 'H') {
641 PrintAndLog("Usage: hf 14b write <1|2> <BLOCK> <DATA>");
642 PrintAndLog(" [1 = SRIX4K]");
643 PrintAndLog(" [2 = SRI512]");
644 PrintAndLog(" [BLOCK number depends on tag, special block == FF]");
645 PrintAndLog(" sample: hf 14b write 1 7F 11223344");
646 PrintAndLog(" : hf 14b write 1 FF 11223344");
647 PrintAndLog(" : hf 14b write 2 15 11223344");
648 PrintAndLog(" : hf 14b write 2 FF 11223344");
655 //blockno = param_get8(Cmd, 1);
657 if ( param_gethex(Cmd
,1, &blockno
, 2) ) {
658 PrintAndLog("Block number must include 2 HEX symbols");
663 if ( blockno
> 0x7f && blockno
!= 0xff ){
664 PrintAndLog("Block number out of range");
668 if ( blockno
> 0x0f && blockno
!= 0xff ){
669 PrintAndLog("Block number out of range");
674 if (param_gethex(Cmd
, 2, data
, 8)) {
675 PrintAndLog("Data must include 8 HEX symbols");
679 if ( blockno
== 0xff)
680 PrintAndLog("[%s] Write special block %02X [ %s ]", (isSrix4k
)?"SRIX4K":"SRI512" , blockno
, sprint_hex(data
,4) );
682 PrintAndLog("[%s] Write block %02X [ %s ]", (isSrix4k
)?"SRIX4K":"SRI512", blockno
, sprint_hex(data
,4) );
684 sprintf(str
, "-c 09 %02x %02x%02x%02x%02x", blockno
, data
[0], data
[1], data
[2], data
[3]);
690 static command_t CommandTable
[] =
692 {"help", CmdHelp
, 1, "This help"},
693 {"info", CmdHF14Binfo
, 0, "Find and print details about a 14443B tag"},
694 {"list", CmdHF14BList
, 0, "[Deprecated] List ISO 14443B history"},
695 {"reader", CmdHF14BReader
, 0, "Act as a 14443B reader to identify a tag"},
696 {"sim", CmdHF14BSim
, 0, "Fake ISO 14443B tag"},
697 {"snoop", CmdHF14BSnoop
, 0, "Eavesdrop ISO 14443B"},
698 {"sri512read", CmdSri512Read
, 0, "Read contents of a SRI512 tag"},
699 {"srix4kread", CmdSrix4kRead
, 0, "Read contents of a SRIX4K tag"},
700 {"sriwrite", CmdSriWrite
, 0, "Write data to a SRI512 | SRIX4K tag"},
701 {"raw", CmdHF14BCmdRaw
, 0, "Send raw hex data to tag"},
702 {NULL
, NULL
, 0, NULL
}
705 int CmdHF14B(const char *Cmd
)
707 CmdsParse(CommandTable
, Cmd
);
711 int CmdHelp(const char *Cmd
)
713 CmdsHelp(CommandTable
);