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 // Low frequency commands
9 //-----------------------------------------------------------------------------
16 #include "proxmark3.h"
20 #include "cmdparser.h"
26 #include "cmdlfem4x.h"
27 #include "cmdlfhitag.h"
29 static int CmdHelp(const char *Cmd
);
31 /* send a command before reading */
32 int CmdLFCommandRead(const char *Cmd
)
38 UsbCommand c
= {CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K
};
39 sscanf(Cmd
, "%i %i %i %s %s", &c
.arg
[0], &c
.arg
[1], &c
.arg
[2], (char *) &c
.d
.asBytes
,(char *) &dummy
+1);
40 // in case they specified 'h'
41 strcpy((char *)&c
.d
.asBytes
+ strlen((char *)c
.d
.asBytes
), dummy
);
46 int CmdFlexdemod(const char *Cmd
)
49 for (i
= 0; i
< GraphTraceLen
; ++i
) {
50 if (GraphBuffer
[i
] < 0) {
59 for (start
= 0; start
< GraphTraceLen
- LONG_WAIT
; start
++) {
60 int first
= GraphBuffer
[start
];
61 for (i
= start
; i
< start
+ LONG_WAIT
; i
++) {
62 if (GraphBuffer
[i
] != first
) {
66 if (i
== (start
+ LONG_WAIT
)) {
70 if (start
== GraphTraceLen
- LONG_WAIT
) {
71 PrintAndLog("nothing to wait for");
75 GraphBuffer
[start
] = 2;
76 GraphBuffer
[start
+1] = -2;
82 for (bit
= 0; bit
< 64; bit
++) {
85 for (j
= 0; j
< 16; j
++) {
86 sum
+= GraphBuffer
[i
++];
93 PrintAndLog("bit %d sum %d", bit
, sum
);
96 for (bit
= 0; bit
< 64; bit
++) {
99 for (j
= 0; j
< 16; j
++) {
100 sum
+= GraphBuffer
[i
++];
102 if (sum
> 0 && bits
[bit
] != 1) {
103 PrintAndLog("oops1 at %d", bit
);
105 if (sum
< 0 && bits
[bit
] != 0) {
106 PrintAndLog("oops2 at %d", bit
);
110 GraphTraceLen
= 32*64;
113 for (bit
= 0; bit
< 64; bit
++) {
114 if (bits
[bit
] == 0) {
120 for (j
= 0; j
< 32; j
++) {
121 GraphBuffer
[i
++] = phase
;
126 RepaintGraphWindow();
130 int CmdIndalaDemod(const char *Cmd
)
132 // Usage: recover 64bit UID by default, specify "224" as arg to recover a 224bit UID
137 // worst case with GraphTraceLen=64000 is < 4096
138 // under normal conditions it's < 2048
139 uint8_t rawbits
[4096];
141 int worst
= 0, worstPos
= 0;
142 PrintAndLog("Expecting a bit less than %d raw bits", GraphTraceLen
/ 32);
143 for (i
= 0; i
< GraphTraceLen
-1; i
+= 2) {
145 if ((GraphBuffer
[i
] > GraphBuffer
[i
+ 1]) && (state
!= 1)) {
147 for (j
= 0; j
< count
- 8; j
+= 16) {
148 rawbits
[rawbit
++] = 0;
150 if ((abs(count
- j
)) > worst
) {
151 worst
= abs(count
- j
);
157 } else if ((GraphBuffer
[i
] < GraphBuffer
[i
+ 1]) && (state
!= 0)) {
159 for (j
= 0; j
< count
- 8; j
+= 16) {
160 rawbits
[rawbit
++] = 1;
162 if ((abs(count
- j
)) > worst
) {
163 worst
= abs(count
- j
);
171 PrintAndLog("Recovered %d raw bits", rawbit
);
172 PrintAndLog("worst metric (0=best..7=worst): %d at pos %d", worst
, worstPos
);
174 // Finding the start of a UID
175 int uidlen
, long_wait
;
176 if (strcmp(Cmd
, "224") == 0) {
185 for (start
= 0; start
<= rawbit
- uidlen
; start
++) {
186 first
= rawbits
[start
];
187 for (i
= start
; i
< start
+ long_wait
; i
++) {
188 if (rawbits
[i
] != first
) {
192 if (i
== (start
+ long_wait
)) {
196 if (start
== rawbit
- uidlen
+ 1) {
197 PrintAndLog("nothing to wait for");
201 // Inverting signal if needed
203 for (i
= start
; i
< rawbit
; i
++) {
204 rawbits
[i
] = !rawbits
[i
];
211 showbits
[uidlen
]='\0';
215 if (uidlen
> rawbit
) {
216 PrintAndLog("Warning: not enough raw bits to get a full UID");
217 for (bit
= 0; bit
< rawbit
; bit
++) {
218 bits
[bit
] = rawbits
[i
++];
219 // As we cannot know the parity, let's use "." and "/"
220 showbits
[bit
] = '.' + bits
[bit
];
222 showbits
[bit
+1]='\0';
223 PrintAndLog("Partial UID=%s", showbits
);
226 for (bit
= 0; bit
< uidlen
; bit
++) {
227 bits
[bit
] = rawbits
[i
++];
228 showbits
[bit
] = '0' + bits
[bit
];
234 uint32_t uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
239 for( idx
=0; idx
<64; idx
++) {
240 if (showbits
[idx
] == '0') {
241 uid1
=(uid1
<<1)|(uid2
>>31);
244 uid1
=(uid1
<<1)|(uid2
>>31);
248 PrintAndLog("UID=%s (%x%08x)", showbits
, uid1
, uid2
);
256 for( idx
=0; idx
<224; idx
++) {
257 uid1
=(uid1
<<1)|(uid2
>>31);
258 uid2
=(uid2
<<1)|(uid3
>>31);
259 uid3
=(uid3
<<1)|(uid4
>>31);
260 uid4
=(uid4
<<1)|(uid5
>>31);
261 uid5
=(uid5
<<1)|(uid6
>>31);
262 uid6
=(uid6
<<1)|(uid7
>>31);
263 if (showbits
[idx
] == '0') uid7
=(uid7
<<1)|0;
264 else uid7
=(uid7
<<1)|1;
266 PrintAndLog("UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits
, uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
269 // Checking UID against next occurences
270 for (; i
+ uidlen
<= rawbit
;) {
272 for (bit
= 0; bit
< uidlen
; bit
++) {
273 if (bits
[bit
] != rawbits
[i
++]) {
283 PrintAndLog("Occurences: %d (expected %d)", times
, (rawbit
- start
) / uidlen
);
285 // Remodulating for tag cloning
286 GraphTraceLen
= 32*uidlen
;
289 for (bit
= 0; bit
< uidlen
; bit
++) {
290 if (bits
[bit
] == 0) {
296 for (j
= 0; j
< 32; j
++) {
297 GraphBuffer
[i
++] = phase
;
302 RepaintGraphWindow();
306 int CmdIndalaClone(const char *Cmd
)
308 unsigned int uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
319 if (strchr(Cmd
,'l') != 0) {
320 while (sscanf(&Cmd
[i
++], "%1x", &n
) == 1) {
321 uid1
= (uid1
<< 4) | (uid2
>> 28);
322 uid2
= (uid2
<< 4) | (uid3
>> 28);
323 uid3
= (uid3
<< 4) | (uid4
>> 28);
324 uid4
= (uid4
<< 4) | (uid5
>> 28);
325 uid5
= (uid5
<< 4) | (uid6
>> 28);
326 uid6
= (uid6
<< 4) | (uid7
>> 28);
327 uid7
= (uid7
<< 4) | (n
& 0xf);
329 PrintAndLog("Cloning 224bit tag with UID %x%08x%08x%08x%08x%08x%08x", uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
330 c
.cmd
= CMD_INDALA_CLONE_TAG_L
;
331 c
.d
.asDwords
[0] = uid1
;
332 c
.d
.asDwords
[1] = uid2
;
333 c
.d
.asDwords
[2] = uid3
;
334 c
.d
.asDwords
[3] = uid4
;
335 c
.d
.asDwords
[4] = uid5
;
336 c
.d
.asDwords
[5] = uid6
;
337 c
.d
.asDwords
[6] = uid7
;
341 while (sscanf(&Cmd
[i
++], "%1x", &n
) == 1) {
342 uid1
= (uid1
<< 4) | (uid2
>> 28);
343 uid2
= (uid2
<< 4) | (n
& 0xf);
345 PrintAndLog("Cloning 64bit tag with UID %x%08x", uid1
, uid2
);
346 c
.cmd
= CMD_INDALA_CLONE_TAG
;
355 int CmdLFRead(const char *Cmd
)
357 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_125K
};
358 // 'h' means higher-low-frequency, 134 kHz
361 } else if (*Cmd
== '\0') {
364 PrintAndLog("use 'read' or 'read h'");
368 WaitForResponse(CMD_ACK
,NULL
);
372 static void ChkBitstream(const char *str
)
376 /* convert to bitstream if necessary */
377 for (i
= 0; i
< (int)(GraphTraceLen
/ 2); i
++)
379 if (GraphBuffer
[i
] > 1 || GraphBuffer
[i
] < 0)
387 int CmdLFSim(const char *Cmd
)
392 sscanf(Cmd
, "%i", &gap
);
394 /* convert to bitstream if necessary */
397 PrintAndLog("Sending data, please wait...");
398 for (i
= 0; i
< GraphTraceLen
; i
+= 48) {
399 UsbCommand c
={CMD_DOWNLOADED_SIM_SAMPLES_125K
, {i
, 0, 0}};
401 for (j
= 0; j
< 48; j
++) {
402 c
.d
.asBytes
[j
] = GraphBuffer
[i
+j
];
405 WaitForResponse(CMD_ACK
,NULL
);
408 PrintAndLog("Starting simulator...");
409 UsbCommand c
= {CMD_SIMULATE_TAG_125K
, {GraphTraceLen
, gap
, 0}};
414 int CmdLFSimBidir(const char *Cmd
)
416 /* Set ADC to twice the carrier for a slight supersampling */
417 UsbCommand c
= {CMD_LF_SIMULATE_BIDIR
, {47, 384, 0}};
422 /* simulate an LF Manchester encoded tag with specified bitstream, clock rate and inter-id gap */
423 int CmdLFSimManchester(const char *Cmd
)
425 static int clock
, gap
;
426 static char data
[1024], gapstring
[8];
428 /* get settings/bits */
429 sscanf(Cmd
, "%i %s %i", &clock
, &data
[0], &gap
);
431 /* clear our graph */
434 /* fill it with our bitstream */
435 for (int i
= 0; i
< strlen(data
) ; ++i
)
436 AppendGraph(0, clock
, data
[i
]- '0');
439 CmdManchesterMod("");
441 /* show what we've done */
442 RepaintGraphWindow();
445 sprintf(&gapstring
[0], "%i", gap
);
450 int CmdVchDemod(const char *Cmd
)
452 // Is this the entire sync pattern, or does this also include some
453 // data bits that happen to be the same everywhere? That would be
455 static const int SyncPattern
[] = {
456 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
457 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
458 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
459 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
460 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
461 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
462 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
463 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
464 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
465 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
468 // So first, we correlate for the sync pattern, and mark that.
469 int bestCorrel
= 0, bestPos
= 0;
471 // It does us no good to find the sync pattern, with fewer than
472 // 2048 samples after it...
473 for (i
= 0; i
< (GraphTraceLen
-2048); i
++) {
476 for (j
= 0; j
< arraylen(SyncPattern
); j
++) {
477 sum
+= GraphBuffer
[i
+j
]*SyncPattern
[j
];
479 if (sum
> bestCorrel
) {
484 PrintAndLog("best sync at %d [metric %d]", bestPos
, bestCorrel
);
492 for (i
= 0; i
< 2048; i
+= 8) {
495 for (j
= 0; j
< 8; j
++) {
496 sum
+= GraphBuffer
[bestPos
+i
+j
];
503 if(abs(sum
) < worst
) {
508 PrintAndLog("bits:");
509 PrintAndLog("%s", bits
);
510 PrintAndLog("worst metric: %d at pos %d", worst
, worstPos
);
512 if (strcmp(Cmd
, "clone")==0) {
515 for(s
= bits
; *s
; s
++) {
517 for(j
= 0; j
< 16; j
++) {
518 GraphBuffer
[GraphTraceLen
++] = (*s
== '1') ? 1 : 0;
521 RepaintGraphWindow();
526 static command_t CommandTable
[] =
528 {"help", CmdHelp
, 1, "This help"},
529 {"cmdread", CmdLFCommandRead
, 0, "<off period> <'0' period> <'1' period> <command> ['h'] -- Modulate LF reader field to send command before read (all periods in microseconds) (option 'h' for 134)"},
530 {"em4x", CmdLFEM4X
, 1, "{ EM4X RFIDs... }"},
531 {"flexdemod", CmdFlexdemod
, 1, "Demodulate samples for FlexPass"},
532 {"hid", CmdLFHID
, 1, "{ HID RFIDs... }"},
533 {"indalademod", CmdIndalaDemod
, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
534 {"indalaclone", CmdIndalaClone
, 1, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
535 {"read", CmdLFRead
, 0, "['h'] -- Read 125/134 kHz LF ID-only tag (option 'h' for 134)"},
536 {"sim", CmdLFSim
, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
537 {"simbidir", CmdLFSimBidir
, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
538 {"simman", CmdLFSimManchester
, 0, "<Clock> <Bitstream> [GAP] Simulate arbitrary Manchester LF tag"},
539 {"ti", CmdLFTI
, 1, "{ TI RFIDs... }"},
540 {"hitag", CmdLFHitag
, 1, "{ Hitag tags and transponders... }"},
541 {"vchdemod", CmdVchDemod
, 1, "['clone'] -- Demodulate samples for VeriChip"},
542 {NULL
, NULL
, 0, NULL
}
545 int CmdLF(const char *Cmd
)
547 CmdsParse(CommandTable
, Cmd
);
551 int CmdHelp(const char *Cmd
)
553 CmdsHelp(CommandTable
);