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"
33 static int CmdHelp(const char *Cmd
);
35 /* send a command before reading */
36 int CmdLFCommandRead(const char *Cmd
)
42 UsbCommand c
= {CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K
};
43 sscanf(Cmd
, "%"lli
" %"lli
" %"lli
" %s %s", &c
.arg
[0], &c
.arg
[1], &c
.arg
[2],(char*)(&c
.d
.asBytes
),(char*)(&dummy
+1));
44 // in case they specified 'h'
45 strcpy((char *)&c
.d
.asBytes
+ strlen((char *)c
.d
.asBytes
), dummy
);
50 int CmdFlexdemod(const char *Cmd
)
53 for (i
= 0; i
< GraphTraceLen
; ++i
) {
54 if (GraphBuffer
[i
] < 0) {
63 for (start
= 0; start
< GraphTraceLen
- LONG_WAIT
; start
++) {
64 int first
= GraphBuffer
[start
];
65 for (i
= start
; i
< start
+ LONG_WAIT
; i
++) {
66 if (GraphBuffer
[i
] != first
) {
70 if (i
== (start
+ LONG_WAIT
)) {
74 if (start
== GraphTraceLen
- LONG_WAIT
) {
75 PrintAndLog("nothing to wait for");
79 GraphBuffer
[start
] = 2;
80 GraphBuffer
[start
+1] = -2;
81 uint8_t bits
[64] = {0x00};
85 for (bit
= 0; bit
< 64; bit
++) {
87 for (int j
= 0; j
< 16; j
++) {
88 sum
+= GraphBuffer
[i
++];
91 bits
[bit
] = (sum
> 0) ? 1 : 0;
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 // HACK writing back to graphbuffer.
111 GraphTraceLen
= 32*64;
114 for (bit
= 0; bit
< 64; bit
++) {
116 phase
= (bits
[bit
] == 0) ? 0 : 1;
119 for (j
= 0; j
< 32; j
++) {
120 GraphBuffer
[i
++] = phase
;
125 RepaintGraphWindow();
129 int CmdIndalaDemod(const char *Cmd
)
131 // 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
140 uint8_t rawbits
[4096];
142 int worst
= 0, worstPos
= 0;
143 // PrintAndLog("Expecting a bit less than %d raw bits", GraphTraceLen / 32);
144 for (i
= 0; i
< GraphTraceLen
-1; i
+= 2) {
146 if ((GraphBuffer
[i
] > GraphBuffer
[i
+ 1]) && (state
!= 1)) {
148 for (j
= 0; j
< count
- 8; j
+= 16) {
149 rawbits
[rawbit
++] = 0;
151 if ((abs(count
- j
)) > worst
) {
152 worst
= abs(count
- j
);
158 } else if ((GraphBuffer
[i
] < GraphBuffer
[i
+ 1]) && (state
!= 0)) {
160 for (j
= 0; j
< count
- 8; j
+= 16) {
161 rawbits
[rawbit
++] = 1;
163 if ((abs(count
- j
)) > worst
) {
164 worst
= abs(count
- j
);
174 PrintAndLog("Recovered %d raw bits, expected: %d", rawbit
, GraphTraceLen
/32);
175 PrintAndLog("worst metric (0=best..7=worst): %d at pos %d", worst
, worstPos
);
180 // Finding the start of a UID
181 int uidlen
, long_wait
;
182 if (strcmp(Cmd
, "224") == 0) {
192 for (start
= 0; start
<= rawbit
- uidlen
; start
++) {
193 first
= rawbits
[start
];
194 for (i
= start
; i
< start
+ long_wait
; i
++) {
195 if (rawbits
[i
] != first
) {
199 if (i
== (start
+ long_wait
)) {
204 if (start
== rawbit
- uidlen
+ 1) {
205 PrintAndLog("nothing to wait for");
209 // Inverting signal if needed
211 for (i
= start
; i
< rawbit
; i
++) {
212 rawbits
[i
] = !rawbits
[i
];
217 uint8_t bits
[224] = {0x00};
218 char showbits
[225] = {0x00};
223 if (uidlen
> rawbit
) {
224 PrintAndLog("Warning: not enough raw bits to get a full UID");
225 for (bit
= 0; bit
< rawbit
; bit
++) {
226 bits
[bit
] = rawbits
[i
++];
227 // As we cannot know the parity, let's use "." and "/"
228 showbits
[bit
] = '.' + bits
[bit
];
230 showbits
[bit
+1]='\0';
231 PrintAndLog("Partial UID=%s", showbits
);
234 for (bit
= 0; bit
< uidlen
; bit
++) {
235 bits
[bit
] = rawbits
[i
++];
236 showbits
[bit
] = '0' + bits
[bit
];
242 uint32_t uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
247 for( idx
=0; idx
<64; idx
++) {
248 if (showbits
[idx
] == '0') {
249 uid1
=(uid1
<<1)|(uid2
>>31);
252 uid1
=(uid1
<<1)|(uid2
>>31);
256 PrintAndLog("UID=%s (%x%08x)", showbits
, uid1
, uid2
);
259 uid3
= uid4
= uid5
= uid6
= uid7
= 0;
261 for( idx
=0; idx
<224; idx
++) {
262 uid1
=(uid1
<<1)|(uid2
>>31);
263 uid2
=(uid2
<<1)|(uid3
>>31);
264 uid3
=(uid3
<<1)|(uid4
>>31);
265 uid4
=(uid4
<<1)|(uid5
>>31);
266 uid5
=(uid5
<<1)|(uid6
>>31);
267 uid6
=(uid6
<<1)|(uid7
>>31);
269 if (showbits
[idx
] == '0')
270 uid7
= (uid7
<<1) | 0;
272 uid7
= (uid7
<<1) | 1;
274 PrintAndLog("UID=%s (%x%08x%08x%08x%08x%08x%08x)", showbits
, uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
277 // Checking UID against next occurrences
279 for (; i
+ uidlen
<= rawbit
;) {
281 for (bit
= 0; bit
< uidlen
; bit
++) {
282 if (bits
[bit
] != rawbits
[i
++]) {
293 PrintAndLog("Occurrences: %d (expected %d)", times
, (rawbit
- start
) / uidlen
);
295 // Remodulating for tag cloning
296 // HACK: 2015-01-04 this will have an impact on our new way of seening lf commands (demod)
297 // since this changes graphbuffer data.
298 GraphTraceLen
= 32*uidlen
;
301 for (bit
= 0; bit
< uidlen
; bit
++) {
302 if (bits
[bit
] == 0) {
308 for (j
= 0; j
< 32; j
++) {
309 GraphBuffer
[i
++] = phase
;
314 RepaintGraphWindow();
318 int CmdIndalaClone(const char *Cmd
)
321 unsigned int uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
;
323 uid1
= uid2
= uid3
= uid4
= uid5
= uid6
= uid7
= 0;
326 if (strchr(Cmd
,'l') != 0) {
327 while (sscanf(&Cmd
[i
++], "%1x", &n
) == 1) {
328 uid1
= (uid1
<< 4) | (uid2
>> 28);
329 uid2
= (uid2
<< 4) | (uid3
>> 28);
330 uid3
= (uid3
<< 4) | (uid4
>> 28);
331 uid4
= (uid4
<< 4) | (uid5
>> 28);
332 uid5
= (uid5
<< 4) | (uid6
>> 28);
333 uid6
= (uid6
<< 4) | (uid7
>> 28);
334 uid7
= (uid7
<< 4) | (n
& 0xf);
336 PrintAndLog("Cloning 224bit tag with UID %x%08x%08x%08x%08x%08x%08x", uid1
, uid2
, uid3
, uid4
, uid5
, uid6
, uid7
);
337 c
.cmd
= CMD_INDALA_CLONE_TAG_L
;
338 c
.d
.asDwords
[0] = uid1
;
339 c
.d
.asDwords
[1] = uid2
;
340 c
.d
.asDwords
[2] = uid3
;
341 c
.d
.asDwords
[3] = uid4
;
342 c
.d
.asDwords
[4] = uid5
;
343 c
.d
.asDwords
[5] = uid6
;
344 c
.d
.asDwords
[6] = uid7
;
346 while (sscanf(&Cmd
[i
++], "%1x", &n
) == 1) {
347 uid1
= (uid1
<< 4) | (uid2
>> 28);
348 uid2
= (uid2
<< 4) | (n
& 0xf);
350 PrintAndLog("Cloning 64bit tag with UID %x%08x", uid1
, uid2
);
351 c
.cmd
= CMD_INDALA_CLONE_TAG
;
362 PrintAndLog("Usage: lf read");
363 PrintAndLog("Options: ");
364 PrintAndLog(" h This help");
365 PrintAndLog(" s silent run no printout");
366 PrintAndLog("This function takes no arguments. ");
367 PrintAndLog("Use 'lf config' to set parameters.");
372 PrintAndLog("Usage: lf snoop");
373 PrintAndLog("Options: ");
374 PrintAndLog(" h This help");
375 PrintAndLog("This function takes no arguments. ");
376 PrintAndLog("Use 'lf config' to set parameters.");
380 int usage_lf_config()
382 PrintAndLog("Usage: lf config [H|<divisor>] [b <bps>] [d <decim>] [a 0|1]");
383 PrintAndLog("Options: ");
384 PrintAndLog(" h This help");
385 PrintAndLog(" L Low frequency (125 KHz)");
386 PrintAndLog(" H High frequency (134 KHz)");
387 PrintAndLog(" q <divisor> Manually set divisor. 88-> 134KHz, 95-> 125 Hz");
388 PrintAndLog(" b <bps> Sets resolution of bits per sample. Default (max): 8");
389 PrintAndLog(" d <decim> Sets decimation. A value of N saves only 1 in N samples. Default: 1");
390 PrintAndLog(" a [0|1] Averaging - if set, will average the stored sample value when decimating. Default: 1");
391 PrintAndLog(" t <threshold> Sets trigger threshold. 0 means no threshold");
392 PrintAndLog("Examples:");
393 PrintAndLog(" lf config b 8 L");
394 PrintAndLog(" Samples at 125KHz, 8bps.");
395 PrintAndLog(" lf config H b 4 d 3");
396 PrintAndLog(" Samples at 134KHz, averages three samples into one, stored with ");
397 PrintAndLog(" a resolution of 4 bits per sample.");
398 PrintAndLog(" lf read");
399 PrintAndLog(" Performs a read (active field)");
400 PrintAndLog(" lf snoop");
401 PrintAndLog(" Performs a snoop (no active field)");
405 int CmdLFSetConfig(const char *Cmd
)
408 uint8_t divisor
= 0;//Frequency divisor
409 uint8_t bps
= 0; // Bits per sample
410 uint8_t decimation
= 0; //How many to keep
411 bool averaging
= 1; // Defaults to true
413 int trigger_threshold
=-1;//Means no change
414 uint8_t unsigned_trigg
= 0;
417 while(param_getchar(Cmd
, cmdp
) != 0x00)
419 switch(param_getchar(Cmd
, cmdp
))
422 return usage_lf_config();
432 errors
|= param_getdec(Cmd
,cmdp
+1,&divisor
);
436 errors
|= param_getdec(Cmd
,cmdp
+1,&unsigned_trigg
);
438 if(!errors
) trigger_threshold
= unsigned_trigg
;
441 errors
|= param_getdec(Cmd
,cmdp
+1,&bps
);
445 errors
|= param_getdec(Cmd
,cmdp
+1,&decimation
);
449 averaging
= param_getchar(Cmd
,cmdp
+1) == '1';
453 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd
, cmdp
));
461 errors
= 1;// No args
467 return usage_lf_config();
469 //Bps is limited to 8, so fits in lower half of arg1
470 if(bps
>> 8) bps
= 8;
472 sample_config config
= {
473 decimation
,bps
,averaging
,divisor
,trigger_threshold
475 //Averaging is a flag on high-bit of arg[1]
476 UsbCommand c
= {CMD_SET_LF_SAMPLING_CONFIG
};
477 memcpy(c
.d
.asBytes
,&config
,sizeof(sample_config
));
482 int CmdLFRead(const char *Cmd
)
487 if (param_getchar(Cmd
, cmdp
) == 'h')
489 return usage_lf_read();
491 if (param_getchar(Cmd
, cmdp
) == 's') arg1
= true; //suppress print
492 //And ship it to device
493 UsbCommand c
= {CMD_ACQUIRE_RAW_ADC_SAMPLES_125K
, {arg1
,0,0}};
495 //WaitForResponse(CMD_ACK,NULL);
496 if ( !WaitForResponseTimeout(CMD_ACK
,NULL
,2500) ) {
497 PrintAndLog("command execution time out");
504 int CmdLFSnoop(const char *Cmd
)
507 if(param_getchar(Cmd
, cmdp
) == 'h')
509 return usage_lf_snoop();
512 UsbCommand c
= {CMD_LF_SNOOP_RAW_ADC_SAMPLES
};
514 WaitForResponse(CMD_ACK
,NULL
);
518 static void ChkBitstream(const char *str
)
522 /* convert to bitstream if necessary */
523 for (i
= 0; i
< (int)(GraphTraceLen
/ 2); i
++){
524 if (GraphBuffer
[i
] > 1 || GraphBuffer
[i
] < 0) {
530 //Attempt to simulate any wave in buffer (one bit per output sample)
531 // converts GraphBuffer to bitstream (based on zero crossings) if needed.
532 int CmdLFSim(const char *Cmd
)
537 sscanf(Cmd
, "%i", &gap
);
539 // convert to bitstream if necessary
543 //can send only 512 bits at a time (1 byte sent per bit...)
544 printf("Sending [%d bytes]", GraphTraceLen
);
545 for (i
= 0; i
< GraphTraceLen
; i
+= USB_CMD_DATA_SIZE
) {
546 UsbCommand c
={CMD_DOWNLOADED_SIM_SAMPLES_125K
, {i
, 0, 0}};
548 for (j
= 0; j
< USB_CMD_DATA_SIZE
; j
++) {
549 c
.d
.asBytes
[j
] = GraphBuffer
[i
+j
];
552 WaitForResponse(CMD_ACK
,NULL
);
557 PrintAndLog("Starting to simulate");
558 UsbCommand c
= {CMD_SIMULATE_TAG_125K
, {GraphTraceLen
, gap
, 0}};
563 int usage_lf_simfsk(void)
566 PrintAndLog("Usage: lf simfsk [c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>]");
567 PrintAndLog("Options: ");
568 PrintAndLog(" h This help");
569 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
570 PrintAndLog(" i invert data");
571 PrintAndLog(" H <fcHigh> Manually set the larger Field Clock");
572 PrintAndLog(" L <fcLow> Manually set the smaller Field Clock");
573 //PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap");
574 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
575 PrintAndLog("\n NOTE: if you set one clock manually set them all manually");
579 int usage_lf_simask(void)
582 PrintAndLog("Usage: lf simask [c <clock>] [i] [b|m|r] [s] [d <raw hex to sim>]");
583 PrintAndLog("Options: ");
584 PrintAndLog(" h This help");
585 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
586 PrintAndLog(" i invert data");
587 PrintAndLog(" b sim ask/biphase");
588 PrintAndLog(" m sim ask/manchester - Default");
589 PrintAndLog(" r sim ask/raw");
590 PrintAndLog(" s TBD- -to enable a gap between playback repetitions - default: no gap");
591 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
595 int usage_lf_simpsk(void)
598 PrintAndLog("Usage: lf simpsk [1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>]");
599 PrintAndLog("Options: ");
600 PrintAndLog(" h This help");
601 PrintAndLog(" c <clock> Manually set clock - can autodetect if using DemodBuffer");
602 PrintAndLog(" i invert data");
603 PrintAndLog(" 1 set PSK1 (default)");
604 PrintAndLog(" 2 set PSK2");
605 PrintAndLog(" 3 set PSK3");
606 PrintAndLog(" r <carrier> 2|4|8 are valid carriers: default = 2");
607 PrintAndLog(" d <hexdata> Data to sim as hex - omit to sim from DemodBuffer");
611 // by marshmellow - sim ask data given clock, fcHigh, fcLow, invert
612 // - allow pull data from DemodBuffer
613 int CmdLFfskSim(const char *Cmd
)
615 //might be able to autodetect FCs and clock from Graphbuffer if using demod buffer
616 // otherwise will need FChigh, FClow, Clock, and bitstream
617 uint8_t fcHigh
=0, fcLow
=0, clk
=0;
620 char hexData
[32] = {0x00}; // store entered hex data
621 uint8_t data
[255] = {0x00};
624 while(param_getchar(Cmd
, cmdp
) != 0x00)
626 switch(param_getchar(Cmd
, cmdp
))
629 return usage_lf_simfsk();
635 errors
|= param_getdec(Cmd
,cmdp
+1,&clk
);
639 errors
|= param_getdec(Cmd
,cmdp
+1,&fcHigh
);
643 errors
|= param_getdec(Cmd
,cmdp
+1,&fcLow
);
651 dataLen
= param_getstr(Cmd
, cmdp
+1, hexData
);
655 dataLen
= hextobinarray((char *)data
, hexData
);
657 if (dataLen
==0) errors
=TRUE
;
658 if (errors
) PrintAndLog ("Error getting hex data");
662 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd
, cmdp
));
668 if(cmdp
== 0 && DemodBufferLen
== 0)
670 errors
= TRUE
;// No args
676 return usage_lf_simfsk();
679 if (dataLen
== 0){ //using DemodBuffer
680 if (clk
==0 || fcHigh
==0 || fcLow
==0){ //manual settings must set them all
681 uint8_t ans
= fskClocks(&fcHigh
, &fcLow
, &clk
, 0);
683 if (!fcHigh
) fcHigh
=10;
689 setDemodBuf(data
, dataLen
, 0);
692 //default if not found
693 if (clk
== 0) clk
= 50;
694 if (fcHigh
== 0) fcHigh
= 10;
695 if (fcLow
== 0) fcLow
= 8;
698 arg1
= fcHigh
<< 8 | fcLow
;
699 arg2
= invert
<< 8 | clk
;
700 size_t size
= DemodBufferLen
;
701 if (size
> USB_CMD_DATA_SIZE
) {
702 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size
, USB_CMD_DATA_SIZE
);
703 size
= USB_CMD_DATA_SIZE
;
705 UsbCommand c
= {CMD_FSK_SIM_TAG
, {arg1
, arg2
, size
}};
707 memcpy(c
.d
.asBytes
, DemodBuffer
, size
);
712 // by marshmellow - sim ask data given clock, invert, manchester or raw, separator
713 // - allow pull data from DemodBuffer
714 int CmdLFaskSim(const char *Cmd
)
716 //autodetect clock from Graphbuffer if using demod buffer
717 // needs clock, invert, manchester/raw as m or r, separator as s, and bitstream
718 uint8_t encoding
= 1, separator
= 0;
719 uint8_t clk
=0, invert
=0;
721 char hexData
[32] = {0x00};
722 uint8_t data
[255]= {0x00}; // store entered hex data
725 while(param_getchar(Cmd
, cmdp
) != 0x00)
727 switch(param_getchar(Cmd
, cmdp
))
730 return usage_lf_simask();
736 errors
|= param_getdec(Cmd
,cmdp
+1,&clk
);
740 encoding
=2; //biphase
756 dataLen
= param_getstr(Cmd
, cmdp
+1, hexData
);
760 dataLen
= hextobinarray((char *)data
, hexData
);
762 if (dataLen
==0) errors
=TRUE
;
763 if (errors
) PrintAndLog ("Error getting hex data, datalen: %d",dataLen
);
767 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd
, cmdp
));
773 if(cmdp
== 0 && DemodBufferLen
== 0)
775 errors
= TRUE
;// No args
781 return usage_lf_simask();
783 if (dataLen
== 0){ //using DemodBuffer
784 if (clk
== 0) clk
= GetAskClock("0", false, false);
786 setDemodBuf(data
, dataLen
, 0);
788 if (clk
== 0) clk
= 64;
789 if (encoding
== 0) clk
= clk
/2; //askraw needs to double the clock speed
791 size_t size
=DemodBufferLen
;
792 arg1
= clk
<< 8 | encoding
;
793 arg2
= invert
<< 8 | separator
;
794 if (size
> USB_CMD_DATA_SIZE
) {
795 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size
, USB_CMD_DATA_SIZE
);
796 size
= USB_CMD_DATA_SIZE
;
798 UsbCommand c
= {CMD_ASK_SIM_TAG
, {arg1
, arg2
, size
}};
799 PrintAndLog("preparing to sim ask data: %d bits", size
);
800 memcpy(c
.d
.asBytes
, DemodBuffer
, size
);
805 // by marshmellow - sim psk data given carrier, clock, invert
806 // - allow pull data from DemodBuffer or parameters
807 int CmdLFpskSim(const char *Cmd
)
809 //might be able to autodetect FC and clock from Graphbuffer if using demod buffer
810 //will need carrier, Clock, and bitstream
811 uint8_t carrier
=0, clk
=0;
814 char hexData
[32] = {0x00}; // store entered hex data
815 uint8_t data
[255] = {0x00};
819 while(param_getchar(Cmd
, cmdp
) != 0x00)
821 switch(param_getchar(Cmd
, cmdp
))
824 return usage_lf_simpsk();
830 errors
|= param_getdec(Cmd
,cmdp
+1,&clk
);
834 errors
|= param_getdec(Cmd
,cmdp
+1,&carrier
);
850 dataLen
= param_getstr(Cmd
, cmdp
+1, hexData
);
854 dataLen
= hextobinarray((char *)data
, hexData
);
856 if (dataLen
==0) errors
=TRUE
;
857 if (errors
) PrintAndLog ("Error getting hex data");
861 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd
, cmdp
));
867 if (cmdp
== 0 && DemodBufferLen
== 0)
869 errors
= TRUE
;// No args
875 return usage_lf_simpsk();
877 if (dataLen
== 0){ //using DemodBuffer
878 PrintAndLog("Getting Clocks");
879 if (clk
==0) clk
= GetPskClock("", FALSE
, FALSE
);
880 PrintAndLog("clk: %d",clk
);
881 if (!carrier
) carrier
= GetPskCarrier("", FALSE
, FALSE
);
882 PrintAndLog("carrier: %d", carrier
);
884 setDemodBuf(data
, dataLen
, 0);
887 if (clk
<= 0) clk
= 32;
888 if (carrier
== 0) carrier
= 2;
891 //need to convert psk2 to psk1 data before sim
892 psk2TOpsk1(DemodBuffer
, DemodBufferLen
);
894 PrintAndLog("Sorry, PSK3 not yet available");
898 arg1
= clk
<< 8 | carrier
;
900 size_t size
=DemodBufferLen
;
901 if (size
> USB_CMD_DATA_SIZE
) {
902 PrintAndLog("DemodBuffer too long for current implementation - length: %d - max: %d", size
, USB_CMD_DATA_SIZE
);
903 size
=USB_CMD_DATA_SIZE
;
905 UsbCommand c
= {CMD_PSK_SIM_TAG
, {arg1
, arg2
, size
}};
906 PrintAndLog("DEBUG: Sending DemodBuffer Length: %d", size
);
907 memcpy(c
.d
.asBytes
, DemodBuffer
, size
);
913 int CmdLFSimBidir(const char *Cmd
)
915 // Set ADC to twice the carrier for a slight supersampling
916 // HACK: not implemented in ARMSRC.
917 PrintAndLog("Not implemented yet.");
918 UsbCommand c
= {CMD_LF_SIMULATE_BIDIR
, {47, 384, 0}};
923 int CmdVchDemod(const char *Cmd
)
925 // Is this the entire sync pattern, or does this also include some
926 // data bits that happen to be the same everywhere? That would be
928 static const int SyncPattern
[] = {
929 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
930 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
931 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
932 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
933 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
934 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
935 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
936 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
937 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
938 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
941 // So first, we correlate for the sync pattern, and mark that.
942 int bestCorrel
= 0, bestPos
= 0;
944 // It does us no good to find the sync pattern, with fewer than
945 // 2048 samples after it...
946 for (i
= 0; i
< (GraphTraceLen
-2048); i
++) {
949 for (j
= 0; j
< arraylen(SyncPattern
); j
++) {
950 sum
+= GraphBuffer
[i
+j
]*SyncPattern
[j
];
952 if (sum
> bestCorrel
) {
957 PrintAndLog("best sync at %d [metric %d]", bestPos
, bestCorrel
);
965 for (i
= 0; i
< 2048; i
+= 8) {
968 for (j
= 0; j
< 8; j
++) {
969 sum
+= GraphBuffer
[bestPos
+i
+j
];
976 if(abs(sum
) < worst
) {
981 PrintAndLog("bits:");
982 PrintAndLog("%s", bits
);
983 PrintAndLog("worst metric: %d at pos %d", worst
, worstPos
);
985 if (strcmp(Cmd
, "clone")==0) {
988 for(s
= bits
; *s
; s
++) {
990 for(j
= 0; j
< 16; j
++) {
991 GraphBuffer
[GraphTraceLen
++] = (*s
== '1') ? 1 : 0;
994 RepaintGraphWindow();
1000 int CmdLFfind(const char *Cmd
)
1003 char cmdp
= param_getchar(Cmd
, 0);
1004 char testRaw
= param_getchar(Cmd
, 1);
1005 if (strlen(Cmd
) > 3 || cmdp
== 'h' || cmdp
== 'H') {
1006 PrintAndLog("Usage: lf search <0|1> [u]");
1007 PrintAndLog(" <use data from Graphbuffer> , if not set, try reading data from tag.");
1008 PrintAndLog(" [Search for Unknown tags] , if not set, reads only known tags.");
1010 PrintAndLog(" sample: lf search = try reading data from tag & search for known tags");
1011 PrintAndLog(" : lf search 1 = use data from GraphBuffer & search for known tags");
1012 PrintAndLog(" : lf search u = try reading data from tag & search for known and unknown tags");
1013 PrintAndLog(" : lf search 1 u = use data from GraphBuffer & search for known and unknown tags");
1017 if (!offline
&& (cmdp
!= '1')){
1019 getSamples("30000",false);
1020 } else if (GraphTraceLen
< 1000) {
1021 PrintAndLog("Data in Graphbuffer was too small.");
1024 if (cmdp
== 'u' || cmdp
== 'U') testRaw
= 'u';
1026 PrintAndLog("NOTE: some demods output possible binary\n if it finds something that looks like a tag");
1027 PrintAndLog("False Positives ARE possible\n");
1028 PrintAndLog("\nChecking for known tags:\n");
1030 ans
=CmdFSKdemodIO("");
1033 PrintAndLog("\nValid IO Prox ID Found!");
1037 ans
=CmdFSKdemodPyramid("");
1039 PrintAndLog("\nValid Pyramid ID Found!");
1043 ans
=CmdFSKdemodParadox("");
1045 PrintAndLog("\nValid Paradox ID Found!");
1049 ans
=CmdFSKdemodAWID("");
1051 PrintAndLog("\nValid AWID ID Found!");
1055 ans
=CmdFSKdemodHID("");
1057 PrintAndLog("\nValid HID Prox ID Found!");
1061 //add psk and indala
1062 ans
=CmdIndalaDecode("");
1064 PrintAndLog("\nValid Indala ID Found!");
1068 ans
=CmdAskEM410xDemod("");
1070 PrintAndLog("\nValid EM410x ID Found!");
1074 ans
=CmdG_Prox_II_Demod("");
1076 PrintAndLog("\nValid G Prox II ID Found!");
1080 ans
=EM4x50Read("", false);
1082 PrintAndLog("\nValid EM4x50 ID Found!");
1086 ans
=CmdPSKNexWatch("");
1088 PrintAndLog("\nValid NexWatch ID Found!");
1092 PrintAndLog("\nNo Known Tags Found!\n");
1093 if (testRaw
=='u' || testRaw
=='U'){
1094 //test unknown tag formats (raw mode)
1095 PrintAndLog("\nChecking for Unknown tags:\n");
1096 ans
=AutoCorrelate(4000, FALSE
, FALSE
);
1100 PrintAndLog("Possible Auto Correlation of %d repeating samples",ans
);
1102 if ( ans
% 8 == 0) {
1103 int bytes
= (ans
/ 8);
1104 PrintAndLog("Possible %d bytes", bytes
);
1106 if ( bytes
% 2 == 0) {
1107 blocks
= (bytes
/ 2);
1108 PrintAndLog("Possible 2 blocks, width %d", blocks
);
1110 if ( bytes
% 4 == 0) {
1111 blocks
= (bytes
/ 4);
1112 PrintAndLog("Possible 4 blocks, width %d", blocks
);
1114 if ( bytes
% 8 == 0) {
1115 blocks
= (bytes
/ 8);
1116 PrintAndLog("Possible 8 blocks, width %d", blocks
);
1118 if ( bytes
% 16 == 0) {
1119 blocks
= (bytes
/ 16);
1120 PrintAndLog("Possible 16 blocks, width %d", blocks
);
1124 ans
=GetFskClock("",FALSE
,FALSE
);
1125 if (ans
!= 0){ //fsk
1126 ans
=FSKrawDemod("",TRUE
);
1128 PrintAndLog("\nUnknown FSK Modulated Tag Found!");
1132 ans
=ASKDemod("0 0 0",TRUE
,FALSE
,1);
1134 PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!");
1135 PrintAndLog("\nif it does not look right it could instead be ASK/Biphase - try 'data rawdemod ab'");
1138 ans
=CmdPSK1rawDemod("");
1140 PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data rawdemod p2'");
1141 PrintAndLog("\nCould also be PSK3 - [currently not supported]");
1142 PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod");
1145 PrintAndLog("\nNo Data Found!\n");
1150 static command_t CommandTable
[] =
1152 {"help", CmdHelp
, 1, "This help"},
1153 {"em4x", CmdLFEM4X
, 1, "{ EM4X RFIDs... }"},
1154 {"hid", CmdLFHID
, 1, "{ HID RFIDs... }"},
1155 {"hitag", CmdLFHitag
, 1, "{ HITAG RFIDs... }"},
1156 {"io", CmdLFIO
, 1, "{ IOPROX RFIDs... }"},
1157 {"pcf7931", CmdLFPCF7931
, 1, "{ PCF7931 RFIDs... }"},
1158 {"ti", CmdLFTI
, 1, "{ TI RFIDs... }"},
1159 {"t55xx", CmdLFT55XX
, 1, "{ T55X7 RFIDs... }"},
1161 {"config", CmdLFSetConfig
, 0, "Set config for LF sampling, bit/sample, decimation, frequency"},
1163 {"cmdread", CmdLFCommandRead
, 0, "<off period> <'0' period> <'1' period> <command> ['h' 134] \n\t\t-- Modulate LF reader field to send command before read (all periods in microseconds)"},
1164 {"flexdemod", CmdFlexdemod
, 1, "Demodulate samples for FlexPass"},
1165 {"indalademod", CmdIndalaDemod
, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
1166 {"indalaclone", CmdIndalaClone
, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
1167 {"read", CmdLFRead
, 0, "['s' silent] Read 125/134 kHz LF ID-only tag. Do 'lf read h' for help"},
1168 {"search", CmdLFfind
, 1, "[offline] ['u'] Read and Search for valid known tag (in offline mode it you can load first then search) \n\t\t- 'u' to search for unknown tags"},
1169 {"sim", CmdLFSim
, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
1170 {"simask", CmdLFaskSim
, 0, "[clock] [invert <1|0>] [manchester/raw <'m'|'r'>] [msg separator 's'] [d <hexdata>] \n\t\t-- Simulate LF ASK tag from demodbuffer or input"},
1171 {"simfsk", CmdLFfskSim
, 0, "[c <clock>] [i] [H <fcHigh>] [L <fcLow>] [d <hexdata>] \n\t\t-- Simulate LF FSK tag from demodbuffer or input"},
1172 {"simpsk", CmdLFpskSim
, 0, "[1|2|3] [c <clock>] [i] [r <carrier>] [d <raw hex to sim>] \n\t\t-- Simulate LF PSK tag from demodbuffer or input"},
1173 {"simbidir", CmdLFSimBidir
, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
1174 {"snoop", CmdLFSnoop
, 0, "['l'|'h'|<divisor>] [trigger threshold] -- Snoop LF (l:125khz, h:134khz)"},
1175 {"vchdemod", CmdVchDemod
, 1, "['clone'] -- Demodulate samples for VeriChip"},
1176 {NULL
, NULL
, 0, NULL
}
1179 int CmdLF(const char *Cmd
)
1181 CmdsParse(CommandTable
, Cmd
);
1185 int CmdHelp(const char *Cmd
)
1187 CmdsHelp(CommandTable
);