mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08:00
ADD: 'lf keri' - basic commands.
This commit is contained in:
parent
22510b6f22
commit
2dc3bc6af3
3 changed files with 270 additions and 0 deletions
|
@ -187,6 +187,7 @@ CMDSRCS = crapto1/crapto1.c \
|
||||||
cmdlfio.c \
|
cmdlfio.c \
|
||||||
cmdlfindala.c \
|
cmdlfindala.c \
|
||||||
cmdlfjablotron.c \
|
cmdlfjablotron.c \
|
||||||
|
cmdlfkeri.c \
|
||||||
cmdlfnexwatch.c \
|
cmdlfnexwatch.c \
|
||||||
cmdlfnedap.c \
|
cmdlfnedap.c \
|
||||||
cmdlfnoralsy.c \
|
cmdlfnoralsy.c \
|
||||||
|
|
233
client/cmdlfkeri.c
Normal file
233
client/cmdlfkeri.c
Normal file
|
@ -0,0 +1,233 @@
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// 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 KERI tag commands
|
||||||
|
// PSK1, RF/128, RF/2, 64 bits long
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
#include "cmdlfkeri.h"
|
||||||
|
|
||||||
|
static int CmdHelp(const char *Cmd);
|
||||||
|
|
||||||
|
int usage_lf_keri_clone(void){
|
||||||
|
PrintAndLogEx(NORMAL, "clone a KERI tag to a T55x7 tag.");
|
||||||
|
PrintAndLogEx(NORMAL, "Usage: lf keri clone [h] <id> <Q5>");
|
||||||
|
PrintAndLogEx(NORMAL, "Options:");
|
||||||
|
PrintAndLogEx(NORMAL, " h : This help");
|
||||||
|
PrintAndLogEx(NORMAL, " <id> : KERI Internal ID");
|
||||||
|
PrintAndLogEx(NORMAL, " <Q5> : specify write to Q5 (t5555 instead of t55x7)");
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
PrintAndLogEx(NORMAL, "Examples:");
|
||||||
|
PrintAndLogEx(NORMAL, " lf keri clone 112233");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int usage_lf_keri_sim(void) {
|
||||||
|
PrintAndLogEx(NORMAL, "Enables simulation of KERI card with specified card number.");
|
||||||
|
PrintAndLogEx(NORMAL, "Simulation runs until the button is pressed or another USB command is issued.");
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
PrintAndLogEx(NORMAL, "Usage: lf keri sim [h] <id>");
|
||||||
|
PrintAndLogEx(NORMAL, "Options:");
|
||||||
|
PrintAndLogEx(NORMAL, " h : This help");
|
||||||
|
PrintAndLogEx(NORMAL, " <id> : Keri Internal ID");
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
PrintAndLogEx(NORMAL, "Examples:");
|
||||||
|
PrintAndLogEx(NORMAL, " lf keri sim 112233");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// find KERI preamble in already demoded data
|
||||||
|
int detectKeri(uint8_t *dest, size_t *size, bool *invert) {
|
||||||
|
|
||||||
|
uint8_t preamble[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
|
||||||
|
uint8_t preamble_i[] = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0};
|
||||||
|
|
||||||
|
// sanity check.
|
||||||
|
if ( *size < sizeof(preamble) + 100) return -1;
|
||||||
|
|
||||||
|
size_t startIdx = 0;
|
||||||
|
|
||||||
|
if (!preambleSearch(dest, preamble, sizeof(preamble), size, &startIdx)) {
|
||||||
|
|
||||||
|
// if didn't find preamble try again inverting
|
||||||
|
if (!preambleSearch(DemodBuffer, preamble_i, sizeof(preamble_i), size, &startIdx))
|
||||||
|
return -2;
|
||||||
|
|
||||||
|
*invert ^= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (*size != 64) return -3; //wrong demoded size
|
||||||
|
|
||||||
|
return (int)startIdx;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdKeriDemod(const char *Cmd) {
|
||||||
|
|
||||||
|
if (!PSKDemod("", false)) {
|
||||||
|
PrintAndLogEx(DEBUG, "DEBUG: Error - KERI: PSK1 Demod failed");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
bool invert = false;
|
||||||
|
size_t size = DemodBufferLen;
|
||||||
|
int idx = detectKeri(DemodBuffer, &size, &invert);
|
||||||
|
if (idx < 0) {
|
||||||
|
if (idx == -1)
|
||||||
|
PrintAndLogEx(DEBUG, "DEBUG: Error - KERI: too few bits found");
|
||||||
|
else if (idx == -2)
|
||||||
|
PrintAndLogEx(DEBUG, "DEBUG: Error - KERI: preamble not found");
|
||||||
|
else if (idx == -3)
|
||||||
|
PrintAndLogEx(DEBUG, "DEBUG: Error - KERI: Size not correct: 64 != %d", size);
|
||||||
|
else
|
||||||
|
PrintAndLogEx(DEBUG, "DEBUG: Error - KERI: ans: %d", idx);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
setDemodBuf(DemodBuffer, size, idx);
|
||||||
|
setClockGrid(g_DemodClock, g_DemodStartIdx + (idx * g_DemodClock));
|
||||||
|
|
||||||
|
//got a good demod
|
||||||
|
uint32_t raw1 = bytebits_to_byte(DemodBuffer , 32);
|
||||||
|
uint32_t raw2 = bytebits_to_byte(DemodBuffer+32, 32);
|
||||||
|
|
||||||
|
//get internal id
|
||||||
|
uint32_t ID = 0;
|
||||||
|
for (uint8_t i = 30; i < 59; i++){
|
||||||
|
ID = (ID << 1) | DemodBuffer[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
000000000000000000000000000001XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX111
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^1###############################^^^
|
||||||
|
Preamble block 29 bits of ZEROS
|
||||||
|
32 bit Internal ID (First bit always 1)
|
||||||
|
3 bit of 1s in the end
|
||||||
|
|
||||||
|
How this is decoded to Facility ID, Card number is unknown
|
||||||
|
Facility ID = 0-31 (indicates 5 bits)
|
||||||
|
Card number = up to 10 digits
|
||||||
|
|
||||||
|
Might be a hash of FC & CN to generate Internal ID
|
||||||
|
*/
|
||||||
|
|
||||||
|
PrintAndLogEx(NORMAL, "KERI Tag Found -- Raw: %08X%08X", raw1 ,raw2);
|
||||||
|
|
||||||
|
PrintAndLogEx(NORMAL, "KERI Internal ID: %d", ID);
|
||||||
|
|
||||||
|
if (invert){
|
||||||
|
PrintAndLogEx(NORMAL, "Had to Invert - probably KERI");
|
||||||
|
for (size_t i = 0; i < size; i++)
|
||||||
|
DemodBuffer[i] ^= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
CmdPrintDemodBuff("x");
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdKeriRead(const char *Cmd) {
|
||||||
|
lf_read(true, 10000);
|
||||||
|
return CmdKeriDemod(Cmd);
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdKeriClone(const char *Cmd) {
|
||||||
|
|
||||||
|
PrintAndLogEx(ERR, "TO BE DONE - Cloning KERI is not implemented yet");
|
||||||
|
/*
|
||||||
|
uint32_t internalid = 0;
|
||||||
|
uint32_t blocks[3] = {T55x7_MODULATION_PSK1 | T55x7_PSKCF_RF_2 | 2 << T55x7_MAXBLOCK_SHIFT | T55x7_BITRATE_RF_16, 0, 0};
|
||||||
|
|
||||||
|
char cmdp = tolower(param_getchar(Cmd, 0));
|
||||||
|
if (strlen(Cmd) == 0 || cmdp == 'h') return usage_lf_keri_clone();
|
||||||
|
|
||||||
|
internalid = param_get32ex(Cmd, 0, 0, 10);
|
||||||
|
|
||||||
|
//Q5
|
||||||
|
if (tolower(param_getchar(Cmd, 1)) == 'q')
|
||||||
|
blocks[0] = T5555_MODULATION_PSK1 | T5555_SET_BITRATE(16) | T5555_PSK_RF_2 | 2 << T5555_MAXBLOCK_SHIFT;
|
||||||
|
|
||||||
|
|
||||||
|
// MSB is ONE, and 3 LSB is ONE
|
||||||
|
uint32_t pre =
|
||||||
|
internalid &= 0x80000003;
|
||||||
|
|
||||||
|
//
|
||||||
|
blocks[1] = internalid & 0x
|
||||||
|
blocks[2] = bytebits_to_byte(bits + 32, 32);
|
||||||
|
|
||||||
|
PrintAndLogEx(NORMAL, "Preparing to clone KERI to T55x7 with Internal Id: %u", id);
|
||||||
|
print_blocks(blocks, 3);
|
||||||
|
|
||||||
|
UsbCommand resp;
|
||||||
|
UsbCommand c = {CMD_T55XX_WRITE_BLOCK, {0,0,0}};
|
||||||
|
|
||||||
|
for (uint8_t i=0; i<3; i++) {
|
||||||
|
c.arg[0] = blocks[i];
|
||||||
|
c.arg[1] = i;
|
||||||
|
clearCommandBuffer();
|
||||||
|
SendCommand(&c);
|
||||||
|
if (!WaitForResponseTimeout(CMD_ACK, &resp, T55XX_WRITE_TIMEOUT)){
|
||||||
|
PrintAndLogEx(WARNING, "Error occurred, device did not respond during write operation.");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdKeriSim(const char *Cmd) {
|
||||||
|
|
||||||
|
PrintAndLogEx(ERR, "TO BE DONE - Simulating KERI is not implemented yet");
|
||||||
|
/*
|
||||||
|
uint8_t bits[64];
|
||||||
|
uint8_t *bs = bits;
|
||||||
|
memset(bs, 0, sizeof(bits));
|
||||||
|
|
||||||
|
uint32_t internalid = 0;
|
||||||
|
|
||||||
|
char cmdp = tolower(param_getchar(Cmd, 0));
|
||||||
|
if (strlen(Cmd) == 0 || cmdp == 'h') return usage_lf_keri_sim();
|
||||||
|
|
||||||
|
internalid = param_get32ex(Cmd, 0, 0, 10);
|
||||||
|
|
||||||
|
uint8_t clk = 32, encoding = 1, separator = 1, invert = 0;
|
||||||
|
uint16_t arg1, arg2;
|
||||||
|
size_t size = 64;
|
||||||
|
arg1 = clk << 8 | encoding;
|
||||||
|
arg2 = invert << 8 | separator;
|
||||||
|
|
||||||
|
if ( !getkeriBits(internalid, bs)) {
|
||||||
|
PrintAndLogEx(WARNING, "Error with tag bitstream generation.");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
PrintAndLogEx(NORMAL, "Simulating KERI - Internal Id: %u", id);
|
||||||
|
|
||||||
|
UsbCommand c = {CMD_PSK_SIM_TAG, {arg1, arg2, size}};
|
||||||
|
memcpy(c.d.asBytes, bs, size);
|
||||||
|
clearCommandBuffer();
|
||||||
|
SendCommand(&c);
|
||||||
|
*/
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static command_t CommandTable[] = {
|
||||||
|
{"help", CmdHelp, 1, "This help"},
|
||||||
|
{"demod", CmdKeriDemod, 1, "Demodulate an KERI tag from the GraphBuffer"},
|
||||||
|
{"read", CmdKeriRead, 0, "Attempt to read and extract tag data from the antenna"},
|
||||||
|
{"clone", CmdKeriClone, 0, "clone KERI to T55x7"},
|
||||||
|
{"sim", CmdKeriSim, 0, "simulate KERI tag"},
|
||||||
|
{NULL, NULL, 0, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
int CmdLFKeri(const char *Cmd) {
|
||||||
|
clearCommandBuffer();
|
||||||
|
CmdsParse(CommandTable, Cmd);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdHelp(const char *Cmd) {
|
||||||
|
CmdsHelp(CommandTable);
|
||||||
|
return 0;
|
||||||
|
}
|
36
client/cmdlfkeri.h
Normal file
36
client/cmdlfkeri.h
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// 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 Stanley/PAC tag commands
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
#ifndef CMDLFKERI_H__
|
||||||
|
#define CMDLFKERI_H__
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include "proxmark3.h"
|
||||||
|
#include "ui.h"
|
||||||
|
#include "util.h"
|
||||||
|
#include "graph.h"
|
||||||
|
#include "cmdparser.h"
|
||||||
|
#include "cmddata.h"
|
||||||
|
#include "cmdmain.h"
|
||||||
|
#include "cmdlf.h"
|
||||||
|
#include "protocols.h" // for T55xx config register definitions
|
||||||
|
#include "lfdemod.h" // preamble test
|
||||||
|
|
||||||
|
extern int CmdLFKeri(const char *Cmd);
|
||||||
|
extern int CmdKeriRead(const char *Cmd);
|
||||||
|
extern int CmdKeriDemod(const char *Cmd);
|
||||||
|
extern int CmdKeriClone(const char *Cmd);
|
||||||
|
extern int CmdKeriSim(const char *Cmd);
|
||||||
|
|
||||||
|
extern int detectKeri(uint8_t *dest, size_t *size, bool *invert);
|
||||||
|
|
||||||
|
extern int usage_lf_keri_clone(void);
|
||||||
|
extern int usage_lf_keri_sim(void);
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue