2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
2017-07-30 15:17:48 +08:00
|
|
|
// 2016,2017, marshmellow, iceman
|
2010-02-21 08:47:22 +08:00
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
2019-09-19 01:43:55 +08:00
|
|
|
// Low frequency HID commands (known)
|
|
|
|
//
|
|
|
|
// Useful resources:
|
|
|
|
// RF interface, programming a T55x7 clone, 26-bit HID H10301 encoding:
|
|
|
|
// http://www.proxmark.org/files/Documents/125%20kHz%20-%20HID/HID_format_example.pdf
|
|
|
|
//
|
|
|
|
// "Understanding Card Data Formats"
|
|
|
|
// https://www.hidglobal.com/sites/default/files/hid-understanding_card_data_formats-wp-en.pdf
|
|
|
|
//
|
|
|
|
// "What Format Do You Need?"
|
|
|
|
// https://www.hidglobal.com/sites/default/files/resource_files/hid-prox-br-en.pdf
|
2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
#include "cmdlfhid.h"
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include "cmdparser.h" // command_t
|
|
|
|
#include "comms.h"
|
|
|
|
#include "commonutil.h" // ARRAYLEN
|
|
|
|
#include "ui.h"
|
|
|
|
#include "graph.h"
|
|
|
|
#include "cmddata.h" //for g_debugMode, demodbuff cmds
|
|
|
|
#include "cmdlf.h" // lf_read
|
|
|
|
#include "util_posix.h"
|
|
|
|
#include "lfdemod.h"
|
2019-10-13 06:48:26 +08:00
|
|
|
#include "wiegand_formats.h"
|
2019-08-08 22:57:33 +08:00
|
|
|
|
2017-02-08 05:27:28 +08:00
|
|
|
#ifndef BITS
|
|
|
|
# define BITS 96
|
|
|
|
#endif
|
|
|
|
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
static int CmdHelp(const char *Cmd);
|
2019-09-19 19:46:38 +08:00
|
|
|
|
|
|
|
static int usage_lf_hid_watch(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Enables HID compatible reader mode printing details.");
|
|
|
|
PrintAndLogEx(NORMAL, "By default, values are printed and logged until the button is pressed or another USB command is issued.");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
2019-09-22 19:04:28 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf hid watch");
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
2019-09-19 19:46:38 +08:00
|
|
|
PrintAndLogEx(NORMAL, " lf hid watch");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
2016-01-13 07:16:11 +08:00
|
|
|
}
|
2019-04-10 19:06:05 +08:00
|
|
|
static int usage_lf_hid_sim(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Enables simulation of HID card with card number.");
|
|
|
|
PrintAndLogEx(NORMAL, "Simulation runs until the button is pressed or another USB command is issued.");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf hid sim [h] [ID]");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h - This help");
|
|
|
|
PrintAndLogEx(NORMAL, " ID - HID id");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf hid sim 2006ec0c86");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
2016-07-29 03:50:54 +08:00
|
|
|
}
|
2019-04-10 19:06:05 +08:00
|
|
|
static int usage_lf_hid_clone(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Clone HID to T55x7. Tag must be on antenna. ");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
2019-09-15 07:16:54 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf hid clone [h] [l] ID");
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h - This help");
|
2019-09-15 07:16:54 +08:00
|
|
|
PrintAndLogEx(NORMAL, " l - 84bit ID");
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, " ID - HID id");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf hid clone 2006ec0c86");
|
2019-09-15 07:16:54 +08:00
|
|
|
PrintAndLogEx(NORMAL, " lf hid clone l 2006ec0c86");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
2016-07-29 03:50:54 +08:00
|
|
|
}
|
2019-04-10 19:06:05 +08:00
|
|
|
static int usage_lf_hid_brute(void) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Enables bruteforce of HID readers with specified facility code.");
|
|
|
|
PrintAndLogEx(NORMAL, "This is a attack against reader. if cardnumber is given, it starts with it and goes up / down one step");
|
|
|
|
PrintAndLogEx(NORMAL, "if cardnumber is not given, it starts with 1 and goes up to 65535");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
2020-02-29 16:27:55 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf hid brute [h] [v] w <format> [<field> (decimal)>] [up|down] {...}");
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h : This help");
|
2020-02-29 16:27:55 +08:00
|
|
|
PrintAndLogEx(NORMAL, " w <format> : see " _YELLOW_("`wiegand list`") "for available formats");
|
2019-09-19 19:46:38 +08:00
|
|
|
PrintAndLogEx(NORMAL, " f <facility-code> : facility code");
|
|
|
|
PrintAndLogEx(NORMAL, " c <cardnumber> : card number to start with");
|
|
|
|
PrintAndLogEx(NORMAL, " i <issuelevel> : issue level");
|
|
|
|
PrintAndLogEx(NORMAL, " o <oem> : OEM code");
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, " d <delay> : delay betweens attempts in ms. Default 1000ms");
|
|
|
|
PrintAndLogEx(NORMAL, " v : verbose logging, show all tries");
|
2020-02-29 16:27:55 +08:00
|
|
|
PrintAndLogEx(NORMAL, " up : direction to increment card number. (default is both directions)");
|
|
|
|
PrintAndLogEx(NORMAL, " down : direction to decrement card number. (default is both directions)");
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
2019-09-19 19:46:38 +08:00
|
|
|
PrintAndLogEx(NORMAL, " lf hid brute w H10301 f 224");
|
|
|
|
PrintAndLogEx(NORMAL, " lf hid brute w H10301 f 21 d 2000");
|
|
|
|
PrintAndLogEx(NORMAL, " lf hid brute v w H10301 f 21 c 200 d 2000");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
ADD: @go_tus 's code to generate wiegand codes from FacilityCode/SiteCode and Cardnumber. Almost there, formatlength supported is 26,34,35,37,38,40,44,75,84, when its finised.
2016-01-08 21:28:13 +08:00
|
|
|
}
|
2016-07-29 03:50:54 +08:00
|
|
|
|
2017-08-12 00:13:58 +08:00
|
|
|
// sending three times. Didn't seem to break the previous sim?
|
2019-05-22 22:10:48 +08:00
|
|
|
static int sendPing(void) {
|
2019-05-08 05:35:09 +08:00
|
|
|
SendCommandNG(CMD_PING, NULL, 0);
|
|
|
|
SendCommandNG(CMD_PING, NULL, 0);
|
|
|
|
SendCommandNG(CMD_PING, NULL, 0);
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
2019-04-18 18:43:35 +08:00
|
|
|
PacketResponseNG resp;
|
2019-05-08 05:35:09 +08:00
|
|
|
if (!WaitForResponseTimeout(CMD_PING, &resp, 1000))
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_ETIMEOUT;
|
|
|
|
return PM3_SUCCESS;
|
2016-08-26 23:18:48 +08:00
|
|
|
}
|
2019-09-19 19:46:38 +08:00
|
|
|
static int sendTry(uint8_t format_idx, wiegand_card_t *card, uint32_t delay, bool verbose) {
|
|
|
|
|
|
|
|
wiegand_message_t packed;
|
|
|
|
memset(&packed, 0, sizeof(wiegand_message_t));
|
|
|
|
|
|
|
|
if (HIDPack(format_idx, card, &packed) == false) {
|
|
|
|
PrintAndLogEx(WARNING, "The card data could not be encoded in the selected format.");
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2016-08-26 23:18:48 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
if (verbose)
|
2019-10-06 05:56:19 +08:00
|
|
|
PrintAndLogEx(INFO, "Trying FC: %u; CN: %"PRIu64"; Issue level: %u; OEM: %u", card->FacilityCode, card->CardNumber, card->IssueLevel, card->OEM);
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-09-19 19:46:38 +08:00
|
|
|
lf_hidsim_t payload;
|
|
|
|
payload.hi2 = packed.Top;
|
|
|
|
payload.hi = packed.Mid;
|
|
|
|
payload.lo = packed.Bot;
|
2016-08-26 23:18:48 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
2017-08-12 00:13:58 +08:00
|
|
|
|
2019-09-19 19:46:38 +08:00
|
|
|
SendCommandNG(CMD_LF_HID_SIMULATE, (uint8_t *)&payload, sizeof(payload));
|
2019-10-13 06:48:26 +08:00
|
|
|
/*
|
|
|
|
PacketResponseNG resp;
|
|
|
|
WaitForResponse(CMD_LF_HID_SIMULATE, &resp);
|
|
|
|
if (resp.status == PM3_EOPABORTED)
|
|
|
|
return resp.status;
|
|
|
|
*/
|
2019-03-10 06:35:06 +08:00
|
|
|
msleep(delay);
|
2019-05-22 22:10:48 +08:00
|
|
|
return sendPing();
|
2016-08-26 23:18:48 +08:00
|
|
|
}
|
|
|
|
|
2017-07-30 15:17:48 +08:00
|
|
|
//by marshmellow (based on existing demod + holiman's refactor)
|
|
|
|
//HID Prox demod - FSK RF/50 with preamble of 00011101 (then manchester encoded)
|
|
|
|
//print full HID Prox ID and some bit format details if found
|
2019-04-12 07:55:25 +08:00
|
|
|
static int CmdHIDDemod(const char *Cmd) {
|
2019-04-10 18:23:40 +08:00
|
|
|
(void)Cmd; // Cmd is not used so far
|
2019-05-23 18:12:20 +08:00
|
|
|
|
|
|
|
// HID simulation etc uses 0/1 as signal data. This must be converted in order to demod it back again
|
2019-06-08 03:40:33 +08:00
|
|
|
if (isGraphBitstream()) {
|
2019-05-23 18:12:20 +08:00
|
|
|
convertGraphFromBitstream();
|
|
|
|
}
|
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
//raw fsk demod no manchester decoding no start bit finding just get binary from wave
|
2019-03-10 07:00:59 +08:00
|
|
|
uint32_t hi2 = 0, hi = 0, lo = 0;
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-05-23 18:12:20 +08:00
|
|
|
uint8_t bits[GraphTraceLen];
|
2019-03-10 06:35:06 +08:00
|
|
|
size_t size = getFromGraphBuf(bits);
|
|
|
|
if (size == 0) {
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID not enough samples"));
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_ESOFT;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
//get binary from fsk wave
|
|
|
|
int waveIdx = 0;
|
|
|
|
int idx = HIDdemodFSK(bits, &size, &hi2, &hi, &lo, &waveIdx);
|
|
|
|
if (idx < 0) {
|
|
|
|
|
|
|
|
if (idx == -1)
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID not enough samples"));
|
2019-03-10 06:35:06 +08:00
|
|
|
else if (idx == -2)
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID just noise detected"));
|
2019-03-10 06:35:06 +08:00
|
|
|
else if (idx == -3)
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID problem during FSK demod"));
|
2019-03-10 06:35:06 +08:00
|
|
|
else if (idx == -4)
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID preamble not found"));
|
2019-03-10 06:35:06 +08:00
|
|
|
else if (idx == -5)
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID error in Manchester data, size %zu, size"));
|
2019-03-10 06:35:06 +08:00
|
|
|
else
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID error demoding fsk %d, idx"));
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_ESOFT;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
|
2019-04-07 03:46:00 +08:00
|
|
|
setDemodBuff(bits, size, idx);
|
2019-03-10 07:00:59 +08:00
|
|
|
setClockGrid(50, waveIdx + (idx * 50));
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
if (hi2 == 0 && hi == 0 && lo == 0) {
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - " _RED_("HID no values found"));
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_ESOFT;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
if (hi2 != 0) { //extra large HID tags
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "HID Prox TAG ID: " _GREEN_("%x%08x%08x (%u)"), hi2, hi, lo, (lo >> 1) & 0xFFFF);
|
2019-03-10 06:35:06 +08:00
|
|
|
} else { //standard HID tags <38 bits
|
|
|
|
uint8_t fmtLen = 0;
|
|
|
|
uint32_t cc = 0;
|
|
|
|
uint32_t fc = 0;
|
|
|
|
uint32_t cardnum = 0;
|
2019-04-11 08:34:42 +08:00
|
|
|
uint8_t oem = 0;
|
2019-03-10 07:00:59 +08:00
|
|
|
if (((hi >> 5) & 1) == 1) {//if bit 38 is set then < 37 bit format is used
|
|
|
|
uint32_t lo2 = 0;
|
|
|
|
lo2 = (((hi & 31) << 12) | (lo >> 20)); //get bits 21-37 to check for format len bit
|
2019-03-10 06:35:06 +08:00
|
|
|
uint8_t idx3 = 1;
|
2019-03-10 07:00:59 +08:00
|
|
|
while (lo2 > 1) { //find last bit set to 1 (format len bit)
|
2019-03-10 06:35:06 +08:00
|
|
|
lo2 >>= 1;
|
|
|
|
idx3++;
|
|
|
|
}
|
|
|
|
fmtLen = idx3 + 19;
|
|
|
|
fc = 0;
|
|
|
|
cardnum = 0;
|
2019-03-10 07:00:59 +08:00
|
|
|
if (fmtLen == 26) {
|
2019-03-10 06:35:06 +08:00
|
|
|
cardnum = (lo >> 1) & 0xFFFF;
|
2019-03-10 07:00:59 +08:00
|
|
|
fc = (lo >> 17) & 0xFF;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2019-03-10 07:00:59 +08:00
|
|
|
if (fmtLen == 32 && (lo & 0x40000000)) { //if 32 bit and Kastle bit set
|
2019-03-10 06:35:06 +08:00
|
|
|
cardnum = (lo >> 1) & 0xFFFF;
|
|
|
|
fc = (lo >> 17) & 0xFF;
|
|
|
|
cc = (lo >> 25) & 0x1F;
|
|
|
|
}
|
2019-03-10 07:00:59 +08:00
|
|
|
if (fmtLen == 34) {
|
2019-03-10 06:35:06 +08:00
|
|
|
cardnum = (lo >> 1) & 0xFFFF;
|
2019-03-10 07:00:59 +08:00
|
|
|
fc = ((hi & 1) << 15) | (lo >> 17);
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2019-03-10 07:00:59 +08:00
|
|
|
if (fmtLen == 35) {
|
2019-03-10 06:35:06 +08:00
|
|
|
cardnum = (lo >> 1) & 0xFFFFF;
|
2019-03-10 07:00:59 +08:00
|
|
|
fc = ((hi & 1) << 11) | (lo >> 21);
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2019-04-11 13:40:50 +08:00
|
|
|
if (fmtLen == 36) {
|
2019-04-11 08:34:42 +08:00
|
|
|
oem = (lo >> 1) & 0x3;
|
|
|
|
cardnum = (lo >> 3) & 0xFFFF;
|
|
|
|
fc = (hi & 0x7) << 13 | ((lo >> 19) & 0xFFFF);
|
|
|
|
}
|
2019-03-10 07:00:59 +08:00
|
|
|
} else { //if bit 38 is not set then 37 bit format is used
|
2019-03-10 06:35:06 +08:00
|
|
|
fmtLen = 37;
|
2019-06-12 21:41:23 +08:00
|
|
|
cardnum = (lo >> 1) & 0x7FFFF;
|
|
|
|
fc = ((hi & 0xF) << 12) | (lo >> 20);
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2019-03-10 07:00:59 +08:00
|
|
|
if (fmtLen == 32 && (lo & 0x40000000)) { //if 32 bit and Kastle bit set
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "HID Prox TAG (Kastle format) ID: " _GREEN_("%x%08x (%u)")"- Format Len: 32bit - CC: %u - FC: %u - Card: %u", hi, lo, (lo >> 1) & 0xFFFF, cc, fc, cardnum);
|
2019-03-10 07:00:59 +08:00
|
|
|
} else {
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "HID Prox TAG ID: " _GREEN_("%x%08x (%u)")"- Format Len: %ubit - OEM: %03u - FC: %u - Card: %u",
|
2019-04-11 13:40:50 +08:00
|
|
|
hi, lo, cardnum, fmtLen, oem, fc, cardnum);
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-13 22:17:31 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: HID idx: " _GREEN_("%d"), " Len: %zu", Printing Demod Buffer:", idx, size);
|
2019-03-10 06:35:06 +08:00
|
|
|
if (g_debugMode)
|
|
|
|
printDemodBuff();
|
|
|
|
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
2017-07-30 15:17:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// this read is the "normal" read, which download lf signal and tries to demod here.
|
2019-04-12 07:55:25 +08:00
|
|
|
static int CmdHIDRead(const char *Cmd) {
|
2020-01-10 03:02:01 +08:00
|
|
|
lf_read(false, 12000);
|
2019-03-10 06:35:06 +08:00
|
|
|
return CmdHIDDemod(Cmd);
|
2017-07-30 15:17:48 +08:00
|
|
|
}
|
2019-09-19 19:46:38 +08:00
|
|
|
|
2017-07-30 15:17:48 +08:00
|
|
|
// this read loops on device side.
|
|
|
|
// uses the demod in lfops.c
|
2019-09-19 19:46:38 +08:00
|
|
|
static int CmdHIDWatch(const char *Cmd) {
|
|
|
|
uint8_t ctmp = tolower(param_getchar(Cmd, 0));
|
2019-09-22 19:04:28 +08:00
|
|
|
if (ctmp == 'h') return usage_lf_hid_watch();
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
2019-09-22 19:04:28 +08:00
|
|
|
SendCommandNG(CMD_LF_HID_DEMOD, NULL, 0);
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
}
|
2019-09-19 19:46:38 +08:00
|
|
|
|
2019-04-12 07:55:25 +08:00
|
|
|
static int CmdHIDSim(const char *Cmd) {
|
2019-09-15 07:17:47 +08:00
|
|
|
lf_hidsim_t payload;
|
|
|
|
payload.longFMT = 0;
|
|
|
|
uint32_t hi2 = 0, hi = 0, lo = 0;
|
2019-03-10 06:35:06 +08:00
|
|
|
uint32_t n = 0, i = 0;
|
2013-03-13 15:13:19 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
uint8_t ctmp = tolower(param_getchar(Cmd, 0));
|
2019-03-10 07:00:59 +08:00
|
|
|
if (strlen(Cmd) == 0 || ctmp == 'h') return usage_lf_hid_sim();
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-09-15 07:17:47 +08:00
|
|
|
if (strchr(Cmd, 'l') != 0) {
|
|
|
|
i++;
|
|
|
|
while (sscanf(&Cmd[i++], "%1x", &n) == 1) {
|
|
|
|
hi2 = (hi2 << 4) | (hi >> 28);
|
|
|
|
hi = (hi << 4) | (lo >> 28);
|
|
|
|
lo = (lo << 4) | (n & 0xf);
|
|
|
|
}
|
|
|
|
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(INFO, "Simulating HID tag with long ID: " _GREEN_("%x%08x%08x"), hi2, hi, lo);
|
2019-09-15 07:17:47 +08:00
|
|
|
payload.longFMT = 1;
|
|
|
|
} else {
|
|
|
|
while (sscanf(&Cmd[i++], "%1x", &n) == 1) {
|
|
|
|
hi = (hi << 4) | (lo >> 28);
|
|
|
|
lo = (lo << 4) | (n & 0xf);
|
|
|
|
}
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Simulating HID tag with ID: " _GREEN_("%x%08x"), hi, lo);
|
2019-09-15 07:17:47 +08:00
|
|
|
hi2 = 0;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2013-03-13 15:13:19 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Press pm3-button to abort simulation");
|
2013-03-13 15:13:19 +08:00
|
|
|
|
2019-09-15 07:17:47 +08:00
|
|
|
payload.hi2 = hi2;
|
|
|
|
payload.hi = hi;
|
|
|
|
payload.lo = lo;
|
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
2019-09-15 07:17:47 +08:00
|
|
|
SendCommandNG(CMD_LF_HID_SIMULATE, (uint8_t *)&payload, sizeof(payload));
|
2019-05-09 06:08:59 +08:00
|
|
|
PacketResponseNG resp;
|
2019-08-04 01:17:00 +08:00
|
|
|
WaitForResponse(CMD_LF_HID_SIMULATE, &resp);
|
2019-05-23 18:12:20 +08:00
|
|
|
PrintAndLogEx(INFO, "Done");
|
2019-05-10 02:20:54 +08:00
|
|
|
if (resp.status != PM3_EOPABORTED)
|
2019-05-09 06:08:59 +08:00
|
|
|
return resp.status;
|
|
|
|
return PM3_SUCCESS;
|
2013-03-13 15:13:19 +08:00
|
|
|
}
|
|
|
|
|
2019-04-12 07:55:25 +08:00
|
|
|
static int CmdHIDClone(const char *Cmd) {
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
uint32_t hi2 = 0, hi = 0, lo = 0;
|
|
|
|
uint32_t n = 0, i = 0;
|
|
|
|
|
2019-09-19 19:46:38 +08:00
|
|
|
uint8_t ctmp = tolower(param_getchar(Cmd, 0));
|
|
|
|
if (strlen(Cmd) == 0 || ctmp == 'h') return usage_lf_hid_clone();
|
2019-04-19 23:03:39 +08:00
|
|
|
uint8_t longid[1] = {0};
|
2019-03-10 07:00:59 +08:00
|
|
|
if (strchr(Cmd, 'l') != 0) {
|
2019-09-15 07:16:54 +08:00
|
|
|
i++;
|
2019-03-10 07:00:59 +08:00
|
|
|
while (sscanf(&Cmd[i++], "%1x", &n) == 1) {
|
2019-03-10 06:35:06 +08:00
|
|
|
hi2 = (hi2 << 4) | (hi >> 28);
|
|
|
|
hi = (hi << 4) | (lo >> 28);
|
|
|
|
lo = (lo << 4) | (n & 0xf);
|
|
|
|
}
|
|
|
|
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(INFO, "Preparing to clone HID tag with long ID: " _GREEN_("%x%08x%08x"), hi2, hi, lo);
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-04-19 23:03:39 +08:00
|
|
|
longid[0] = 1;
|
2019-03-10 06:35:06 +08:00
|
|
|
} else {
|
2019-03-10 07:00:59 +08:00
|
|
|
while (sscanf(&Cmd[i++], "%1x", &n) == 1) {
|
2019-03-10 06:35:06 +08:00
|
|
|
hi = (hi << 4) | (lo >> 28);
|
|
|
|
lo = (lo << 4) | (n & 0xf);
|
|
|
|
}
|
2020-03-13 22:09:25 +08:00
|
|
|
PrintAndLogEx(INFO, "Preparing to clone HID tag with ID: " _GREEN_("%x%08x"), hi, lo);
|
2019-03-10 06:35:06 +08:00
|
|
|
hi2 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearCommandBuffer();
|
2020-02-04 03:53:50 +08:00
|
|
|
SendCommandMIX(CMD_LF_HID_CLONE, hi2, hi, lo, longid, sizeof(longid));
|
2020-03-02 20:59:41 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Done");
|
2020-03-11 00:05:45 +08:00
|
|
|
PrintAndLogEx(INFO, "Hint: try " _YELLOW_("`lf hid read`") "to verify");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
2011-10-15 23:15:49 +08:00
|
|
|
}
|
2019-03-25 07:04:28 +08:00
|
|
|
|
|
|
|
/*
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(NORMAL, "HID | OEM | FC | CN | Wiegand | HID Formatted");
|
|
|
|
PrintAndLogEx(NORMAL, "----+-----+------+---------+-----------+--------------------");
|
2019-09-19 19:46:38 +08:00
|
|
|
PrintAndLogEx(NORMAL, " %u | %03u | %03u | %" PRIu64 " | %" PRIX64 " | %" PRIX64,
|
2019-03-10 07:00:59 +08:00
|
|
|
fmtlen[i],
|
|
|
|
oem,
|
|
|
|
fc,
|
|
|
|
cardnum,
|
|
|
|
wiegand,
|
|
|
|
blocks
|
|
|
|
);
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
PrintAndLogEx(NORMAL, "----+-----+-----+-------+-----------+--------------------");
|
2019-09-19 19:46:38 +08:00
|
|
|
*/
|
2016-01-13 07:16:11 +08:00
|
|
|
|
2019-04-12 07:55:25 +08:00
|
|
|
static int CmdHIDBrute(const char *Cmd) {
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
bool errors = false, verbose = false;
|
2020-03-02 00:15:48 +08:00
|
|
|
uint32_t delay = 1000;
|
2019-03-10 06:35:06 +08:00
|
|
|
uint8_t cmdp = 0;
|
2019-09-19 19:46:38 +08:00
|
|
|
int format_idx = -1;
|
2020-02-29 16:27:55 +08:00
|
|
|
int direction = 0;
|
2019-09-19 19:46:38 +08:00
|
|
|
char format[16] = {0};
|
2020-02-29 16:27:55 +08:00
|
|
|
|
|
|
|
wiegand_card_t cn_hi, cn_low;
|
|
|
|
memset(&cn_hi, 0, sizeof(wiegand_card_t));
|
2020-03-02 00:15:48 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
2020-03-02 00:15:48 +08:00
|
|
|
|
2020-02-29 16:27:55 +08:00
|
|
|
char s[10] = {0};
|
|
|
|
if (param_getstr(Cmd, cmdp, s, sizeof(s)) > 0) {
|
|
|
|
if (strlen(s) > 1) {
|
|
|
|
str_lower((char *)s);
|
|
|
|
if (str_startswith(s, "up")) {
|
|
|
|
direction = 1;
|
|
|
|
} else if (str_startswith(s, "do")) {
|
|
|
|
direction = 2;
|
|
|
|
}
|
|
|
|
cmdp++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
2019-03-10 07:00:59 +08:00
|
|
|
case 'h':
|
|
|
|
return usage_lf_hid_brute();
|
2019-09-19 19:46:38 +08:00
|
|
|
case 'w':
|
|
|
|
param_getstr(Cmd, cmdp + 1, format, sizeof(format));
|
|
|
|
format_idx = HIDFindCardFormat(format);
|
|
|
|
if (format_idx == -1) {
|
2020-03-13 22:17:31 +08:00
|
|
|
PrintAndLogEx(WARNING, "Unknown format: " _YELLOW_("%s"), format);
|
2019-03-10 07:00:59 +08:00
|
|
|
errors = true;
|
2019-09-19 19:46:38 +08:00
|
|
|
}
|
|
|
|
cmdp += 2;
|
|
|
|
break;
|
|
|
|
case 'c':
|
2020-02-29 16:27:55 +08:00
|
|
|
cn_hi.CardNumber = param_get32ex(Cmd, cmdp + 1, 0, 10);
|
2019-03-10 07:00:59 +08:00
|
|
|
cmdp += 2;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
// delay between attemps, defaults to 1000ms.
|
|
|
|
delay = param_get32ex(Cmd, cmdp + 1, 1000, 10);
|
|
|
|
cmdp += 2;
|
|
|
|
break;
|
2019-09-19 19:46:38 +08:00
|
|
|
case 'f':
|
2020-02-29 16:27:55 +08:00
|
|
|
cn_hi.FacilityCode = param_get32ex(Cmd, cmdp + 1, 0, 10);
|
2019-03-10 07:00:59 +08:00
|
|
|
cmdp += 2;
|
|
|
|
break;
|
2019-09-19 19:46:38 +08:00
|
|
|
case 'i':
|
2020-02-29 16:27:55 +08:00
|
|
|
cn_hi.IssueLevel = param_get32ex(Cmd, cmdp + 1, 0, 10);
|
2019-09-19 19:46:38 +08:00
|
|
|
cmdp += 2;
|
|
|
|
break;
|
|
|
|
case 'o':
|
2020-02-29 16:27:55 +08:00
|
|
|
cn_hi.OEM = param_get32ex(Cmd, cmdp + 1, 0, 10);
|
2019-03-10 07:00:59 +08:00
|
|
|
cmdp += 2;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verbose = true;
|
|
|
|
cmdp++;
|
|
|
|
break;
|
|
|
|
default:
|
2020-03-13 22:17:31 +08:00
|
|
|
PrintAndLogEx(WARNING, "Unknown parameter: " _YELLOW_("%c"), param_getchar(Cmd, cmdp));
|
2019-03-10 07:00:59 +08:00
|
|
|
errors = true;
|
|
|
|
break;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
}
|
2020-02-29 16:27:55 +08:00
|
|
|
|
|
|
|
if (format_idx == -1) {
|
|
|
|
PrintAndLogEx(ERR, "You must select a wiegand format. See " _YELLOW_("`wiegand list`") "for available formats\n");
|
|
|
|
errors = true;
|
|
|
|
}
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
if (errors) return usage_lf_hid_brute();
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2020-02-29 16:27:55 +08:00
|
|
|
if (verbose) {
|
|
|
|
PrintAndLogEx(INFO, "Wiegand format#.. %i", format_idx);
|
|
|
|
PrintAndLogEx(INFO, "OEM#............. %u", cn_hi.OEM);
|
|
|
|
PrintAndLogEx(INFO, "ISSUE#........... %u", cn_hi.IssueLevel);
|
|
|
|
PrintAndLogEx(INFO, "Facility#........ %u", cn_hi.FacilityCode);
|
2020-03-02 00:15:48 +08:00
|
|
|
PrintAndLogEx(INFO, "Card#............ %" PRIu64, cn_hi.CardNumber);
|
2020-03-11 00:05:45 +08:00
|
|
|
switch (direction) {
|
2020-02-29 16:27:55 +08:00
|
|
|
case 0:
|
|
|
|
PrintAndLogEx(INFO, "Brute-forcing direction: " _YELLOW_("BOTH"));
|
|
|
|
break;
|
2020-03-02 00:15:48 +08:00
|
|
|
case 1:
|
2020-02-29 16:27:55 +08:00
|
|
|
PrintAndLogEx(INFO, "Brute-forcing direction: " _YELLOW_("UP"));
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
PrintAndLogEx(INFO, "Brute-forcing direction: " _YELLOW_("DOWN"));
|
|
|
|
break;
|
2020-03-11 00:05:45 +08:00
|
|
|
default:
|
|
|
|
break;
|
2020-02-29 16:27:55 +08:00
|
|
|
}
|
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(INFO, "Brute-forcing HID reader");
|
2020-02-29 16:27:55 +08:00
|
|
|
PrintAndLogEx(INFO, "Press pm3-button to abort simulation or press `enter` to exit");
|
|
|
|
|
|
|
|
// copy values to low.
|
|
|
|
cn_low = cn_hi;
|
2019-03-10 06:35:06 +08:00
|
|
|
|
|
|
|
// main loop
|
2020-02-29 16:27:55 +08:00
|
|
|
// iceman: could add options for bruteforcing OEM, ISSUE or FC aswell..
|
|
|
|
bool exitloop = false;
|
|
|
|
bool fin_hi, fin_low;
|
|
|
|
fin_hi = fin_low = false;
|
|
|
|
do {
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-05-01 05:52:40 +08:00
|
|
|
if (!session.pm3_present) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(WARNING, "Device offline\n");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_ENODATA;
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
|
2019-07-11 19:01:34 +08:00
|
|
|
if (kbd_enter_pressed()) {
|
2019-03-10 06:35:06 +08:00
|
|
|
PrintAndLogEx(INFO, "aborted via keyboard!");
|
|
|
|
return sendPing();
|
|
|
|
}
|
|
|
|
|
2020-02-29 16:27:55 +08:00
|
|
|
// do one up
|
|
|
|
if (direction != 2) {
|
|
|
|
if (cn_hi.CardNumber < 0xFFFF) {
|
|
|
|
cn_hi.CardNumber++;
|
|
|
|
if (sendTry(format_idx, &cn_hi, delay, verbose) != PM3_SUCCESS) return PM3_ESOFT;
|
|
|
|
} else {
|
|
|
|
fin_hi = true;
|
|
|
|
}
|
2019-09-19 19:46:38 +08:00
|
|
|
}
|
2020-03-11 00:05:45 +08:00
|
|
|
|
2020-02-29 16:27:55 +08:00
|
|
|
// do one down
|
|
|
|
if (direction != 1) {
|
|
|
|
if (cn_low.CardNumber > 0) {
|
|
|
|
cn_low.CardNumber--;
|
|
|
|
if (sendTry(format_idx, &cn_low, delay, verbose) != PM3_SUCCESS) return PM3_ESOFT;
|
|
|
|
} else {
|
|
|
|
fin_low = true;
|
|
|
|
}
|
2019-10-13 06:48:26 +08:00
|
|
|
}
|
2020-02-29 16:27:55 +08:00
|
|
|
|
|
|
|
switch (direction) {
|
2020-03-11 00:05:45 +08:00
|
|
|
case 0:
|
2020-02-29 16:27:55 +08:00
|
|
|
if (fin_hi && fin_low) {
|
|
|
|
exitloop = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
exitloop = fin_hi;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
exitloop = fin_low;
|
|
|
|
break;
|
2020-03-11 00:05:45 +08:00
|
|
|
default:
|
|
|
|
break;
|
2020-02-29 16:27:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} while (exitloop == false);
|
|
|
|
|
|
|
|
PrintAndLogEx(INFO, "Brute forcing finished");
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
ADD: @go_tus 's code to generate wiegand codes from FacilityCode/SiteCode and Cardnumber. Almost there, formatlength supported is 26,34,35,37,38,40,44,75,84, when its finised.
2016-01-08 21:28:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static command_t CommandTable[] = {
|
2019-05-02 02:48:15 +08:00
|
|
|
{"help", CmdHelp, AlwaysAvailable, "this help"},
|
2019-05-02 06:02:38 +08:00
|
|
|
{"demod", CmdHIDDemod, AlwaysAvailable, "demodulate HID Prox tag from the GraphBuffer"},
|
|
|
|
{"read", CmdHIDRead, IfPm3Lf, "attempt to read and extract tag data"},
|
2019-10-16 16:32:50 +08:00
|
|
|
{"clone", CmdHIDClone, IfPm3Lf, "clone HID tag to T55x7"},
|
2019-05-02 06:02:38 +08:00
|
|
|
{"sim", CmdHIDSim, IfPm3Lf, "simulate HID tag"},
|
|
|
|
{"brute", CmdHIDBrute, IfPm3Lf, "bruteforce card number against reader"},
|
2019-09-19 19:46:38 +08:00
|
|
|
{"watch", CmdHIDWatch, IfPm3Lf, "continuously watch for cards. Reader mode"},
|
2019-05-02 02:48:15 +08:00
|
|
|
{NULL, NULL, NULL, NULL}
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
};
|
|
|
|
|
2019-04-12 07:55:25 +08:00
|
|
|
static int CmdHelp(const char *Cmd) {
|
|
|
|
(void)Cmd; // Cmd is not used so far
|
|
|
|
CmdsHelp(CommandTable);
|
2019-05-22 22:10:48 +08:00
|
|
|
return PM3_SUCCESS;
|
2019-04-12 07:55:25 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
int CmdLFHID(const char *Cmd) {
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
2019-04-19 06:47:51 +08:00
|
|
|
return CmdsParse(CommandTable, Cmd);
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
}
|
|
|
|
|
2019-04-12 07:55:25 +08:00
|
|
|
int demodHID(void) {
|
|
|
|
return CmdHIDDemod("");
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
}
|