2016-02-28 02:47:10 +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.
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-07-30 15:17:48 +08:00
|
|
|
// Low frequency Farpoint G Prox II / Pyramid tag commands
|
|
|
|
// Biphase, rf/ , 96 bits (unknown key calc + some bits)
|
2016-02-28 02:47:10 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "cmdlfguard.h"
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2016-02-28 02:47:10 +08:00
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
|
|
|
int usage_lf_guard_clone(void){
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(NORMAL, "clone a Guardall tag to a T55x7 tag.");
|
|
|
|
PrintAndLogEx(NORMAL, "The facility-code is 8-bit and the card number is 16-bit. Larger values are truncated. ");
|
|
|
|
PrintAndLogEx(NORMAL, "Currently work only on 26bit");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf gprox clone [h] <format> <Facility-Code> <Card-Number>");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " <format> : format length 26|32|36|40");
|
|
|
|
PrintAndLogEx(NORMAL, " <Facility-Code> : 8-bit value facility code");
|
|
|
|
PrintAndLogEx(NORMAL, " <Card Number> : 16-bit value card number");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf gprox clone 26 123 11223");
|
2016-02-28 02:47:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usage_lf_guard_sim(void) {
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Enables simulation of Guardall card with specified card number.");
|
|
|
|
PrintAndLogEx(NORMAL, "Simulation runs until the button is pressed or another USB command is issued.");
|
|
|
|
PrintAndLogEx(NORMAL, "The facility-code is 8-bit and the card number is 16-bit. Larger values are truncated.");
|
|
|
|
PrintAndLogEx(NORMAL, "Currently work only on 26bit");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Usage: lf gprox sim [h] <format> <Facility-Code> <Card-Number>");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " <format> : format length 26|32|36|40");
|
|
|
|
PrintAndLogEx(NORMAL, " <Facility-Code> : 8-bit value facility code");
|
|
|
|
PrintAndLogEx(NORMAL, " <Card Number> : 16-bit value card number");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf gprox sim 26 123 11223");
|
2016-02-28 02:47:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Works for 26bits.
|
2017-02-13 17:58:28 +08:00
|
|
|
int GetGuardBits(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint8_t *guardBits) {
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2016-03-01 13:57:02 +08:00
|
|
|
uint8_t xorKey = 0x66;
|
2016-02-29 05:43:21 +08:00
|
|
|
uint8_t i;
|
|
|
|
uint8_t pre[96];
|
2017-02-13 17:58:28 +08:00
|
|
|
uint8_t rawbytes[12];
|
2016-02-29 05:43:21 +08:00
|
|
|
memset(pre, 0x00, sizeof(pre));
|
2017-02-13 17:58:28 +08:00
|
|
|
memset(rawbytes, 0x00, sizeof(rawbytes));
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
// add format length (decimal)
|
|
|
|
switch (fmtlen) {
|
|
|
|
case 32: {
|
|
|
|
rawbytes[1] = (32 << 2);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 36: {
|
|
|
|
// FC = ((ByteStream[3] & 0x7F)<<7) | (ByteStream[4]>>1);
|
|
|
|
// Card = ((ByteStream[4]&1)<<19) | (ByteStream[5]<<11) | (ByteStream[6]<<3) | (ByteStream[7]>>5);
|
|
|
|
rawbytes[1] = (36 << 2);
|
|
|
|
// Get 26 wiegand from FacilityCode, CardNumber
|
|
|
|
uint8_t wiegand[34];
|
|
|
|
memset(wiegand, 0x00, sizeof(wiegand));
|
|
|
|
num_to_bytebits(fc, 8, wiegand);
|
|
|
|
num_to_bytebits(cn, 26, wiegand+8);
|
|
|
|
|
|
|
|
// add wiegand parity bits (dest, source, len)
|
|
|
|
wiegand_add_parity(pre, wiegand, 34);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 40: {
|
|
|
|
rawbytes[1] = (40 << 2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 26:
|
|
|
|
default: {
|
|
|
|
rawbytes[1] = (26 << 2);
|
|
|
|
// Get 26 wiegand from FacilityCode, CardNumber
|
|
|
|
uint8_t wiegand[24];
|
|
|
|
memset(wiegand, 0x00, sizeof(wiegand));
|
|
|
|
num_to_bytebits(fc, 8, wiegand);
|
|
|
|
num_to_bytebits(cn, 16, wiegand+8);
|
|
|
|
|
|
|
|
// add wiegand parity bits (dest, source, len)
|
|
|
|
wiegand_add_parity(pre, wiegand, 24);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 2bit checksum, unknown today,
|
|
|
|
// these two bits are the last ones of rawbyte[1], hence the LSHIFT above.
|
2016-02-29 05:43:21 +08:00
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
|
2016-02-29 05:43:21 +08:00
|
|
|
// xor key
|
|
|
|
rawbytes[0] = xorKey;
|
|
|
|
|
|
|
|
rawbytes[2] = 1;
|
|
|
|
rawbytes[3] = 0;
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2016-02-29 05:43:21 +08:00
|
|
|
// add wiegand to rawbytes
|
|
|
|
for (i = 0; i < 4; ++i)
|
|
|
|
rawbytes[i+4] = bytebits_to_byte( pre + (i*8), 8);
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2018-02-21 18:51:43 +08:00
|
|
|
if (g_debugMode) PrintAndLogEx(NORMAL, " WIE | %s\n", sprint_hex(rawbytes, sizeof(rawbytes)));
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
|
2016-02-29 05:43:21 +08:00
|
|
|
// XOR (only works on wiegand stuff)
|
|
|
|
for (i = 1; i < 12; ++i)
|
|
|
|
rawbytes[i] ^= xorKey ;
|
|
|
|
|
2018-02-21 18:51:43 +08:00
|
|
|
if (g_debugMode) PrintAndLogEx(NORMAL, " XOR | %s \n", sprint_hex(rawbytes, sizeof(rawbytes)));
|
2016-02-29 05:43:21 +08:00
|
|
|
|
|
|
|
// convert rawbytes to bits in pre
|
|
|
|
for (i = 0; i < 12; ++i)
|
|
|
|
num_to_bytebitsLSBF( rawbytes[i], 8, pre + (i*8));
|
|
|
|
|
2018-02-21 18:51:43 +08:00
|
|
|
if (g_debugMode) PrintAndLogEx(NORMAL, "\n Raw | %s \n", sprint_hex(rawbytes, sizeof(rawbytes)));
|
|
|
|
if (g_debugMode) PrintAndLogEx(NORMAL, " Raw | %s\n", sprint_bin(pre, 64) );
|
2016-02-29 05:43:21 +08:00
|
|
|
|
|
|
|
// add spacer bit 0 every 4 bits, starting with index 0,
|
2016-02-29 06:28:38 +08:00
|
|
|
// 12 bytes, 24 nibbles. 24+1 extra bites. 3bytes. ie 9bytes | 1byte xorkey, 8bytes rawdata (64bits, should be enough for a 40bit wiegand)
|
2016-02-29 05:43:21 +08:00
|
|
|
addParity(pre, guardBits+6, 64, 5, 3);
|
|
|
|
|
|
|
|
// preamble
|
|
|
|
guardBits[0] = 1;
|
|
|
|
guardBits[1] = 1;
|
|
|
|
guardBits[2] = 1;
|
|
|
|
guardBits[3] = 1;
|
|
|
|
guardBits[4] = 1;
|
|
|
|
guardBits[5] = 0;
|
|
|
|
|
2018-02-21 18:51:43 +08:00
|
|
|
if (g_debugMode) PrintAndLogEx(NORMAL, " FIN | %s\n", sprint_bin(guardBits, 96) );
|
2016-02-28 02:47:10 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-07-30 15:17:48 +08:00
|
|
|
// by marshmellow
|
|
|
|
// demod gProxIIDemod
|
|
|
|
// error returns as -x
|
2017-08-10 01:59:03 +08:00
|
|
|
// success returns start position in bitstream
|
|
|
|
// Bitstream must contain previously askrawdemod and biphasedemoded data
|
|
|
|
int detectGProxII(uint8_t *bits, size_t *size) {
|
|
|
|
|
|
|
|
size_t startIdx = 0;
|
2017-07-30 15:17:48 +08:00
|
|
|
uint8_t preamble[] = {1,1,1,1,1,0};
|
|
|
|
|
2017-08-10 01:59:03 +08:00
|
|
|
// sanity check
|
|
|
|
if ( *size < sizeof(preamble) ) return -1;
|
|
|
|
|
|
|
|
if (!preambleSearch(bits, preamble, sizeof(preamble), size, &startIdx))
|
|
|
|
return -2; //preamble not found
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2017-08-10 01:59:03 +08:00
|
|
|
//gProxII should be 96 bits
|
|
|
|
if (*size != 96) return -3;
|
2017-07-30 15:17:48 +08:00
|
|
|
|
|
|
|
//check first 6 spacer bits to verify format
|
2017-08-10 01:59:03 +08:00
|
|
|
if (!bits[startIdx+5] && !bits[startIdx+10] && !bits[startIdx+15] && !bits[startIdx+20] && !bits[startIdx+25] && !bits[startIdx+30]){
|
2017-07-30 15:17:48 +08:00
|
|
|
//confirmed proper separator bits found
|
|
|
|
//return start position
|
|
|
|
return (int) startIdx;
|
|
|
|
}
|
|
|
|
return -5; //spacer bits not found - not a valid gproxII
|
|
|
|
}
|
|
|
|
|
|
|
|
//by marshmellow
|
|
|
|
//attempts to demodulate and identify a G_Prox_II verex/chubb card
|
|
|
|
//WARNING: if it fails during some points it will destroy the DemodBuffer data
|
|
|
|
// but will leave the GraphBuffer intact.
|
|
|
|
//if successful it will push askraw data back to demod buffer ready for emulation
|
|
|
|
int CmdGuardDemod(const char *Cmd) {
|
2017-08-10 01:59:03 +08:00
|
|
|
|
|
|
|
//Differential Biphase
|
|
|
|
//get binary from ask wave
|
|
|
|
if (!ASKbiphaseDemod("0 64 0 0", false)) {
|
2018-02-21 18:51:43 +08:00
|
|
|
if (g_debugMode) PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII ASKbiphaseDemod failed");
|
2017-07-30 15:17:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2017-08-10 01:59:03 +08:00
|
|
|
|
2017-07-30 15:17:48 +08:00
|
|
|
size_t size = DemodBufferLen;
|
2017-08-10 01:59:03 +08:00
|
|
|
|
|
|
|
int preambleIndex = detectGProxII(DemodBuffer, &size);
|
|
|
|
if (preambleIndex < 0){
|
|
|
|
if (g_debugMode){
|
|
|
|
if (preambleIndex == -1)
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII too few bits found");
|
2017-08-10 01:59:03 +08:00
|
|
|
else if (preambleIndex == -2)
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII preamble not found");
|
2017-08-10 01:59:03 +08:00
|
|
|
else if (preambleIndex == -3)
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII size not correct: %d", size);
|
2017-08-10 01:59:03 +08:00
|
|
|
else if (preambleIndex == -3)
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII wrong spacerbits");
|
2017-08-10 01:59:03 +08:00
|
|
|
else
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII ans: %d", preambleIndex);
|
2017-08-10 01:59:03 +08:00
|
|
|
}
|
2017-07-30 15:17:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2017-08-10 01:59:03 +08:00
|
|
|
|
2017-07-30 15:17:48 +08:00
|
|
|
//got a good demod of 96 bits
|
|
|
|
uint8_t ByteStream[8] = {0x00};
|
|
|
|
uint8_t xorKey = 0;
|
2017-08-10 01:59:03 +08:00
|
|
|
size_t startIdx = preambleIndex + 6; //start after 6 bit preamble
|
2017-07-30 15:17:48 +08:00
|
|
|
|
|
|
|
uint8_t bits_no_spacer[90];
|
|
|
|
//so as to not mess with raw DemodBuffer copy to a new sample array
|
|
|
|
memcpy(bits_no_spacer, DemodBuffer + startIdx, 90);
|
|
|
|
// remove the 18 (90/5=18) parity bits (down to 72 bits (96-6-18=72))
|
2017-08-10 01:59:03 +08:00
|
|
|
size_t len = removeParity(bits_no_spacer, 0, 5, 3, 90); //source, startloc, paritylen, ptype, length_to_run
|
|
|
|
if (len != 72) {
|
2017-07-30 15:17:48 +08:00
|
|
|
if (g_debugMode)
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - gProxII spacer removal did not produce 72 bits: %u, start: %u", len, startIdx);
|
2017-07-30 15:17:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// get key and then get all 8 bytes of payload decoded
|
|
|
|
xorKey = (uint8_t)bytebits_to_byteLSBF(bits_no_spacer, 8);
|
|
|
|
for (size_t idx = 0; idx < 8; idx++) {
|
|
|
|
ByteStream[idx] = ((uint8_t)bytebits_to_byteLSBF(bits_no_spacer+8 + (idx*8),8)) ^ xorKey;
|
2018-02-21 18:51:43 +08:00
|
|
|
if (g_debugMode) PrintAndLogEx(DEBUG, "DEBUG: gProxII byte %u after xor: %02x", (unsigned int)idx, ByteStream[idx]);
|
2017-07-30 15:17:48 +08:00
|
|
|
}
|
2017-08-10 01:59:03 +08:00
|
|
|
|
|
|
|
setDemodBuf(DemodBuffer, 96, preambleIndex);
|
|
|
|
setClockGrid(g_DemodClock, g_DemodStartIdx + (preambleIndex*g_DemodClock));
|
2017-07-30 15:17:48 +08:00
|
|
|
|
|
|
|
//ByteStream contains 8 Bytes (64 bits) of decrypted raw tag data
|
2017-08-10 01:59:03 +08:00
|
|
|
uint8_t fmtLen = ByteStream[0] >> 2;
|
2017-07-30 15:17:48 +08:00
|
|
|
uint32_t FC = 0;
|
|
|
|
uint32_t Card = 0;
|
|
|
|
//get raw 96 bits to print
|
2017-08-10 01:59:03 +08:00
|
|
|
uint32_t raw1 = bytebits_to_byte(DemodBuffer,32);
|
|
|
|
uint32_t raw2 = bytebits_to_byte(DemodBuffer + 32, 32);
|
|
|
|
uint32_t raw3 = bytebits_to_byte(DemodBuffer + 64, 32);
|
2017-07-30 15:17:48 +08:00
|
|
|
bool unknown = false;
|
|
|
|
switch(fmtLen) {
|
|
|
|
case 36:
|
|
|
|
FC = ((ByteStream[3] & 0x7F)<<7) | (ByteStream[4]>>1);
|
|
|
|
Card = ((ByteStream[4]&1)<<19) | (ByteStream[5]<<11) | (ByteStream[6]<<3) | (ByteStream[7]>>5);
|
|
|
|
break;
|
|
|
|
case 26:
|
|
|
|
FC = ((ByteStream[3] & 0x7F)<<1) | (ByteStream[4]>>7);
|
|
|
|
Card = ((ByteStream[4]&0x7F)<<9) | (ByteStream[5]<<1) | (ByteStream[6]>>7);
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
unknown = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( !unknown)
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(NORMAL, "G-Prox-II Found: Format Len: %ubit - FC: %u - Card: %u, Raw: %08x%08x%08x", fmtLen, FC, Card, raw1, raw2, raw3);
|
2017-07-30 15:17:48 +08:00
|
|
|
else
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Unknown G-Prox-II Fmt Found: Format Len: %u, Raw: %08x%08x%08x", fmtLen, raw1, raw2, raw3);
|
2017-07-30 15:17:48 +08:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-02-28 02:47:10 +08:00
|
|
|
int CmdGuardRead(const char *Cmd) {
|
2017-07-30 15:17:48 +08:00
|
|
|
lf_read(true, 10000);
|
|
|
|
return CmdGuardDemod(Cmd);
|
2016-02-28 02:47:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int CmdGuardClone(const char *Cmd) {
|
|
|
|
|
|
|
|
char cmdp = param_getchar(Cmd, 0);
|
|
|
|
if (strlen(Cmd) == 0 || cmdp == 'h' || cmdp == 'H') return usage_lf_guard_clone();
|
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
uint32_t facilitycode = 0, cardnumber = 0, fc = 0, cn = 0, fmtlen = 0;
|
2016-02-28 02:47:10 +08:00
|
|
|
uint8_t i;
|
|
|
|
uint8_t bs[96];
|
|
|
|
memset(bs, 0x00, sizeof(bs));
|
|
|
|
|
|
|
|
//GuardProxII - compat mode, ASK/Biphase, data rate 64, 3 data blocks
|
2017-08-11 17:38:54 +08:00
|
|
|
uint32_t blocks[4] = {T55x7_MODULATION_BIPHASE | T55x7_BITRATE_RF_64 | 3 << T55x7_MAXBLOCK_SHIFT, 0, 0, 0};
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2017-02-17 11:35:26 +08:00
|
|
|
if (sscanf(Cmd, "%u %u %u", &fmtlen, &fc, &cn ) != 3) return usage_lf_guard_clone();
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
fmtlen &= 0x7f;
|
2016-02-28 02:47:10 +08:00
|
|
|
facilitycode = (fc & 0x000000FF);
|
|
|
|
cardnumber = (cn & 0x0000FFFF);
|
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
if ( !GetGuardBits(fmtlen, facilitycode, cardnumber, bs)) {
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(WARNING, "Error with tag bitstream generation.");
|
2016-02-28 02:47:10 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-11 17:38:54 +08:00
|
|
|
// Q5
|
|
|
|
if (param_getchar(Cmd, 3) == 'Q' || param_getchar(Cmd, 3) == 'q')
|
|
|
|
blocks[0] = T5555_MODULATION_FSK2 | T5555_SET_BITRATE(50) | 3 << T5555_MAXBLOCK_SHIFT;
|
|
|
|
|
|
|
|
blocks[1] = bytebits_to_byte(bs, 32);
|
|
|
|
blocks[2] = bytebits_to_byte(bs + 32, 32);
|
|
|
|
blocks[3] = bytebits_to_byte(bs + 64, 32);
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Preparing to clone Guardall to T55x7 with Facility Code: %u, Card Number: %u", facilitycode, cardnumber);
|
2017-08-11 17:38:54 +08:00
|
|
|
print_blocks(blocks, 4);
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2016-02-29 05:43:21 +08:00
|
|
|
UsbCommand resp;
|
|
|
|
UsbCommand c = {CMD_T55XX_WRITE_BLOCK, {0,0,0}};
|
|
|
|
|
|
|
|
for ( i = 0; i<4; ++i ) {
|
|
|
|
c.arg[0] = blocks[i];
|
|
|
|
c.arg[1] = i;
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
2017-01-19 05:54:27 +08:00
|
|
|
if (!WaitForResponseTimeout(CMD_ACK, &resp, T55XX_WRITE_TIMEOUT)){
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(WARNING, "Error occurred, device did not respond during write operation.");
|
2016-02-29 05:43:21 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 02:47:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CmdGuardSim(const char *Cmd) {
|
|
|
|
|
2017-08-10 01:59:03 +08:00
|
|
|
// Guard uses: clk: 64, invert: 0, encoding: 2 (ASK Biphase)
|
|
|
|
uint8_t clock = 64, encoding = 2, separator = 0, invert = 0;
|
|
|
|
uint32_t facilitycode = 0, cardnumber = 0, fc = 0, cn = 0, fmtlen = 0;
|
|
|
|
|
2016-02-28 02:47:10 +08:00
|
|
|
char cmdp = param_getchar(Cmd, 0);
|
|
|
|
if (strlen(Cmd) == 0 || cmdp == 'h' || cmdp == 'H') return usage_lf_guard_sim();
|
|
|
|
|
2017-02-17 14:48:00 +08:00
|
|
|
if (sscanf(Cmd, "%u %u %u", &fmtlen, &fc, &cn ) != 3) return usage_lf_guard_sim();
|
2016-02-28 02:47:10 +08:00
|
|
|
|
2017-08-10 01:59:03 +08:00
|
|
|
uint8_t bs[96];
|
|
|
|
size_t size = sizeof(bs);
|
|
|
|
memset(bs, 0x00, size);
|
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
fmtlen &= 0x7F;
|
2016-02-28 02:47:10 +08:00
|
|
|
facilitycode = (fc & 0x000000FF);
|
|
|
|
cardnumber = (cn & 0x0000FFFF);
|
|
|
|
|
2017-02-13 17:58:28 +08:00
|
|
|
if ( !GetGuardBits(fmtlen, facilitycode, cardnumber, bs)) {
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(WARNING, "Error with tag bitstream generation.");
|
2016-02-28 02:47:10 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-02-21 18:51:43 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Simulating Guardall - Facility Code: %u, CardNumber: %u", facilitycode, cardnumber );
|
2016-02-29 06:28:38 +08:00
|
|
|
|
|
|
|
uint64_t arg1, arg2;
|
|
|
|
arg1 = (clock << 8) | encoding;
|
|
|
|
arg2 = (invert << 8) | separator;
|
|
|
|
|
2016-02-28 02:47:10 +08:00
|
|
|
UsbCommand c = {CMD_ASK_SIM_TAG, {arg1, arg2, size}};
|
2017-08-10 01:59:03 +08:00
|
|
|
memcpy(c.d.asBytes, bs, size );
|
2016-02-28 02:47:10 +08:00
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static command_t CommandTable[] = {
|
2017-08-10 00:33:30 +08:00
|
|
|
{"help", CmdHelp, 1, "this help"},
|
|
|
|
{"demod", CmdGuardDemod, 1, "demodulate a G Prox II tag from the GraphBuffer"},
|
|
|
|
{"read", CmdGuardRead, 0, "attempt to read and extract tag data from the antenna"},
|
|
|
|
{"clone", CmdGuardClone, 0, "clone Guardall tag"},
|
|
|
|
{"sim", CmdGuardSim, 0, "simulate Guardall tag"},
|
2016-02-28 02:47:10 +08:00
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
int CmdLFGuard(const char *Cmd) {
|
|
|
|
clearCommandBuffer();
|
|
|
|
CmdsParse(CommandTable, Cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CmdHelp(const char *Cmd) {
|
|
|
|
CmdsHelp(CommandTable);
|
|
|
|
return 0;
|
|
|
|
}
|