2020-09-29 03:09:26 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2020-09-29 03:09:26 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2020-09-29 03:09:26 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Low frequency Idteck tag commands
|
2021-04-25 17:57:03 +08:00
|
|
|
// PSK1, clk 32, 2 data blocks
|
2020-09-29 03:09:26 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "cmdlfidteck.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "common.h"
|
2021-04-25 16:55:39 +08:00
|
|
|
#include "cmdparser.h" // command_t
|
2020-09-29 03:09:26 +08:00
|
|
|
#include "comms.h"
|
|
|
|
#include "ui.h"
|
|
|
|
#include "cmddata.h"
|
|
|
|
#include "cmdlf.h"
|
|
|
|
#include "lfdemod.h"
|
2021-04-25 16:55:39 +08:00
|
|
|
#include "commonutil.h" // num_to_bytes
|
2020-11-29 19:13:54 +08:00
|
|
|
#include "cliparser.h"
|
2021-04-25 16:55:39 +08:00
|
|
|
#include "cmdlfem4x05.h" // EM defines
|
|
|
|
#include "protocols.h" // T55x7 defines
|
|
|
|
#include "cmdlft55xx.h" // verifywrite
|
2020-09-29 03:09:26 +08:00
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
|
|
|
int demodIdteck(bool verbose) {
|
|
|
|
(void) verbose; // unused so far
|
|
|
|
if (PSKDemod(0, 0, 100, false) != PM3_SUCCESS) {
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck PSKDemod failed");
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2021-08-21 22:26:06 +08:00
|
|
|
size_t size = g_DemodBufferLen;
|
2020-09-29 03:09:26 +08:00
|
|
|
|
|
|
|
//get binary from PSK1 wave
|
2021-08-21 22:26:06 +08:00
|
|
|
int idx = detectIdteck(g_DemodBuffer, &size);
|
2020-09-29 03:09:26 +08:00
|
|
|
if (idx < 0) {
|
|
|
|
|
|
|
|
if (idx == -1)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: not enough samples");
|
|
|
|
else if (idx == -2)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: just noise");
|
|
|
|
else if (idx == -3)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: preamble not found");
|
|
|
|
else if (idx == -4)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: size not correct: %zu", size);
|
|
|
|
else
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: idx: %d", idx);
|
|
|
|
|
|
|
|
// if didn't find preamble try again inverting
|
|
|
|
if (PSKDemod(0, 1, 100, false) != PM3_SUCCESS) {
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck PSKDemod failed");
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2021-08-21 22:26:06 +08:00
|
|
|
idx = detectIdteck(g_DemodBuffer, &size);
|
2020-09-29 03:09:26 +08:00
|
|
|
if (idx < 0) {
|
|
|
|
|
|
|
|
if (idx == -1)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: not enough samples");
|
|
|
|
else if (idx == -2)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: just noise");
|
|
|
|
else if (idx == -3)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: preamble not found");
|
|
|
|
else if (idx == -4)
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: size not correct: %zu", size);
|
|
|
|
else
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Idteck: idx: %d", idx);
|
|
|
|
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
|
|
|
}
|
2021-08-21 22:26:06 +08:00
|
|
|
setDemodBuff(g_DemodBuffer, 64, idx);
|
2020-09-29 03:09:26 +08:00
|
|
|
|
|
|
|
//got a good demod
|
|
|
|
uint32_t id = 0;
|
2021-08-21 22:26:06 +08:00
|
|
|
uint32_t raw1 = bytebits_to_byte(g_DemodBuffer, 32);
|
|
|
|
uint32_t raw2 = bytebits_to_byte(g_DemodBuffer + 32, 32);
|
2020-09-29 03:09:26 +08:00
|
|
|
|
|
|
|
//parity check (TBD)
|
|
|
|
//checksum check (TBD)
|
|
|
|
|
|
|
|
//output
|
|
|
|
PrintAndLogEx(SUCCESS, "IDTECK Tag Found: Card ID %u , Raw: %08X%08X", id, raw1, raw2);
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CmdIdteckDemod(const char *Cmd) {
|
2020-11-29 19:13:54 +08:00
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf idteck demod",
|
|
|
|
"Try to find Idteck preamble, if found decode / descramble data",
|
|
|
|
"lf idteck demod"
|
|
|
|
);
|
|
|
|
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
CLIParserFree(ctx);
|
2020-09-29 03:09:26 +08:00
|
|
|
return demodIdteck(true);
|
|
|
|
}
|
|
|
|
|
2021-04-25 16:55:39 +08:00
|
|
|
static int CmdIdteckClone(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf idteck clone",
|
|
|
|
"clone a Idteck tag to T55x7 or Q5/T5555 tag\n"
|
|
|
|
"Tag must be on the antenna when issuing this command.",
|
|
|
|
"lf idteck clone --raw 4944544B351FBE4B"
|
|
|
|
);
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
2022-01-01 09:37:00 +08:00
|
|
|
arg_str1("r", "raw", "<hex>", "raw bytes"),
|
2021-04-25 16:55:39 +08:00
|
|
|
arg_lit0(NULL, "q5", "optional - specify writing to Q5/T5555 tag"),
|
|
|
|
arg_lit0(NULL, "em", "optional - specify writing to EM4305/4469 tag"),
|
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
|
|
|
|
int raw_len = 0;
|
|
|
|
uint8_t raw[8] = {0};
|
|
|
|
CLIGetHexWithReturn(ctx, 1, raw, &raw_len);
|
|
|
|
|
|
|
|
bool q5 = arg_get_lit(ctx, 2);
|
|
|
|
bool em = arg_get_lit(ctx, 3);
|
|
|
|
CLIParserFree(ctx);
|
|
|
|
|
|
|
|
if (q5 && em) {
|
|
|
|
PrintAndLogEx(FAILED, "Can't specify both Q5 and EM4305 at the same time");
|
|
|
|
return PM3_EINVARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t blocks[3] = {T55x7_MODULATION_PSK1 | T55x7_BITRATE_RF_32 | 2 << T55x7_MAXBLOCK_SHIFT, 0, 0};
|
|
|
|
char cardtype[16] = {"T55x7"};
|
|
|
|
|
|
|
|
// Q5
|
|
|
|
if (q5) {
|
|
|
|
blocks[0] = T5555_FIXED | T55x7_MODULATION_PSK1 | T5555_SET_BITRATE(32) | 2 << T5555_MAXBLOCK_SHIFT;
|
|
|
|
snprintf(cardtype, sizeof(cardtype), "Q5/T5555");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (em) {
|
|
|
|
blocks[0] = EM4305_IDTECK_CONFIG_BLOCK;
|
|
|
|
snprintf(cardtype, sizeof(cardtype), "EM4305/4469");
|
|
|
|
}
|
2021-05-06 03:04:48 +08:00
|
|
|
|
2021-04-25 16:55:39 +08:00
|
|
|
for (uint8_t i = 1; i < ARRAYLEN(blocks); i++) {
|
|
|
|
blocks[i] = bytes_to_num(raw + ((i - 1) * 4), sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
// config for Indala 64 format (RF/32;PSK1 with RF/2;Maxblock=2)
|
|
|
|
PrintAndLogEx(INFO, "Preparing to clone Idteck to " _YELLOW_("%s") " raw " _GREEN_("%s")
|
2021-05-06 03:04:48 +08:00
|
|
|
, cardtype
|
|
|
|
, sprint_hex_inrow(raw, raw_len)
|
|
|
|
);
|
2021-04-25 16:55:39 +08:00
|
|
|
print_blocks(blocks, ARRAYLEN(blocks));
|
|
|
|
|
|
|
|
int res;
|
|
|
|
if (em) {
|
|
|
|
res = em4x05_clone_tag(blocks, ARRAYLEN(blocks), 0, false);
|
|
|
|
} else {
|
|
|
|
res = clone_t55xx_tag(blocks, ARRAYLEN(blocks));
|
|
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, "Done");
|
|
|
|
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf idteck reader`") " to verify");
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2021-04-25 17:57:03 +08:00
|
|
|
static int CmdIdteckSim(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf idteck sim",
|
|
|
|
"Enables simulation of Idteck card.\n"
|
|
|
|
"Simulation runs until the button is pressed or another USB command is issued.",
|
|
|
|
"lf idteck sim --raw 4944544B351FBE4B"
|
2021-05-06 03:04:48 +08:00
|
|
|
);
|
2021-04-25 17:57:03 +08:00
|
|
|
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
2022-01-01 09:37:00 +08:00
|
|
|
arg_str1("r", "raw", "<hex>", "raw bytes"),
|
2021-04-25 17:57:03 +08:00
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
|
|
|
|
int raw_len = 0;
|
|
|
|
uint8_t raw[8] = {0};
|
|
|
|
CLIGetHexWithReturn(ctx, 1, raw, &raw_len);
|
|
|
|
CLIParserFree(ctx);
|
|
|
|
|
|
|
|
// convert to binarray
|
|
|
|
uint8_t bs[64];
|
|
|
|
memset(bs, 0x00, sizeof(bs));
|
|
|
|
|
|
|
|
uint8_t counter = 0;
|
|
|
|
for (int8_t i = 0; i < raw_len; i++) {
|
|
|
|
uint8_t tmp = raw[i];
|
|
|
|
bs[counter++] = (tmp >> 7) & 1;
|
|
|
|
bs[counter++] = (tmp >> 6) & 1;
|
|
|
|
bs[counter++] = (tmp >> 5) & 1;
|
|
|
|
bs[counter++] = (tmp >> 4) & 1;
|
|
|
|
bs[counter++] = (tmp >> 3) & 1;
|
|
|
|
bs[counter++] = (tmp >> 2) & 1;
|
|
|
|
bs[counter++] = (tmp >> 1) & 1;
|
|
|
|
bs[counter++] = tmp & 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintAndLogEx(SUCCESS, "Simulating Idteck - raw " _YELLOW_("%s"), sprint_hex_inrow(raw, raw_len));
|
|
|
|
PrintAndLogEx(SUCCESS, "Press pm3-button to abort simulation or run another command");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
|
|
|
|
lf_psksim_t *payload = calloc(1, sizeof(lf_psksim_t) + sizeof(bs));
|
|
|
|
payload->carrier = 2;
|
|
|
|
payload->invert = 0;
|
|
|
|
payload->clock = 32;
|
|
|
|
memcpy(payload->data, bs, sizeof(bs));
|
|
|
|
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommandNG(CMD_LF_PSK_SIMULATE, (uint8_t *)payload, sizeof(lf_psksim_t) + sizeof(bs));
|
|
|
|
free(payload);
|
|
|
|
|
|
|
|
PacketResponseNG resp;
|
|
|
|
WaitForResponse(CMD_LF_PSK_SIMULATE, &resp);
|
|
|
|
|
|
|
|
PrintAndLogEx(INFO, "Done");
|
|
|
|
if (resp.status != PM3_EOPABORTED)
|
|
|
|
return resp.status;
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2020-11-29 21:00:51 +08:00
|
|
|
static int CmdIdteckReader(const char *Cmd) {
|
2020-11-29 19:13:54 +08:00
|
|
|
CLIParserContext *ctx;
|
|
|
|
CLIParserInit(&ctx, "lf idteck reader",
|
|
|
|
"read a Idteck tag",
|
|
|
|
"lf idteck reader -@ -> continuous reader mode"
|
|
|
|
);
|
|
|
|
|
|
|
|
void *argtable[] = {
|
|
|
|
arg_param_begin,
|
|
|
|
arg_lit0("@", NULL, "optional - continuous reader mode"),
|
|
|
|
arg_param_end
|
|
|
|
};
|
|
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
bool cm = arg_get_lit(ctx, 1);
|
|
|
|
CLIParserFree(ctx);
|
|
|
|
|
2020-12-01 18:26:54 +08:00
|
|
|
if (cm) {
|
|
|
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
|
|
|
}
|
|
|
|
|
2020-11-29 19:13:54 +08:00
|
|
|
do {
|
|
|
|
lf_read(false, 5000);
|
|
|
|
demodIdteck(!cm);
|
|
|
|
} while (cm && !kbd_enter_pressed());
|
|
|
|
|
|
|
|
return PM3_SUCCESS;
|
2020-09-29 03:09:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static command_t CommandTable[] = {
|
2020-11-29 21:00:51 +08:00
|
|
|
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
2021-04-24 20:39:27 +08:00
|
|
|
{"demod", CmdIdteckDemod, AlwaysAvailable, "demodulate an Idteck tag from the GraphBuffer"},
|
|
|
|
{"reader", CmdIdteckReader, IfPm3Lf, "attempt to read and extract tag data"},
|
2021-04-25 17:57:03 +08:00
|
|
|
{"clone", CmdIdteckClone, IfPm3Lf, "clone Idteck tag to T55x7 or Q5/T5555"},
|
|
|
|
{"sim", CmdIdteckSim, IfPm3Lf, "simulate Idteck tag"},
|
2020-09-29 03:09:26 +08:00
|
|
|
{NULL, NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd) {
|
|
|
|
(void)Cmd; // Cmd is not used so far
|
|
|
|
CmdsHelp(CommandTable);
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CmdLFIdteck(const char *Cmd) {
|
|
|
|
clearCommandBuffer();
|
|
|
|
return CmdsParse(CommandTable, Cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find IDTEC PSK1, RF Preamble == 0x4944544B, Demodsize 64bits
|
|
|
|
int detectIdteck(uint8_t *dest, size_t *size) {
|
|
|
|
//make sure buffer has data
|
|
|
|
if (*size < 64 * 2) return -1;
|
|
|
|
|
|
|
|
if (getSignalProperties()->isnoise) return -2;
|
|
|
|
|
|
|
|
size_t start_idx = 0;
|
2021-05-22 20:22:41 +08:00
|
|
|
// 4 9 4 4 5 4 4 B
|
2020-09-29 03:09:26 +08:00
|
|
|
uint8_t preamble[] = {0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1};
|
|
|
|
|
|
|
|
//preamble not found
|
2021-05-22 20:22:41 +08:00
|
|
|
if (preambleSearch(dest, preamble, sizeof(preamble), size, &start_idx) == false)
|
2020-09-29 03:09:26 +08:00
|
|
|
return -3;
|
|
|
|
|
|
|
|
// wrong demoded size
|
2021-05-22 20:22:41 +08:00
|
|
|
if (*size != 64) {
|
|
|
|
return -4;
|
|
|
|
}
|
2020-09-29 03:09:26 +08:00
|
|
|
return (int)start_idx;
|
|
|
|
}
|