1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 // Modified 2010 by <adrian -at- atrox.at>
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 ISO15693 commands
10 //-----------------------------------------------------------------------------
11 // There are three basic operation modes, depending on which device (proxmark/pc)
12 // the signal processing, (de)modulation, transmission protocol and logic is done.
14 // All steps are done on the proxmark, the output of the commands is returned via
15 // USB-debug-print commands.
17 // The protocol is done on the PC, passing only Iso15693 data frames via USB. This
18 // allows direct communication with a tag on command level
20 // The proxmark just samples the antenna and passes this "analog" data via USB to
21 // the client. Signal Processing & decoding is done on the pc. This is the slowest
22 // variant, but offers the possibility to analyze the waveforms directly.
32 #include "cmdparser.h"
34 #include "iso15693tools.h"
37 #define FrameSOF Iso15693FrameSOF
38 #define Logic0 Iso15693Logic0
39 #define Logic1 Iso15693Logic1
40 #define FrameEOF Iso15693FrameEOF
42 #define Crc(data,datalen) Iso15693Crc(data,datalen)
43 #define AddCrc(data,datalen) Iso15693AddCrc(data,datalen)
44 #define sprintUID(target,uid) Iso15693sprintUID(target,uid)
46 static int CmdHelp(const char *Cmd
);
48 // structure and database for uid -> tagtype lookups
51 int mask
; // how many MSB bits used
56 const productName uidmapping
[] = {
57 { 0xE001000000000000LL
, 16, "Motorola" },
58 { 0xE002000000000000LL
, 16, "ST Microelectronics" },
59 { 0xE003000000000000LL
, 16, "Hitachi" },
60 { 0xE004000000000000LL
, 16, "Philips" },
61 { 0xE004010000000000LL
, 24, "Philips; IC SL2 ICS20" },
62 { 0xE005000000000000LL
, 16, "Infineon" },
63 { 0xE005400000000000LL
, 24, "Infineon; 56x32bit" },
64 { 0xE006000000000000LL
, 16, "Cylinc" },
65 { 0xE007000000000000LL
, 16, "Texas Instrument; " },
66 { 0xE007000000000000LL
, 20, "Texas Instrument; Tag-it HF-I Plus Inlay; 64x32bit" },
67 { 0xE007100000000000LL
, 20, "Texas Instrument; Tag-it HF-I Plus Chip; 64x32bit" },
68 { 0xE007C00000000000LL
, 23, "Texas Instrument; Tag-it HF-I Standard; 8x32bit" },
69 { 0xE007C40000000000LL
, 23, "Texas Instrument; Tag-it HF-I Pro; 8x23bit; password" },
70 { 0xE008000000000000LL
, 16, "Fujitsu" },
71 { 0xE009000000000000LL
, 16, "Matsushita" },
72 { 0xE00A000000000000LL
, 16, "NEC" },
73 { 0xE00B000000000000LL
, 16, "Oki Electric" },
74 { 0xE00C000000000000LL
, 16, "Toshiba" },
75 { 0xE00D000000000000LL
, 16, "Mitsubishi" },
76 { 0xE00E000000000000LL
, 16, "Samsung" },
77 { 0xE00F000000000000LL
, 16, "Hyundai" },
78 { 0xE010000000000000LL
, 16, "LG-Semiconductors" },
79 { 0xE012000000000000LL
, 16, "HID Corporation" },
80 { 0xE016000000000000LL
, 16, "EM-Marin SA (Skidata)" },
81 { 0xE016040000000000LL
, 24, "EM-Marin SA (Skidata Keycard-eco); no memory" },
82 { 0xE016100000000000LL
, 24, "EM-Marin SA (Skidata); EM4135; 36x64bit start page 13" },
83 { 0,0,"no tag-info available" } // must be the last entry
87 // fast method to just read the UID of a tag (collission detection not supported)
88 // *buf should be large enough to fit the 64bit uid
89 // returns 1 if suceeded
90 int getUID(uint8_t *buf
)
94 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
95 uint8_t *req
=c
.d
.asBytes
;
98 for (int retry
=0;retry
<3; retry
++) { // don't give up the at the first try
100 req
[0]= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
101 ISO15_REQ_INVENTORY
| ISO15_REQINV_SLOT1
;
102 req
[1]=ISO15_CMD_INVENTORY
;
103 req
[2]=0; // mask length
104 reqlen
=AddCrc(req
,3);
109 r
=WaitForResponseTimeout(CMD_ACK
,1000);
113 if (r
->arg
[0]>=12 && ISO15_CRC_CHECK
==Crc(recv
,12)) {
114 memcpy(buf
,&recv
[2],8);
124 // get a product description based on the UID
126 // returns description of the best match
127 static char* getTagInfo(uint8_t *uid
) {
130 memcpy(&myuid
,uid
,sizeof(uint64_t));
131 while (uidmapping
[i
].mask
>0) {
132 mask
=(~0LL) <<(64-uidmapping
[i
].mask
);
133 if ((myuid
& mask
) == uidmapping
[i
].uid
) {
137 if (uidmapping
[i
].mask
>uidmapping
[best
].mask
) {
145 if (best
>=0) return uidmapping
[best
].desc
;
147 return uidmapping
[i
].desc
;
151 // return a clear-text message to an errorcode
152 static char* TagErrorStr(uint8_t error
) {
154 case 0x01: return "The command is not supported";
155 case 0x02: return "The command is not recognised";
156 case 0x03: return "The option is not supported.";
157 case 0x0f: return "Unknown error.";
158 case 0x10: return "The specified block is not available (doesn’t exist).";
159 case 0x11: return "The specified block is already -locked and thus cannot be locked again";
160 case 0x12: return "The specified block is locked and its content cannot be changed.";
161 case 0x13: return "The specified block was not successfully programmed.";
162 case 0x14: return "The specified block was not successfully locked.";
163 default: return "Reserved for Future Use or Custom command error.";
169 int CmdHF15Demod(const char *Cmd
)
171 // The sampling rate is 106.353 ksps/s, for T = 18.8 us
174 int max
= 0, maxPos
= 0;
178 if (GraphTraceLen
< 1000) return 0;
180 // First, correlate for SOF
181 for (i
= 0; i
< 100; i
++) {
183 for (j
= 0; j
< arraylen(FrameSOF
); j
+= skip
) {
184 corr
+= FrameSOF
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
191 PrintAndLog("SOF at %d, correlation %d", maxPos
,
192 max
/ (arraylen(FrameSOF
) / skip
));
194 i
= maxPos
+ arraylen(FrameSOF
) / skip
;
197 memset(outBuf
, 0, sizeof(outBuf
));
200 int corr0
= 0, corr1
= 0, corrEOF
= 0;
201 for (j
= 0; j
< arraylen(Logic0
); j
+= skip
) {
202 corr0
+= Logic0
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
204 for (j
= 0; j
< arraylen(Logic1
); j
+= skip
) {
205 corr1
+= Logic1
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
207 for (j
= 0; j
< arraylen(FrameEOF
); j
+= skip
) {
208 corrEOF
+= FrameEOF
[j
] * GraphBuffer
[i
+ (j
/ skip
)];
210 // Even things out by the length of the target waveform.
214 if (corrEOF
> corr1
&& corrEOF
> corr0
) {
215 PrintAndLog("EOF at %d", i
);
217 } else if (corr1
> corr0
) {
218 i
+= arraylen(Logic1
) / skip
;
221 i
+= arraylen(Logic0
) / skip
;
228 if ((i
+ (int)arraylen(FrameEOF
)) >= GraphTraceLen
) {
229 PrintAndLog("ran off end!");
234 PrintAndLog("error, uneven octet! (discard extra bits!)");
235 PrintAndLog(" mask=%02x", mask
);
237 PrintAndLog("%d octets", k
);
239 for (i
= 0; i
< k
; i
++) {
240 PrintAndLog("# %2d: %02x ", i
, outBuf
[i
]);
242 PrintAndLog("CRC=%04x", Iso15693Crc(outBuf
, k
- 2));
248 // * Acquire Samples as Reader (enables carrier, sends inquiry)
249 int CmdHF15Read(const char *Cmd
)
251 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693
};
256 // Record Activity without enabeling carrier
257 int CmdHF15Record(const char *Cmd
)
259 UsbCommand c
= {CMD_RECORD_RAW_ADC_SAMPLES_ISO_15693
};
264 int CmdHF15Reader(const char *Cmd
)
266 UsbCommand c
= {CMD_READER_ISO_15693
, {strtol(Cmd
, NULL
, 0), 0, 0}};
271 // Simulation is still not working very good
272 int CmdHF15Sim(const char *Cmd
)
274 UsbCommand c
= {CMD_SIMTAG_ISO_15693
, {strtol(Cmd
, NULL
, 0), 0, 0}};
279 // finds the AFI (Application Family Idendifier) of a card, by trying all values
280 // (There is no standard way of reading the AFI, allthough some tags support this)
281 int CmdHF15Afi(const char *Cmd
)
283 UsbCommand c
= {CMD_ISO_15693_FIND_AFI
, {strtol(Cmd
, NULL
, 0), 0, 0}};
288 // Reads all memory pages
289 int CmdHF15DumpMem(const char*Cmd
) {
293 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
294 uint8_t *req
=c
.d
.asBytes
;
300 PrintAndLog("No Tag found.");
304 PrintAndLog("Reading memory from tag UID=%s",sprintUID(NULL
,uid
));
305 PrintAndLog("Tag Info: %s",getTagInfo(uid
));
307 for (int retry
=0; retry
<5; retry
++) {
309 req
[0]= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
310 ISO15_REQ_NONINVENTORY
| ISO15_REQ_ADDRESS
;
311 req
[1]=ISO15_CMD_READ
;
312 memcpy(&req
[2],uid
,8);
314 reqlen
=AddCrc(req
,11);
319 r
=WaitForResponseTimeout(CMD_ACK
,1000);
323 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
324 if (!(recv
[0] & ISO15_RES_ERROR
)) {
326 *output
=0; // reset outputstring
327 sprintf(output
, "Block %2i ",blocknum
);
328 for ( int i
=1; i
<r
->arg
[0]-2; i
++) { // data in hex
329 sprintf(output
+strlen(output
),"%02hX ",recv
[i
]);
332 for ( int i
=1; i
<r
->arg
[0]-2; i
++) { // data in cleaned ascii
333 sprintf(output
+strlen(output
),"%c",(recv
[i
]>31 && recv
[i
]<127)?recv
[i
]:'.');
335 PrintAndLog("%s",output
);
337 // PrintAndLog("bn=%i",blocknum);
339 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
342 } // else PrintAndLog("crc");
343 } // else PrintAndLog("r null");
346 if (r
&& r
->arg
[0]<3)
347 PrintAndLog("Lost Connection");
348 else if (r
&& ISO15_CRC_CHECK
!=Crc(r
->d
.asBytes
,r
->arg
[0]))
349 PrintAndLog("CRC Failed");
351 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
358 static command_t CommandTable15
[] =
360 {"help", CmdHF15Help
, 1, "This help"},
361 {"demod", CmdHF15Demod
, 1, "Demodulate ISO15693 from tag"},
362 {"read", CmdHF15Read
, 0, "Read HF tag (ISO 15693)"},
363 {"record", CmdHF15Record
, 0, "Record Samples (ISO 15693)"}, // atrox
364 {"reader", CmdHF15Reader
, 0, "Act like an ISO15693 reader"},
365 {"sim", CmdHF15Sim
, 0, "Fake an ISO15693 tag"},
366 {"cmd", CmdHF15Cmd
, 0, "Send direct commands to ISO15693 tag"},
367 {"findafi", CmdHF15Afi
, 0, "Brute force AFI of an ISO15693 tag"},
368 {"dumpmemory", CmdHF15DumpMem
, 0, "Read all memory pages of an ISO15693 tag"},
369 {NULL
, NULL
, 0, NULL
}
372 int CmdHF15(const char *Cmd
)
374 CmdsParse(CommandTable15
, Cmd
);
378 int CmdHF15Help(const char *Cmd
)
380 CmdsHelp(CommandTable15
);
385 // "HF 15 Cmd" Interface
386 // Allows direct communication with the tag on command level
388 int CmdHF15CmdInquiry(const char *Cmd
)
392 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
393 uint8_t *req
=c
.d
.asBytes
;
396 req
[0]= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
397 ISO15_REQ_INVENTORY
| ISO15_REQINV_SLOT1
;
398 req
[1]=ISO15_CMD_INVENTORY
;
399 req
[2]=0; // mask length
400 reqlen
=AddCrc(req
,3);
405 r
=WaitForResponseTimeout(CMD_ACK
,1000);
410 PrintAndLog("UID=%s",sprintUID(NULL
,&recv
[2]));
411 PrintAndLog("Tag Info: %s",getTagInfo(&recv
[2]));
413 PrintAndLog("Response to short, just %i bytes. No tag?\n",r
->arg
[0]);
416 PrintAndLog("timeout.");
422 // Turns debugging on(1)/off(0)
423 int CmdHF15CmdDebug( const char *cmd
) {
426 PrintAndLog("Usage: hf 15 cmd debug <0/1>");
427 PrintAndLog(" 0..no debugging output 1..turn debugging on");
431 UsbCommand c
= {CMD_ISO_15693_DEBUG
, {debug
, 0, 0}};
437 int CmdHF15CmdRaw (const char *cmd
) {
440 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
447 unsigned int datalen
=0, temp
;
452 PrintAndLog("Usage: hf 15 cmd raw [-r] [-2] [-c] <0A 0B 0C ... hex>");
453 PrintAndLog(" -r do not read response");
454 PrintAndLog(" -2 use slower '1 out of 256' mode");
455 PrintAndLog(" -c calculate and append CRC");
456 PrintAndLog(" Tip: turn on debugging for verbose output");
461 while (*cmd
==' ' || *cmd
=='\t') cmd
++;
463 while (cmd
[i
]!='\0') {
464 if (cmd
[i
]==' ' || cmd
[i
]=='\t') { i
++; continue; }
479 PrintAndLog("Invalid option");
485 if ((cmd
[i
]>='0' && cmd
[i
]<='9') ||
486 (cmd
[i
]>='a' && cmd
[i
]<='f') ||
487 (cmd
[i
]>='A' && cmd
[i
]<='F') ) {
488 buf
[strlen(buf
)+1]=0;
489 buf
[strlen(buf
)]=cmd
[i
];
492 if (strlen(buf
)>=2) {
493 sscanf(buf
,"%x",&temp
);
494 data
[datalen
]=(uint8_t)(temp
& 0xff);
500 PrintAndLog("Invalid char on input");
503 if (crc
) datalen
=AddCrc(data
,datalen
);
508 memcpy(c
.d
.asBytes
,data
,datalen
);
513 r
=WaitForResponseTimeout(CMD_ACK
,1000);
517 PrintAndLog("received %i octets",r
->arg
[0]);
518 hexout
= (char *)malloc(r
->arg
[0] * 3 + 1);
519 if (hexout
!= NULL
) {
520 for (int i
= 0; i
< r
->arg
[0]; i
++) { // data in hex
521 sprintf(&hexout
[i
* 3], "%02hX ", recv
[i
]);
523 PrintAndLog("%s", hexout
);
527 PrintAndLog("timeout while waiting for reply.");
535 int prepareHF15Cmd(char **cmd
, UsbCommand
*c
, uint8_t iso15cmd
[], int iso15cmdlen
) {
537 uint8_t *req
=c
->d
.asBytes
, uid
[8];
541 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
543 if (strstr(*cmd
,"-2")==*cmd
) {
544 c
->arg
[1]=0; // use 1of256
549 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
551 if (strstr(*cmd
,"-o")==*cmd
) {
552 req
[reqlen
]=ISO15_REQ_OPTION
;
557 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
561 PrintAndLog("missing addr");
566 // you must have selected the tag earlier
567 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
568 ISO15_REQ_NONINVENTORY
| ISO15_REQ_SELECT
;
569 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
574 // unaddressed mode may not be supported by all vendors
575 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
576 ISO15_REQ_NONINVENTORY
;
577 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
581 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
582 ISO15_REQ_NONINVENTORY
| ISO15_REQ_ADDRESS
;
583 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
586 PrintAndLog("No Tag found");
589 memcpy(req
+reqlen
,uid
,8);
590 PrintAndLog("Detected UID %s",sprintUID(NULL
,uid
));
594 req
[reqlen
++]|= ISO15_REQ_SUBCARRIER_SINGLE
| ISO15_REQ_DATARATE_HIGH
|
595 ISO15_REQ_NONINVENTORY
| ISO15_REQ_ADDRESS
;
596 memcpy(&req
[reqlen
],&iso15cmd
[0],iso15cmdlen
);
599 /* sscanf(cmd,"%hX%hX%hX%hX%hX%hX%hX%hX",
600 (short unsigned int *)&uid[7],(short unsigned int *)&uid[6],
601 (short unsigned int *)&uid[5],(short unsigned int *)&uid[4],
602 (short unsigned int *)&uid[3],(short unsigned int *)&uid[2],
603 (short unsigned int *)&uid[1],(short unsigned int *)&uid[0]); */
604 for (int i
=0;i
<8 && (*cmd
)[i
*2] && (*cmd
)[i
*2+1];i
++) { // parse UID
605 sscanf((char[]){(*cmd
)[i
*2],(*cmd
)[i
*2+1],0},"%X",&temp
);
609 PrintAndLog("Using UID %s",sprintUID(NULL
,uid
));
610 memcpy(&req
[reqlen
],&uid
[0],8);
613 // skip to next space
614 while (**cmd
!=' ' && **cmd
!='\t') (*cmd
)++;
615 // skip over the space
616 while (**cmd
==' ' || **cmd
=='\t') (*cmd
)++;
625 * Commandline handling: HF15 CMD SYSINFO
626 * get system information from tag/VICC
628 int CmdHF15CmdSysinfo(const char *Cmd
) {
631 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
632 uint8_t *req
=c
.d
.asBytes
;
636 char output
[2048]="";
643 PrintAndLog("Usage: hf 15 cmd sysinfo [options] <uid|s|*>");
644 PrintAndLog(" options:");
645 PrintAndLog(" -2 use slower '1 out of 256' mode");
646 PrintAndLog(" uid (either): ");
647 PrintAndLog(" <8B hex> full UID eg E011223344556677");
648 PrintAndLog(" s selected tag");
649 PrintAndLog(" u unaddressed mode");
650 PrintAndLog(" * scan for tag");
651 PrintAndLog(" start#: page number to start 0-255");
652 PrintAndLog(" count#: number of pages");
656 prepareHF15Cmd(&cmd
, &c
,(uint8_t[]){ISO15_CMD_SYSINFO
},1);
659 reqlen
=AddCrc(req
,reqlen
);
664 r
=WaitForResponseTimeout(CMD_ACK
,1000);
666 if (r
!=NULL
&& r
->arg
[0]>2) {
668 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
669 if (!(recv
[0] & ISO15_RES_ERROR
)) {
670 *output
=0; // reset outputstring
671 for ( i
=1; i
<r
->arg
[0]-2; i
++) {
672 sprintf(output
+strlen(output
),"%02hX ",recv
[i
]);
674 strcat(output
,"\n\r");
675 strcat(output
,"UID = ");
676 strcat(output
,sprintUID(NULL
,recv
+2));
677 strcat(output
,"\n\r");
678 strcat(output
,getTagInfo(recv
+2)); //ABC
679 strcat(output
,"\n\r");
682 sprintf(output
+strlen(output
),"DSFID supported, set to %02hX\n\r",recv
[i
++]);
684 strcat(output
,"DSFID not supported\n\r");
686 sprintf(output
+strlen(output
),"AFI supported, set to %03hX\n\r",recv
[i
++]);
688 strcat(output
,"AFI not supported\n\r");
689 if (recv
[1] & 0x04) {
690 strcat(output
,"Tag provides info on memory layout (vendor dependent)\n\r");
691 sprintf(output
+strlen(output
)," %i (or %i) bytes/page x %i pages \n\r",
692 (recv
[i
+1]&0x1F)+1, (recv
[i
+1]&0x1F), recv
[i
]+1);
695 strcat(output
,"Tag does not provide information on memory layout\n\r");
696 if (recv
[1] & 0x08) sprintf(output
+strlen(output
),"IC reference given: %02hX\n\r",recv
[i
++]);
697 else strcat(output
,"IC reference not given\n\r");
700 PrintAndLog("%s",output
);
702 PrintAndLog("Tag returned Error %i: %s",recv
[0],TagErrorStr(recv
[0]));
705 PrintAndLog("CRC failed");
708 PrintAndLog("no answer");
716 int CmdHF15CmdRead(const char *Cmd
) {
719 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
720 uint8_t *req
=c
.d
.asBytes
;
721 int reqlen
=0, pagenum
;
730 PrintAndLog("Usage: hf 15 cmd read [options] <uid|s|*> <page#>");
731 PrintAndLog(" options:");
732 PrintAndLog(" -2 use slower '1 out of 256' mode");
733 PrintAndLog(" uid (either): ");
734 PrintAndLog(" <8B hex> full UID eg E011223344556677");
735 PrintAndLog(" s selected tag");
736 PrintAndLog(" u unaddressed mode");
737 PrintAndLog(" * scan for tag");
738 PrintAndLog(" page#: page number 0-255");
742 prepareHF15Cmd(&cmd
, &c
,(uint8_t[]){ISO15_CMD_READ
},1);
745 pagenum
=strtol(cmd
,NULL
,0);
747 PrintAndLog("invalid pagenum");
751 req
[reqlen
++]=(uint8_t)pagenum
;
753 reqlen
=AddCrc(req
,reqlen
);
759 r
=WaitForResponseTimeout(CMD_ACK
,1000);
761 if (r
!=NULL
&& r
->arg
[0]>2) {
763 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
764 if (!(recv
[0] & ISO15_RES_ERROR
)) {
765 *output
=0; // reset outputstring
766 //sprintf(output, "Block %2i ",blocknum);
767 for ( int i
=1; i
<r
->arg
[0]-2; i
++) {
768 sprintf(output
+strlen(output
),"%02hX ",recv
[i
]);
771 for ( int i
=1; i
<r
->arg
[0]-2; i
++) {
772 sprintf(output
+strlen(output
),"%c",recv
[i
]>31 && recv
[i
]<127?recv
[i
]:'.');
774 PrintAndLog("%s",output
);
776 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
779 PrintAndLog("CRC failed");
782 PrintAndLog("no answer");
789 int CmdHF15CmdWrite(const char *Cmd
) {
792 UsbCommand c
= {CMD_ISO_15693_COMMAND
, {0, 1, 1}}; // len,speed,recv?
793 uint8_t *req
=c
.d
.asBytes
;
794 int reqlen
=0, pagenum
, temp
;
803 PrintAndLog("Usage: hf 15 cmd write [options] <uid|s|*> <page#> <hexdata>");
804 PrintAndLog(" options:");
805 PrintAndLog(" -2 use slower '1 out of 256' mode");
806 PrintAndLog(" -o set OPTION Flag (needed for TI)");
807 PrintAndLog(" uid (either): ");
808 PrintAndLog(" <8B hex> full UID eg E011223344556677");
809 PrintAndLog(" s selected tag");
810 PrintAndLog(" u unaddressed mode");
811 PrintAndLog(" * scan for tag");
812 PrintAndLog(" page#: page number 0-255");
813 PrintAndLog(" hexdata: data to be written eg AA BB CC DD");
817 prepareHF15Cmd(&cmd
, &c
,(uint8_t[]){ISO15_CMD_WRITE
},1);
820 // *cmd -> page num ; *cmd2 -> data
822 while (*cmd2
!=' ' && *cmd2
!='\t' && *cmd2
) cmd2
++;
826 pagenum
=strtol(cmd
,NULL
,0);
828 PrintAndLog("invalid pagenum");
831 req
[reqlen
++]=(uint8_t)pagenum
;
834 while (cmd2
[0] && cmd2
[1]) { // hexdata, read by 2 hexchars
839 sscanf((char[]){cmd2
[0],cmd2
[1],0},"%X",&temp
);
840 req
[reqlen
++]=temp
& 0xff;
844 reqlen
=AddCrc(req
,reqlen
);
850 r
=WaitForResponseTimeout(CMD_ACK
,2000);
852 if (r
!=NULL
&& r
->arg
[0]>2) {
854 if (ISO15_CRC_CHECK
==Crc(recv
,r
->arg
[0])) {
855 if (!(recv
[0] & ISO15_RES_ERROR
)) {
858 PrintAndLog("Tag returned Error %i: %s",recv
[1],TagErrorStr(recv
[1]));
861 PrintAndLog("CRC failed");
864 PrintAndLog("no answer");
872 static command_t CommandTable15Cmd
[] =
874 {"help", CmdHF15CmdHelp
, 1, "This Help"},
875 {"inquiry", CmdHF15CmdInquiry
, 0, "Search for tags in range"},
877 {"select", CmdHF15CmdSelect, 0, "Select an tag with a specific UID for further commands"},
879 {"read", CmdHF15CmdRead
, 0, "Read a block"},
880 {"write", CmdHF15CmdWrite
, 0, "Write a block"},
882 {"readmulti",CmdHF15CmdReadmulti, 0, "Reads multiple Blocks"},
884 {"sysinfo", CmdHF15CmdSysinfo
, 0, "Get Card Information"},
885 {"raw", CmdHF15CmdRaw
, 0, "Send raw hex data to tag"},
886 {"debug", CmdHF15CmdDebug
, 0, "Turn debugging on/off"},
887 {NULL
, NULL
, 0, NULL
}
890 int CmdHF15Cmd(const char *Cmd
)
892 CmdsParse(CommandTable15Cmd
, Cmd
);
896 int CmdHF15CmdHelp(const char *Cmd
)
898 CmdsHelp(CommandTable15Cmd
);