//----------------------------------------------------------------------------- // // 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. //----------------------------------------------------------------------------- // Low frequency Farpoint / Pyramid tag commands //----------------------------------------------------------------------------- #include #include #include "cmdlfpyramid.h" static int CmdHelp(const char *Cmd); int usage_lf_pyramid_clone(void){ PrintAndLog("clone a Farepointe/Pyramid tag to a T55x7 tag."); PrintAndLog("Per pyramid format, the facility-code is 8-bit and the card number is 16-bit. Larger values are truncated."); PrintAndLog(""); PrintAndLog("Usage: lf pyramid clone "); PrintAndLog("Options :"); PrintAndLog(" : 8-bit value facility code"); PrintAndLog(" : 16-bit value card number"); PrintAndLog(""); PrintAndLog("Sample : lf pyramid clone 123 11223"); return 0; } int usage_lf_pyramid_sim(void) { PrintAndLog("Enables simulation of Farepointe/Pyramid card with specified card number."); PrintAndLog("Simulation runs until the button is pressed or another USB command is issued."); PrintAndLog("Per pyramid format, the facility-code is 8-bit and the card number is 16-bit. Larger values are truncated."); PrintAndLog(""); PrintAndLog("Usage: lf pyramid sim "); PrintAndLog("Options :"); PrintAndLog(" : 8-bit value facility code"); PrintAndLog(" : 16-bit value card number"); PrintAndLog(""); PrintAndLog("Sample : lf pyramid sim 123 11223"); return 0; } // calc checksum int GetWiegandFromPyramid(const char *id, uint32_t *fc, uint32_t *cn) { return 0; } int GetPyramidBits(uint32_t fc, uint32_t cn, uint8_t *pyramidBits) { uint8_t pre[128]; memset(pre, 0x00, sizeof(pre)); // add preamble pyramidBits[7]=1; num_to_bytebits(26, 8, pre); // get wiegand uint8_t wiegand[24]; num_to_bytebits(fc, 8, wiegand); num_to_bytebits(cn, 16, wiegand+8); // add wiegand parity bits wiegand_add_parity(pre+8, wiegand, 24); // add paritybits addParity(pre, pyramidBits+8, 66, 4, 1); // add checksum // this is wrong. uint32_t crc = CRC8Maxim(wiegand, 13); num_to_bytebits(crc, 8, pre+120); return 1; } int CmdPyramidRead(const char *Cmd) { // read lf silently CmdLFRead("s"); // get samples silently getSamples("30000",false); // demod and output Pyramid ID return CmdFSKdemodPyramid(""); } int CmdPyramidClone(const char *Cmd) { char cmdp = param_getchar(Cmd, 0); if (strlen(Cmd) == 0 || cmdp == 'h' || cmdp == 'H') return usage_lf_pyramid_clone(); uint32_t facilitycode=0, cardnumber=0; uint8_t bits[128]; uint8_t *bs = bits; memset(bs,0,sizeof(bits)); //Pyramid - compat mode, FSK2a, data rate 50, 4 data blocks uint32_t blocks[5] = {T55x7_MODULATION_FSK2a | T55x7_BITRATE_RF_50 | 4<> 32),(uint32_t) (rawID & 0xFFFFFFFF)); // UsbCommand c = {CMD_FSK_SIM_TAG, {arg1, arg2, size}}; // num_to_bytebits(rawID, size, c.d.asBytes); // clearCommandBuffer(); // SendCommand(&c); return 0; } static command_t CommandTable[] = { {"help", CmdHelp, 1, "This help"}, {"read", CmdPyramidRead, 0, "Attempt to read and extract tag data"}, {"clone", CmdPyramidClone, 0, " clone pyramid tag"}, {"sim", CmdPyramidSim, 0, " simulate pyramid tag"}, {NULL, NULL, 0, NULL} }; int CmdLFPyramid(const char *Cmd) { clearCommandBuffer(); CmdsParse(CommandTable, Cmd); return 0; } int CmdHelp(const char *Cmd) { CmdsHelp(CommandTable); return 0; }