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 //-----------------------------------------------------------------------------
15 #include "proxmark3.h"
19 #include "cmdparser.h"
26 #include "cmdlfem4x.h"
27 #include "cmdlfhitag.h"
28 #include "cmdlft55xx.h"
29 #include "cmdlfpcf7931.h"
32 static int CmdHelp(const char *Cmd
);
34 /* send a command before reading */
35 int CmdLFCommandRead(const char *Cmd
)
41 UsbCommand c
= {CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K
};
42 sscanf(Cmd
, "%"lli
" %"lli
" %"lli
" %s %s", &c
.arg
[0], &c
.arg
[1], &c
.arg
[2],(char*)(&c
.d
.asBytes
),(char*)(&dummy
+1));
43 // in case they specified 'h'
44 strcpy((char *)&c
.d
.asBytes
+ strlen((char *)c
.d
.asBytes
), dummy
);
49 int CmdFlexdemod(const char *Cmd
)
52 for (i
= 0; i
< GraphTraceLen
; ++i
) {
53 if (GraphBuffer
[i
] < 0) {
62 for (start
= 0; start
< GraphTraceLen
- LONG_WAIT
; start
++) {
63 int first
= GraphBuffer
[start
];
64 for (i
= start
; i
< start
+ LONG_WAIT
; i
++) {
65 if (GraphBuffer
[i
] != first
) {
69 if (i
== (start
+ LONG_WAIT
)) {
73 if (start
== GraphTraceLen
- LONG_WAIT
) {
74 PrintAndLog("nothing to wait for");
78 GraphBuffer
[start
] = 2;
79 GraphBuffer
[start
+1] = -2;
80 uint8_t bits
[64] = {0x00};
84 for (bit
= 0; bit
< 64; bit
++) {
86 for (int j
= 0; j
< 16; j
++) {
87 sum
+= GraphBuffer
[i
++];
90 bits
[bit
] = (sum
> 0) ? 1 : 0;
92 PrintAndLog("bit %d sum %d", bit
, sum
);
95 for (bit
= 0; bit
< 64; bit
++) {
98 for (j
= 0; j
< 16; j
++) {
99 sum
+= GraphBuffer
[i
++];
101 if (sum
> 0 && bits
[bit
] != 1) {
102 PrintAndLog("oops1 at %d", bit
);
104 if (sum
< 0 && bits
[bit
] != 0) {
105 PrintAndLog("oops2 at %d", bit
);
109 // HACK writing back to graphbuffer.
110 GraphTraceLen
= 32*64;
113 for (bit
= 0; bit
< 64; bit
++) {
115 phase
= (bits
[bit
] == 0) ? 0 : 1;
118 for (j
= 0; j
< 32; j
++) {
119 GraphBuffer
[i
++] = phase
;
124 RepaintGraphWindow();
128 int CmdIndalaDemod(const char *Cmd
)
130 // Usage: recover 64bit UID by default, specify "224" as arg to recover a 224bit UID
136 // worst case with GraphTraceLen=64000 is < 4096
137 // 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
);
173 PrintAndLog("Recovered %d raw bits, expected: %d", rawbit
, GraphTraceLen
/32);
174 PrintAndLog("worst metric (0=best..7=worst): %d at pos %d", worst
, worstPos
);
179 // Finding the start of a UID
180 int uidlen
, long_wait
;
181 if (strcmp(Cmd
, "224") == 0) {
191 for (start
= 0; start
<= rawbit
- uidlen
; start
++) {
192 first
= rawbits
[start
];
193 for (i
= start
; i
< start
+ long_wait
; i
++) {
194 if (rawbits
[i
] != first
) {
198 if (i
== (start
+ long_wait
)) {
203 if (start
== rawbit
- uidlen
+ 1) {
204 PrintAndLog("nothing to wait for");
208 // Inverting signal if needed
210 for (i
= start
; i
< rawbit
; i
++) {
211 rawbits
[i
] = !rawbits
[i
];
216 uint8_t bits
[224] = {0x00};
217 char showbits
[225] = {0x00};
222 if (uidlen
> rawbit
) {
223 PrintAndLog("Warning: not enough raw bits to get a full UID");
224 for (bit
= 0; bit
< rawbit
; bit
++) {
225 bits
[bit
] = rawbits
[i
++];
226 // As we cannot know the parity, let's use "." and "/"
227 showbits
[bit
] = '.' + bits
[bit
];
229 showbits
[bit
+1]='\0';
230 PrintAndLog("Partial UID=%s", showbits
);
233 for (bit
= 0; bit
< uidlen
; bit
++) {
234 bits
[bit
] = rawbits
[i
++];
235 showbits
[bit
] = '0' + bits
[bit
];
241 uint32_t uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
246 for( idx
=0; idx
<64; idx
++) {
247 if (showbits
[idx
] == '0') {
248 uid1
=(uid1
<<1)|(uid2
>>31);
251 uid1
=(uid1
<<1)|(uid2
>>31);
255 PrintAndLog("UID=%s (%x%08x)", showbits
, uid1
, uid2
);
258 uid3
= uid4
= uid5
= uid6
= uid7
= 0;
260 for( idx
=0; idx
<224; idx
++) {
261 uid1
=(uid1
<<1)|(uid2
>>31);
262 uid2
=(uid2
<<1)|(uid3
>>31);
263 uid3
=(uid3
<<1)|(uid4
>>31);
264 uid4
=(uid4
<<1)|(uid5
>>31);
265 uid5
=(uid5
<<1)|(uid6
>>31);
266 uid6
=(uid6
<<1)|(uid7
>>31);
268 if (showbits
[idx
] == '0')
269 uid7
= (uid7
<<1) | 0;
271 uid7
= (uid7
<<1) | 1;
273 PrintAndLog("UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits
, uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
276 // Checking UID against next occurrences
278 for (; i
+ uidlen
<= rawbit
;) {
280 for (bit
= 0; bit
< uidlen
; bit
++) {
281 if (bits
[bit
] != rawbits
[i
++]) {
292 PrintAndLog("Occurrences: %d (expected %d)", times
, (rawbit
- start
) / uidlen
);
294 // Remodulating for tag cloning
295 // HACK: 2015-01-04 this will have an impact on our new way of seening lf commands (demod)
296 // since this changes graphbuffer data.
297 GraphTraceLen
= 32*uidlen
;
300 for (bit
= 0; bit
< uidlen
; bit
++) {
301 if (bits
[bit
] == 0) {
307 for (j
= 0; j
< 32; j
++) {
308 GraphBuffer
[i
++] = phase
;
313 RepaintGraphWindow();
317 int CmdIndalaClone(const char *Cmd
)
320 unsigned int uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
322 uid1
= uid2
= uid3
= uid4
= uid5
= uid6
= uid7
= 0;
325 if (strchr(Cmd
,'l') != 0) {
326 while (sscanf(&Cmd
[i
++], "%1x", &n
) == 1) {
327 uid1
= (uid1
<< 4) | (uid2
>> 28);
328 uid2
= (uid2
<< 4) | (uid3
>> 28);
329 uid3
= (uid3
<< 4) | (uid4
>> 28);
330 uid4
= (uid4
<< 4) | (uid5
>> 28);
331 uid5
= (uid5
<< 4) | (uid6
>> 28);
332 uid6
= (uid6
<< 4) | (uid7
>> 28);
333 uid7
= (uid7
<< 4) | (n
& 0xf);
335 PrintAndLog("Cloning 224bit tag with UID %x%08x%08x%08x%08x%08x%08x", uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
336 c
.cmd
= CMD_INDALA_CLONE_TAG_L
;
337 c
.d
.asDwords
[0] = uid1
;
338 c
.d
.asDwords
[1] = uid2
;
339 c
.d
.asDwords
[2] = uid3
;
340 c
.d
.asDwords
[3] = uid4
;
341 c
.d
.asDwords
[4] = uid5
;
342 c
.d
.asDwords
[5] = uid6
;
343 c
.d
.asDwords
[6] = uid7
;
345 while (sscanf(&Cmd
[i
++], "%1x", &n
) == 1) {
346 uid1
= (uid1
<< 4) | (uid2
>> 28);
347 uid2
= (uid2
<< 4) | (n
& 0xf);
349 PrintAndLog("Cloning 64bit tag with UID %x%08x", uid1
, uid2
);
350 c
.cmd
= CMD_INDALA_CLONE_TAG
;
359 int CmdLFRead(const char *Cmd
)
361 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_125K
};
363 // 'h' means higher-low-frequency, 134 kHz
366 } else if (*Cmd
== '\0') {
368 } else if (sscanf(Cmd
, "%"lli
, &c
.arg
[0]) != 1) {
369 PrintAndLog("Samples 1: 'lf read'");
370 PrintAndLog(" 2: 'lf read h'");
371 PrintAndLog(" 3: 'lf read <divisor>'");
375 WaitForResponse(CMD_ACK
,NULL
);
379 static void ChkBitstream(const char *str
)
383 /* convert to bitstream if necessary */
384 for (i
= 0; i
< (int)(GraphTraceLen
/ 2); i
++){
385 if (GraphBuffer
[i
] > 1 || GraphBuffer
[i
] < 0) {
391 //appears to attempt to simulate manchester
392 int CmdLFSim(const char *Cmd
)
397 sscanf(Cmd
, "%i", &gap
);
399 /* convert to bitstream if necessary */
402 printf("Sending [%d bytes]", GraphTraceLen
);
403 for (i
= 0; i
< GraphTraceLen
; i
+= USB_CMD_DATA_SIZE
) {
404 UsbCommand c
={CMD_DOWNLOADED_SIM_SAMPLES_125K
, {i
, 0, 0}};
406 for (j
= 0; j
< USB_CMD_DATA_SIZE
; j
++) {
407 c
.d
.asBytes
[j
] = GraphBuffer
[i
+j
];
410 WaitForResponse(CMD_ACK
,NULL
);
415 PrintAndLog("Starting to simulate");
416 UsbCommand c
= {CMD_SIMULATE_TAG_125K
, {GraphTraceLen
, gap
, 0}};
421 int CmdLFSimBidir(const char *Cmd
)
423 // Set ADC to twice the carrier for a slight supersampling
424 // HACK: not implemented in ARMSRC.
425 PrintAndLog("Not implemented yet.");
426 UsbCommand c
= {CMD_LF_SIMULATE_BIDIR
, {47, 384, 0}};
431 /* simulate an LF Manchester encoded tag with specified bitstream, clock rate and inter-id gap */
432 int CmdLFSimManchester(const char *Cmd
)
434 static int clock
, gap
;
435 static char data
[1024], gapstring
[8];
437 sscanf(Cmd
, "%i %s %i", &clock
, &data
[0], &gap
);
441 for (int i
= 0; i
< strlen(data
) ; ++i
)
442 AppendGraph(0, clock
, data
[i
]- '0');
444 CmdManchesterMod("");
446 RepaintGraphWindow();
448 sprintf(&gapstring
[0], "%i", gap
);
453 int CmdLFSnoop(const char *Cmd
)
455 UsbCommand c
= {CMD_LF_SNOOP_RAW_ADC_SAMPLES
};
457 // 'h' means higher-low-frequency, 134 kHz
462 sscanf(Cmd
, "l %"lli
, &c
.arg
[1]);
463 } else if(*Cmd
== 'h') {
465 sscanf(Cmd
, "h %"lli
, &c
.arg
[1]);
466 } else if (sscanf(Cmd
, "%"lli
" %"lli
, &c
.arg
[0], &c
.arg
[1]) < 1) {
467 PrintAndLog("usage 1: snoop");
468 PrintAndLog(" 2: snoop <l|h> [trigger threshold]");
469 PrintAndLog(" 3: snoop <divisor> [trigger threshold]");
471 PrintAndLog("Sample: lf snoop l 200");
472 PrintAndLog(" : lf snoop 95 200");
477 WaitForResponse(CMD_ACK
,NULL
);
481 int CmdVchDemod(const char *Cmd
)
483 // Is this the entire sync pattern, or does this also include some
484 // data bits that happen to be the same everywhere? That would be
486 static const int SyncPattern
[] = {
487 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
488 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
489 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
490 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
491 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
492 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
493 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
494 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
495 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
496 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
499 // So first, we correlate for the sync pattern, and mark that.
500 int bestCorrel
= 0, bestPos
= 0;
502 // It does us no good to find the sync pattern, with fewer than
503 // 2048 samples after it...
504 for (i
= 0; i
< (GraphTraceLen
-2048); i
++) {
507 for (j
= 0; j
< arraylen(SyncPattern
); j
++) {
508 sum
+= GraphBuffer
[i
+j
]*SyncPattern
[j
];
510 if (sum
> bestCorrel
) {
515 PrintAndLog("best sync at %d [metric %d]", bestPos
, bestCorrel
);
523 for (i
= 0; i
< 2048; i
+= 8) {
526 for (j
= 0; j
< 8; j
++) {
527 sum
+= GraphBuffer
[bestPos
+i
+j
];
534 if(abs(sum
) < worst
) {
539 PrintAndLog("bits:");
540 PrintAndLog("%s", bits
);
541 PrintAndLog("worst metric: %d at pos %d", worst
, worstPos
);
543 if (strcmp(Cmd
, "clone")==0) {
546 for(s
= bits
; *s
; s
++) {
548 for(j
= 0; j
< 16; j
++) {
549 GraphBuffer
[GraphTraceLen
++] = (*s
== '1') ? 1 : 0;
552 RepaintGraphWindow();
558 int CmdLFfind(const char *Cmd
)
561 char cmdp
= param_getchar(Cmd
, 0);
563 if (strlen(Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H') {
564 PrintAndLog("Usage: lf search <0|1>");
565 PrintAndLog(" <use data from Graphbuffer>, if not set, try reading data from tag.");
567 PrintAndLog(" sample: lf search");
568 PrintAndLog(" : lf search 1");
572 if (!offline
&& (cmdp
!= '1')){
574 ans
=CmdSamples("20000");
575 } else if (GraphTraceLen
< 1000) {
576 PrintAndLog("Data in Graphbuffer was too small.");
580 PrintAndLog("NOTE: some demods output possible binary\n if it finds something that looks like a tag");
581 PrintAndLog("\nChecking for known tags:\n");
582 ans
=CmdFSKdemodIO("");
584 PrintAndLog("\nValid IO Prox ID Found!");
587 ans
=CmdFSKdemodPyramid("");
589 PrintAndLog("\nValid Pyramid ID Found!");
592 ans
=CmdFSKdemodParadox("");
594 PrintAndLog("\nValid Paradox ID Found!");
597 ans
=CmdFSKdemodAWID("");
599 PrintAndLog("\nValid AWID ID Found!");
602 ans
=CmdFSKdemodHID("");
604 PrintAndLog("\nValid HID Prox ID Found!");
608 ans
=CmdIndalaDecode("");
610 PrintAndLog("\nValid Indala ID Found!");
613 ans
=Cmdaskmandemod("");
615 PrintAndLog("\nValid EM410x ID Found!");
618 PrintAndLog("No Known Tags Found!\n");
622 static command_t CommandTable
[] =
624 {"help", CmdHelp
, 1, "This help"},
625 {"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)"},
626 {"em4x", CmdLFEM4X
, 1, "{ EM4X RFIDs... }"},
627 {"flexdemod", CmdFlexdemod
, 1, "Demodulate samples for FlexPass"},
628 {"hid", CmdLFHID
, 1, "{ HID RFIDs... }"},
629 {"io", CmdLFIO
, 1, "{ ioProx tags... }"},
630 {"indalademod", CmdIndalaDemod
, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
631 {"indalaclone", CmdIndalaClone
, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
632 {"read", CmdLFRead
, 0, "['h' or <divisor>] -- Read 125/134 kHz LF ID-only tag (option 'h' for 134, alternatively: f=12MHz/(divisor+1))"},
633 {"search", CmdLFfind
, 1, "Read and Search for valid known tag (in offline mode it you can load first then search)"},
634 {"sim", CmdLFSim
, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
635 {"simbidir", CmdLFSimBidir
, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
636 {"simman", CmdLFSimManchester
, 0, "<Clock> <Bitstream> [GAP] Simulate arbitrary Manchester LF tag"},
637 {"snoop", CmdLFSnoop
, 0, "['l'|'h'|<divisor>] [trigger threshold]-- Snoop LF (l:125khz, h:134khz)"},
638 {"ti", CmdLFTI
, 1, "{ TI RFIDs... }"},
639 {"hitag", CmdLFHitag
, 1, "{ Hitag tags and transponders... }"},
640 {"vchdemod", CmdVchDemod
, 1, "['clone'] -- Demodulate samples for VeriChip"},
641 {"t55xx", CmdLFT55XX
, 1, "{ T55xx RFIDs... }"},
642 {"pcf7931", CmdLFPCF7931
, 1, "{PCF7931 RFIDs...}"},
643 {NULL
, NULL
, 0, NULL
}
646 int CmdLF(const char *Cmd
)
648 CmdsParse(CommandTable
, Cmd
);
652 int CmdHelp(const char *Cmd
)
654 CmdsHelp(CommandTable
);