]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdlfhid.c
CHG: starting to add the legic changes.. *work in progress*
[proxmark3-svn] / client / cmdlfhid.c
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
2// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3//
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
6// the license.
7//-----------------------------------------------------------------------------
8// Low frequency HID commands
9//-----------------------------------------------------------------------------
10
7fe9b0b7 11#include "cmdlfhid.h"
12
13static int CmdHelp(const char *Cmd);
f4fbfb83 14
3a532acf 15int usage_lf_hid_wiegand(void){
e13ccb6b 16 PrintAndLog("This command converts facility code/card number to Wiegand code");
758f5ee3 17 PrintAndLog("Usage: lf hid wiegand [h] [OEM] [FC] [CN]");
18
f4fbfb83 19 PrintAndLog("Options:");
e13ccb6b 20 PrintAndLog(" h - This help");
758f5ee3 21 PrintAndLog(" OEM - OEM number / site code");
e13ccb6b 22 PrintAndLog(" FC - facility code");
23 PrintAndLog(" CN - card number");
f4fbfb83 24 PrintAndLog("Examples:");
3a532acf 25 PrintAndLog(" lf hid wiegand 0 101 2001");
26 return 0;
27}
758f5ee3 28int usage_lf_hid_sim(void){
29 PrintAndLog("HID Tag simulator");
30 PrintAndLog("");
31 PrintAndLog("Usage: lf hid sim [h] [ID]");
32 PrintAndLog("Options:");
33 PrintAndLog(" h - This help");
34 PrintAndLog(" ID - HID id");
35 PrintAndLog("Examples:");
36 PrintAndLog(" lf hid sim 224");
37 return 0;
38}
39int usage_lf_hid_clone(void){
40 PrintAndLog("Clone HID to T55x7. Tag must be on antenna. ");
41 PrintAndLog("");
42 PrintAndLog("Usage: lf hid clone [h] [ID] <L>");
43 PrintAndLog("Options:");
44 PrintAndLog(" h - This help");
45 PrintAndLog(" ID - HID id");
46 PrintAndLog(" L - 84bit ID");
47 PrintAndLog("Examples:");
48 PrintAndLog(" lf hid clone 224");
49 PrintAndLog(" lf hid clone 224 L");
50 return 0;
51}
3a532acf 52int usage_lf_hid_brute(void){
e13ccb6b 53 PrintAndLog("Enables bruteforce of HID readers with specified facility code.");
89603cbd 54 PrintAndLog("This is a attack against reader. if cardnumber is given, it starts with it and goes up / down one step");
55 PrintAndLog("if cardnumber is not given, it starts with 1 and goes up to 65535");
3a532acf 56 PrintAndLog("");
89603cbd 57 PrintAndLog("Usage: lf hid brute [h] a <format> f <facility-code> c <cardnumber> d <delay>");
3a532acf 58 PrintAndLog("Options :");
89603cbd 59 PrintAndLog(" h : This help");
60 PrintAndLog(" a <format> : 26|33|34|35|37|40|44|84");
61 PrintAndLog(" f <facility-code> : 8-bit value HID facility code");
62 PrintAndLog(" c <cardnumber> : (optional) cardnumber to start with, max 65535");
63 PrintAndLog(" d <delay> : delay betweens attempts in ms. Default 1000ms");
3a532acf 64 PrintAndLog("");
89603cbd 65 PrintAndLog("Samples:");
66 PrintAndLog(" lf hid brute a 26 f 224");
67 PrintAndLog(" lf hid brute a 26 f 21 d 2000");
68 PrintAndLog(" lf hid brute a 26 f 21 c 200 d 2000");
f4fbfb83 69 return 0;
70}
758f5ee3 71
89603cbd 72static int sendPing(void){
73 UsbCommand ping = {CMD_PING, {1, 2, 3}};
74 SendCommand(&ping);
75 SendCommand(&ping);
76 SendCommand(&ping);
77 clearCommandBuffer();
78 UsbCommand resp;
79 if (WaitForResponseTimeout(CMD_ACK, &resp, 1000))
80 return 0;
81 return 1;
82}
83static bool sendTry(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint32_t delay, uint8_t *bs){
84
85 PrintAndLog("Trying FC: %u; CN: %u", fc, cn);
86
87 calcWiegand( fmtlen, fc, cn, bs);
88
89 uint64_t arg1 = bytebits_to_byte(bs,32);
90 uint64_t arg2 = bytebits_to_byte(bs+32,32);
91 UsbCommand c = {CMD_HID_SIM_TAG, {arg1, arg2, 0}};
92 clearCommandBuffer();
93 SendCommand(&c);
94 msleep(delay);
95 sendPing();
96 return TRUE;
97}
98
3a532acf 99int CmdHIDDemodFSK(const char *Cmd) {
f4fbfb83 100 int findone = ( Cmd[0] == '1' ) ? 1 : 0;
101 UsbCommand c = {CMD_HID_DEMOD_FSK, {findone, 0 , 0}};
102 clearCommandBuffer();
103 SendCommand(&c);
104 return 0;
7fe9b0b7 105}
106
3a532acf 107int CmdHIDSim(const char *Cmd) {
f4fbfb83 108 unsigned int hi = 0, lo = 0;
109 int n = 0, i = 0;
38b20f75 110
758f5ee3 111 uint8_t ctmp = param_getchar(Cmd, 0);
112 if ( strlen(Cmd) == 0 || ctmp == 'H' || ctmp == 'h' ) return usage_lf_hid_sim();
113
f4fbfb83 114 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
115 hi = (hi << 4) | (lo >> 28);
116 lo = (lo << 4) | (n & 0xf);
117 }
38b20f75 118
f4fbfb83 119 PrintAndLog("Emulating tag with ID %x%16x", hi, lo);
120 PrintAndLog("Press pm3-button to abort simulation");
38b20f75 121
f4fbfb83 122 UsbCommand c = {CMD_HID_SIM_TAG, {hi, lo, 0}};
123 clearCommandBuffer();
124 SendCommand(&c);
125 return 0;
38b20f75 126}
127
3a532acf 128int CmdHIDClone(const char *Cmd) {
758f5ee3 129
f4fbfb83 130 unsigned int hi2 = 0, hi = 0, lo = 0;
131 int n = 0, i = 0;
132 UsbCommand c;
38b20f75 133
758f5ee3 134 uint8_t ctmp = param_getchar(Cmd, 0);
135 if ( strlen(Cmd) == 0 || ctmp == 'H' || ctmp == 'h' ) return usage_lf_hid_clone();
136
f4fbfb83 137 if (strchr(Cmd,'l') != 0) {
138 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
139 hi2 = (hi2 << 4) | (hi >> 28);
140 hi = (hi << 4) | (lo >> 28);
141 lo = (lo << 4) | (n & 0xf);
142 }
38b20f75 143
f4fbfb83 144 PrintAndLog("Cloning tag with long ID %x%08x%08x", hi2, hi, lo);
38b20f75 145
f4fbfb83 146 c.d.asBytes[0] = 1;
147 } else {
148 while (sscanf(&Cmd[i++], "%1x", &n ) == 1) {
149 hi = (hi << 4) | (lo >> 28);
150 lo = (lo << 4) | (n & 0xf);
151 }
38b20f75 152
f4fbfb83 153 PrintAndLog("Cloning tag with ID %x%08x", hi, lo);
38b20f75 154
f4fbfb83 155 hi2 = 0;
156 c.d.asBytes[0] = 0;
157 }
ec09b62d 158
f4fbfb83 159 c.cmd = CMD_HID_CLONE_TAG;
160 c.arg[0] = hi2;
161 c.arg[1] = hi;
162 c.arg[2] = lo;
163
164 clearCommandBuffer();
165 SendCommand(&c);
166 return 0;
ec09b62d 167}
758f5ee3 168// struct to handle wiegand
169typedef struct {
170 uint8_t FormatLen;
171 uint8_t SiteCode;
172 uint8_t FacilityCode;
173 uint8_t CardNumber;
174 uint8_t* Wiegand;
175 size_t Wiegand_n;
176 } wiegand_t;
177
178// static void addHIDMarker(uint8_t fmtlen, uint8_t *out) {
f4fbfb83 179
758f5ee3 180// }
181//static void getParity26(uint32_t *hi, uint32_t *lo){
182 // uint32_t result = 0;
183 // int i;
184 // // even parity
185 // for (i = 24;i >= 13;i--)
186 // result ^= (*lo >> i) & 1;
187 // // even parity 26th bit
188 // *lo |= result << 25;
189
190 // // odd parity
191 // result = 0;
192 // for (i = 12;i >= 1;i--)
193 // result ^= (*lo >> i) & 1;
194 // *lo |= !result;
195//}
196
197// static void getParity33(uint32_t *hi, uint32_t *lo){
198
199// }
200// static void getParity34(uint32_t *hi, uint32_t *lo){
201 // uint32_t result = 0;
202 // int i;
203
204 // // even parity
205 // for (i = 7;i >= 0;i--)
206 // result ^= (*hi >> i) & i;
207 // for (i = 31;i >= 24;i--)
208 // result ^= (*lo >> i) & 1;
209
210 // *hi |= result << 2;
211
212 // // odd parity bit
213 // result = 0;
214 // for (i = 23;i >= 1;i--)
215 // result ^= (*lo >> i) & 1;
216
217 // *lo |= !result;
218// }
219// static void getParity35(uint32_t *hi, uint32_t *lo){
220// }
221// static void getParity37S(uint32_t *hi,uint32_t *lo){
222 // uint32_t result = 0;
223 // int i;
224
225 // // even parity
226 // for (i = 4; i >= 0; i--)
227 // result ^= (*hi >> i) & 1;
228
229 // for (i = 31; i >= 20; i--)
230 // result ^= (*lo >> i) & 1;
231
232 // *hi |= result;
233
234 // // odd parity
235 // result = 0;
236 // for (i = 19; i >= 1; i--)
237 // result ^= (*lo >> i) & 1;
238
239 // *lo |= result;
240// }
241// static void getParity37H(uint32_t *hi, uint32_t *lo){
242 // uint32_t result = 0;
243 // int i;
244
245 // // even parity
246 // for (i = 4;i >= 0;i--)
247 // result ^= (*hi >> i) & 1;
248 // for (i = 31;i >= 20;i--)
249 // result ^= (*lo >> i) & 1;
250 // *hi |= result << 4;
251
252 // // odd parity
253 // result = 0;
254 // for (i = 19;i >= 1;i--)
255 // result ^= (*lo >> i) & 1;
256 // *lo |= result;
257// }
258
259//static void calc26(uint16_t fc, uint32_t cardno, uint32_t *hi, uint32_t *lo){
260void calc26(uint16_t fc, uint32_t cardno, uint8_t *out){
261
262 uint8_t wiegand[24];
263 num_to_bytebits(fc, 8, wiegand);
264 num_to_bytebits(cardno, 16, wiegand+8);
265 wiegand_add_parity(out, wiegand, sizeof(wiegand) );
266
267// *out |= (1 << 26); // why this?
268// *out |= (1 << 37); // bit format for hid?
f4fbfb83 269}
758f5ee3 270// static void calc33(uint16_t fc, uint32_t cardno, uint32_t *hi, uint32_t *lo){
271
272// }
273// static void calc34(uint16_t fc, uint32_t cardno, uint32_t *hi, uint32_t *lo){
274 // // put card number first bit 1 .. 20 //
275 // *lo = ((cardno & 0X000F7FFF) << 1) | ((fc & 0XFFFF) << 17);
276 // // set bit format for less than 37 bit format
277 // *hi = (1 << 5) | (fc >> 15);
278// }
279// static void calc35(uint16_t fc, uint32_t cardno, uint32_t *hi, uint32_t *lo){
280 // *lo = ((cardno & 0xFFFFF) << 1) | fc << 21;
281 // *hi = (1 << 5) | ((fc >> 11) & 1);
282// }
283// static void calc37S(uint16_t fc, uint32_t cardno, uint32_t *hi, uint32_t *lo){
284 // // FC 2 - 17 - 16 bit
285 // // cardno 18 - 36 - 19 bit
286 // // Even P1 1 - 19
287 // // Odd P37 19 - 36
288
289 // fc = fc & 0xFFFF;
290 // *lo = ((fc << 20) | (cardno & 0x7FFFF) << 1);
291 // *hi = (fc >> 12);
292// }
293// static void calc37H(uint64_t cardno, uint32_t *hi, uint32_t *lo){
294 // // SC NONE
295 // // cardno 1-35 34 bits
296 // // Even Parity 0th bit 1-18
297 // // Odd Parity 36th bit 19-35
298 // cardno = (cardno & 0x00000003FFFFFFFF);
299 // *lo = (cardno << 1);
300 // *hi = (cardno >> 31);
301// }
302// static void calc40(uint64_t cardno, uint32_t *hi, uint32_t *lo){
303 // cardno = (cardno & 0xFFFFFFFFFF);
304 // *lo = ((cardno & 0xFFFFFFFF) << 1 );
305 // *hi = (cardno >> 31);
306// }
307
89603cbd 308void calcWiegand(uint8_t fmtlen, uint16_t fc, uint64_t cardno, uint8_t *bits){
758f5ee3 309
310 // uint32_t hi = 0, lo = 0;
311 // uint32_t cn32 = (cardno & 0xFFFFFFFF);
312 // switch ( fmtlen ) {
313 // case 26 : {
314 // calc26(fc, cn32, bits);
315 // addHIDFormatMarker(fmtlen, bits);
316 // break;
317 // }
318 // case 33 : {
319 // // calc33(fc, cn32, hi, lo);
320 // // getParity33(hi, lo);
321 // break;
322 // }
323 // case 34 : {
324 // calc34(fc, cn32, hi, lo);
325 // getParity34(hi, lo);
326 // break;
327 // }
328 // case 35 : {
329 // calc35(fc, cn32, hi, lo);
330 // getParity35(hi, lo);
331 // break;
332 // }
333 // case 37 : {
334 // calc37S(fc, cn32, hi, lo);
335 // getParity37S(hi, lo);
336 // break;
337 // }
338 // case 38 : {
339 // calc37H(cn32, hi, lo);
340 // getParity37H(hi, lo);
341 // break;
342 // }
343 // case 40 : calc40(cardno, hi, lo); break;
344 // case 44 : { break; }
345 // case 84 : { break; }
346 // }
f4fbfb83 347
3a532acf 348}
349
350int CmdHIDWiegand(const char *Cmd) {
758f5ee3 351 uint32_t oem = 0, fc = 0;
3a532acf 352 uint64_t cardnum = 0;
353
80920fac 354 uint32_t blocks[2] = {0,0};
34c81fe0 355 uint32_t wiegand[2] = {0,0};
758f5ee3 356
357 uint8_t bits[96];
358 uint8_t *bs = bits;
359 memset(bs, 0, sizeof(bits));
360
3a532acf 361 uint8_t ctmp = param_getchar(Cmd, 0);
e1ad67ea 362 if ( strlen(Cmd) == 0 || strlen(Cmd) < 3 || ctmp == 'H' || ctmp == 'h' ) return usage_lf_hid_wiegand();
3a532acf 363
364 oem = param_get8(Cmd, 0);
365 fc = param_get32ex(Cmd, 1, 0, 10);
366 cardnum = param_get64ex(Cmd, 2, 0, 10);
367
758f5ee3 368 //
3a532acf 369 uint8_t ftmlen[] = {26,33,34,35,37,38,40};
758f5ee3 370
e92948c6 371 PrintAndLog("HID | OEM | FC | CN | Wiegand | HID Formatted");
372 PrintAndLog("----+-----+-----+-------+-----------+--------------------");
3a532acf 373 for (uint8_t i = 0; i < sizeof(ftmlen); i++){
758f5ee3 374 calcWiegand( ftmlen[i], fc, cardnum, bs);
375 blocks[0] = bytebits_to_byte(bs,32);
376 blocks[1] = bytebits_to_byte(bs+32,32);
e92948c6 377 PrintAndLog(" %d | %d | %d | %llu | %08X%08X | %08X%08X ",
758f5ee3 378 ftmlen,
e92948c6 379 oem,
758f5ee3 380 fc,
381 cardnum,
382 wiegand[0],
383 wiegand[1],
384 blocks[0],
385 blocks[1]
386 );
3a532acf 387 }
e92948c6 388 PrintAndLog("----+-----+-----+-------+-----------+--------------------");
3a532acf 389 return 0;
390}
391
392int CmdHIDBrute(const char *Cmd){
393
89603cbd 394 bool errors = false;
395 uint32_t fc = 0, cn = 0, delay = 1000;
396 uint8_t fmtlen = 0;
758f5ee3 397 uint8_t bits[96];
398 uint8_t *bs = bits;
399 memset(bs, 0, sizeof(bits));
89603cbd 400 uint8_t cmdp = 0;
401
402 while(param_getchar(Cmd, cmdp) != 0x00 && !errors) {
403 switch(param_getchar(Cmd, cmdp)) {
404 case 'h':
405 case 'H':
406 return usage_lf_hid_brute();
407 case 'f':
408 case 'F':
409 fc = param_get32ex(Cmd ,cmdp+1, 0, 10);
410 if ( !fc )
411 errors = true;
412 cmdp += 2;
413 break;
414 case 'd':
415 case 'D':
416 // delay between attemps, defaults to 1000ms.
417 delay = param_get32ex(Cmd, cmdp+1, 1000, 10);
418 cmdp += 2;
419 break;
420 case 'c':
421 case 'C':
422 cn = param_get32ex(Cmd, cmdp+1, 0, 10);
423 // truncate cardnumber.
424 cn &= 0xFFFF;
425 cmdp += 2;
426 break;
427 case 'a':
428 case 'A':
429 fmtlen = param_get8(Cmd, cmdp+1);
430 cmdp += 2;
431 uint8_t ftms[] = {26,33,34,35,37};
432 for ( uint8_t i = 0; i < sizeof(ftms); i++){
433 if ( ftms[i] == fmtlen ) {
434 errors = FALSE;
435 }
436 }
437 break;
438 default:
439 PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));
440 errors = true;
441 break;
3a532acf 442 }
443 }
89603cbd 444 if ( fc == 0 ) errors = true;
445 if ( errors ) return usage_lf_hid_brute();
3a532acf 446
e13ccb6b 447 PrintAndLog("Brute-forcing HID reader");
3a532acf 448 PrintAndLog("Press pm3-button to abort simulation or run another command");
89603cbd 449
450 uint16_t up = cn;
451 uint16_t down = cn;
452
453 for (;;){
454
455 if ( offline ) {
456 printf("Device offline\n");
457 return 2;
458 }
459
3a532acf 460 if (ukbhit()) {
461 PrintAndLog("aborted via keyboard!");
89603cbd 462 return sendPing();
3a532acf 463 }
3a532acf 464
89603cbd 465 // Do one up
466 if ( up < 0xFFFF )
467 if ( !sendTry(fmtlen, fc, up++, delay, bs)) return 1;
468
469 // Do one down (if cardnumber is given)
470 if ( cn > 1 )
471 if ( down > 1 )
472 if ( !sendTry(fmtlen, fc, --down, delay, bs)) return 1;
3a532acf 473 }
f4fbfb83 474 return 0;
475}
476
477static command_t CommandTable[] = {
e13ccb6b 478 {"help", CmdHelp, 1, "This help"},
89603cbd 479 {"fskdemod",CmdHIDDemodFSK, 0, "Realtime HID FSK demodulator"},
480 {"sim", CmdHIDSim, 0, "HID tag simulator"},
481 {"clone", CmdHIDClone, 0, "Clone HID to T55x7"},
482 {"wiegand", CmdHIDWiegand, 0, "Convert facility code/card number to Wiegand code"},
483 {"brute", CmdHIDBrute, 0, "Bruteforce card number against reader"},
f4fbfb83 484 {NULL, NULL, 0, NULL}
7fe9b0b7 485};
486
f4fbfb83 487int CmdLFHID(const char *Cmd) {
4c36581b 488 clearCommandBuffer();
f4fbfb83 489 CmdsParse(CommandTable, Cmd);
490 return 0;
7fe9b0b7 491}
492
f4fbfb83 493int CmdHelp(const char *Cmd) {
494 CmdsHelp(CommandTable);
495 return 0;
7fe9b0b7 496}
Impressum, Datenschutz