proxmark3/client/cmdlfhitag.c

723 lines
23 KiB
C
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (C) 2012 Roel Verdult
//
// 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 Hitag support
//-----------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2012-12-05 07:39:18 +08:00
#include "proxmark3.h"
#include "ui.h"
#include "cmdparser.h"
#include "common.h"
#include "util.h"
#include "parity.h"
#include "hitag.h"
#include "util_posix.h"
#include "comms.h"
#include "cmddata.h"
#include "loclass/fileutils.h" // savefile
static int CmdHelp(const char *Cmd);
2019-04-11 06:10:21 +08:00
/*
static size_t nbytes(size_t nbits) {
2019-03-10 07:00:59 +08:00
return (nbits / 8) + ((nbits % 8) > 0);
2013-03-11 23:07:23 +08:00
}
2019-04-11 06:10:21 +08:00
*/
2019-04-10 19:06:05 +08:00
static int usage_hitag_sniff(void) {
PrintAndLogEx(NORMAL, "Sniff traffic between Hitag reader and tag. Use " _YELLOW_("`lf hitag list`")" to view collected data.");
PrintAndLogEx(NORMAL, "Usage: lf hitag sniff [h] ");
PrintAndLogEx(NORMAL, "Options:");
PrintAndLogEx(NORMAL, " h This help");
// PrintAndLogEx(NORMAL, " p <pwd> Password");
PrintAndLogEx(NORMAL, "");
PrintAndLogEx(NORMAL, "Examples:");
PrintAndLogEx(NORMAL, " lf hitag sniff");
return 0;
}
2019-04-10 19:06:05 +08:00
static int usage_hitag_sim(void) {
PrintAndLogEx(NORMAL, "Simulate " _YELLOW_("Hitag2 / HitagS")" transponder");
PrintAndLogEx(NORMAL, "Usage: lf hitag sim [h] [2|s] e|j|b <filename w/o extension>");
PrintAndLogEx(NORMAL, "Options:");
PrintAndLogEx(NORMAL, " h This help");
PrintAndLogEx(NORMAL, " [2|s] 2 = hitag2, s = hitagS");
PrintAndLogEx(NORMAL, " e <filename> Load data from EML file");
PrintAndLogEx(NORMAL, " j <filename> Load data from JSON file");
PrintAndLogEx(NORMAL, " b <filename> Load data from BIN file");
PrintAndLogEx(NORMAL, "");
PrintAndLogEx(NORMAL, "Examples:");
PrintAndLogEx(NORMAL, " lf hitag sim 2 b lf-hitag-dump");
return 0;
}
2019-04-10 19:06:05 +08:00
static int usage_hitag_info(void) {
PrintAndLogEx(NORMAL, "Usage: lf hitag info [h] p <pwd>");
PrintAndLogEx(NORMAL, "Options:");
PrintAndLogEx(NORMAL, " h This help");
PrintAndLogEx(NORMAL, " p <pwd> password");
PrintAndLogEx(NORMAL, "Examples:");
PrintAndLogEx(NORMAL, " lf hitag info");
return 0;
}
/*
2019-04-10 19:06:05 +08:00
static int usage_hitag_dump(void) {
PrintAndLogEx(NORMAL, "Usage: lf hitag dump [h] p <pwd> f <name>");
PrintAndLogEx(NORMAL, "Options:");
2019-03-14 19:30:32 +08:00
PrintAndLogEx(NORMAL, " h This help");
// PrintAndLogEx(NORMAL, " p <pwd> password");
// PrintAndLogEx(NORMAL, " f <name> data filename, if no <name> given, UID will be used as filename");
PrintAndLogEx(NORMAL, "");
PrintAndLogEx(NORMAL, "Examples:");
PrintAndLogEx(NORMAL, " lf hitag dump f mydump");
2019-03-14 19:30:32 +08:00
PrintAndLogEx(NORMAL, " lf hitag dump p 4D494B52 f mydump");
return 0;
}
*/
2019-04-10 19:06:05 +08:00
static int usage_hitag_reader(void) {
PrintAndLogEx(NORMAL, "Hitag reader functions");
2019-03-10 21:44:21 +08:00
PrintAndLogEx(NORMAL, "Usage: lf hitag reader [h] <reader function #>");
PrintAndLogEx(NORMAL, "Options:");
PrintAndLogEx(NORMAL, " h This help");
2019-03-10 21:44:21 +08:00
PrintAndLogEx(NORMAL, " HitagS (0*)");
PrintAndLogEx(NORMAL, " 01 <nr> <ar> Challenge, read all pages from a Hitag S tag");
PrintAndLogEx(NORMAL, " 02 <key> Set to 0 if no authentication is needed. Read all pages from a Hitag S tag");
PrintAndLogEx(NORMAL, " Hitag1 (1*)");
PrintAndLogEx(NORMAL, " Hitag2 (2*)");
PrintAndLogEx(NORMAL, " 21 <password> Password mode");
PrintAndLogEx(NORMAL, " 22 <nr> <ar> Authentication");
PrintAndLogEx(NORMAL, " 23 <key> Authentication, key is in format: ISK high + ISK low");
PrintAndLogEx(NORMAL, " 25 Test recorded authentications");
2019-03-12 06:12:31 +08:00
PrintAndLogEx(NORMAL, " 26 Just read UID");
2019-03-10 21:44:21 +08:00
return 0;
}
2019-04-10 19:06:05 +08:00
static int usage_hitag_writer(void) {
PrintAndLogEx(NORMAL, "Hitag writer functions");
PrintAndLogEx(NORMAL, "Usage: lf hitag write [h] <reader function #>");
PrintAndLogEx(NORMAL, "Options:");
PrintAndLogEx(NORMAL, " h This help");
PrintAndLogEx(NORMAL, " HitagS (0*)");
PrintAndLogEx(NORMAL, " 03 <nr,ar> (Challenge) <page> <byte0...byte3> write page on a Hitag S tag");
PrintAndLogEx(NORMAL, " 04 <key> (set to 0 if no authentication is needed) <page> <byte0...byte3> write page on a Hitag S tag");
PrintAndLogEx(NORMAL, " Hitag1 (1*)");
PrintAndLogEx(NORMAL, " Hitag2 (2*)");
PrintAndLogEx(NORMAL, " 24 <key> (set to 0 if no authentication is needed) <page> <byte0...byte3> write page on a Hitag2 tag");
return 0;
}
2019-04-10 19:06:05 +08:00
static int usage_hitag_checkchallenges(void) {
PrintAndLogEx(NORMAL, "Check challenges, load a file with save hitag crypto challenges and test them all.");
2019-03-14 19:30:32 +08:00
PrintAndLogEx(NORMAL, "The file should be 8 * 60 bytes long, the file extension defaults to " _YELLOW_("`.cc`"));
PrintAndLogEx(NORMAL, "");
PrintAndLogEx(NORMAL, "Usage: lf hitag cc [h] f <filename w/o extension>");
PrintAndLogEx(NORMAL, "Options:");
PrintAndLogEx(NORMAL, " h This help");
PrintAndLogEx(NORMAL, " f <filename> Load data from BIN file");
PrintAndLogEx(NORMAL, "");
PrintAndLogEx(NORMAL, "Examples:");
PrintAndLogEx(NORMAL, " lf hitag cc f lf-hitag-challenges");
return 0;
}
2019-03-14 19:30:32 +08:00
static int CmdLFHitagList(const char *Cmd) {
2019-04-10 18:23:40 +08:00
(void)Cmd; // Cmd is not used so far
CmdTraceList("hitag");
return 0;
/*
uint8_t *got = calloc(PM3_CMD_DATA_SIZE, sizeof(uint8_t));
2019-03-10 07:00:59 +08:00
if (!got) {
2019-03-10 06:35:06 +08:00
PrintAndLogEx(WARNING, "Cannot allocate memory for trace");
return 2;
}
// Query for the actual size of the trace
2019-04-18 18:43:35 +08:00
PacketResponseNG response;
if (!GetFromDevice(BIG_BUF, got, PM3_CMD_DATA_SIZE, 0, &response, 2500, false)) {
2019-03-10 06:35:06 +08:00
PrintAndLogEx(WARNING, "command execution time out");
free(got);
return 2;
}
uint16_t traceLen = response.arg[2];
if (traceLen > PM3_CMD_DATA_SIZE) {
2019-03-10 06:35:06 +08:00
uint8_t *p = realloc(got, traceLen);
if (p == NULL) {
PrintAndLogEx(WARNING, "Cannot allocate memory for trace");
free(got);
return 2;
}
got = p;
2019-03-10 07:00:59 +08:00
if (!GetFromDevice(BIG_BUF, got, traceLen, 0, NULL, 2500, false)) {
2019-03-10 06:35:06 +08:00
PrintAndLogEx(WARNING, "command execution time out");
free(got);
return 2;
}
}
PrintAndLogEx(NORMAL, "recorded activity (TraceLen = %d bytes):");
PrintAndLogEx(NORMAL, " ETU :nbits: who bytes");
PrintAndLogEx(NORMAL, "---------+-----+----+-----------");
int i = 0;
int prev = -1;
int len = strlen(Cmd);
char filename[FILE_PATH_SIZE] = { 0x00 };
2019-03-10 07:00:59 +08:00
FILE *f = NULL;
2019-03-10 06:35:06 +08:00
if (len > FILE_PATH_SIZE) len = FILE_PATH_SIZE;
memcpy(filename, Cmd, len);
if (strlen(filename) > 0) {
2019-03-10 07:00:59 +08:00
f = fopen(filename, "wb");
2019-03-10 06:35:06 +08:00
if (!f) {
2019-03-10 07:00:59 +08:00
PrintAndLogEx(WARNING, "Error: Could not open file [%s]", filename);
2019-03-10 06:35:06 +08:00
return 1;
}
}
for (;;) {
2019-03-10 07:00:59 +08:00
if (i >= traceLen) { break; }
2019-03-10 06:35:06 +08:00
bool isResponse;
2019-03-10 07:00:59 +08:00
int timestamp = *((uint32_t *)(got + i));
2019-03-10 06:35:06 +08:00
if (timestamp & 0x80000000) {
timestamp &= 0x7fffffff;
isResponse = 1;
} else {
isResponse = 0;
}
2019-03-10 07:00:59 +08:00
int parityBits = *((uint32_t *)(got + i + 4));
2019-03-10 06:35:06 +08:00
// 4 bytes of additional information...
// maximum of 32 additional parity bit information
//
// TODO:
// at each quarter bit period we can send power level (16 levels)
// or each half bit period in 256 levels.
2019-03-10 07:00:59 +08:00
int bits = got[i + 8];
int len = nbytes(got[i + 8]);
2019-03-10 06:35:06 +08:00
if (len > 100) {
2019-03-10 07:00:59 +08:00
break;
2019-03-10 06:35:06 +08:00
}
if (i + len > traceLen) { break;}
2019-03-10 07:00:59 +08:00
uint8_t *frame = (got + i + 9);
2019-03-10 06:35:06 +08:00
// Break and stick with current result if buffer was not completely full
if (frame[0] == 0x44 && frame[1] == 0x44 && frame[3] == 0x44) { break; }
char line[1000] = "";
int j;
for (j = 0; j < len; j++) {
2019-03-10 07:00:59 +08:00
//if((parityBits >> (len - j - 1)) & 0x01) {
if (isResponse && (oddparity8(frame[j]) != ((parityBits >> (len - j - 1)) & 0x01))) {
sprintf(line + (j * 4), "%02x! ", frame[j]);
} else {
sprintf(line + (j * 4), "%02x ", frame[j]);
}
2019-03-10 06:35:06 +08:00
}
PrintAndLogEx(NORMAL, " +%7d: %3d: %s %s",
2019-03-10 07:00:59 +08:00
(prev < 0 ? 0 : (timestamp - prev)),
bits,
(isResponse ? "TAG" : " "),
line);
2019-03-10 06:35:06 +08:00
if (f) {
2019-03-10 07:00:59 +08:00
fprintf(f, " +%7d: %3d: %s %s\n",
(prev < 0 ? 0 : (timestamp - prev)),
bits,
(isResponse ? "TAG" : " "),
line);
2019-03-10 06:35:06 +08:00
}
prev = timestamp;
i += (len + 9);
}
if (f) {
fclose(f);
PrintAndLogEx(NORMAL, "Recorded activity succesfully written to file: %s", filename);
}
free(got);
return 0;
*/
}
static int CmdLFHitagSniff(const char *Cmd) {
char ctmp = tolower(param_getchar(Cmd, 0));
if (ctmp == 'h') return usage_hitag_sniff();
2019-03-14 19:30:32 +08:00
2019-03-10 06:35:06 +08:00
clearCommandBuffer();
SendCommandNG(CMD_SNIFF_HITAG, NULL, 0);
2019-03-10 06:35:06 +08:00
return 0;
}
static int CmdLFHitagSim(const char *Cmd) {
bool errors = false;
bool tag_mem_supplied = false;
uint8_t cmdp = 0;
size_t maxdatalen = 48;
uint8_t *data = calloc(4 * 64, sizeof(uint8_t));
size_t datalen = 0;
int res = 0;
char filename[FILE_PATH_SIZE] = { 0x00 };
2019-03-14 19:30:32 +08:00
uint16_t cmd = CMD_SIMULATE_HITAG;
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
switch (tolower(param_getchar(Cmd, cmdp))) {
case 'h':
free(data);
return usage_hitag_sim();
case '2':
2019-03-14 19:30:32 +08:00
maxdatalen = 48;
cmdp++;
break;
case 's':
cmd = CMD_SIMULATE_HITAG_S;
maxdatalen = 4 * 64;
cmdp++;
break;
2019-03-14 19:30:32 +08:00
case 'e':
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
res = loadFileEML(filename, data, &datalen);
2019-03-14 19:30:32 +08:00
if (res > 0 || datalen != maxdatalen) {
PrintAndLogDevice(FAILED, "error, bytes read mismatch file size");
errors = true;
break;
}
tag_mem_supplied = true;
cmdp += 2;
2019-03-14 19:30:32 +08:00
break;
case 'j':
2019-03-14 19:30:32 +08:00
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
res = loadFileJSON(filename, data, maxdatalen, &datalen);
2019-03-14 19:30:32 +08:00
if (res > 0) {
errors = true;
break;
2019-03-14 19:30:32 +08:00
}
tag_mem_supplied = true;
cmdp += 2;
2019-03-14 19:30:32 +08:00
break;
case 'b':
2019-03-14 19:30:32 +08:00
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
res = loadFile(filename, ".bin", data, maxdatalen, &datalen);
2019-03-14 19:30:32 +08:00
if (res > 0) {
errors = true;
break;
2019-03-14 19:30:32 +08:00
}
tag_mem_supplied = true;
2019-03-14 19:30:32 +08:00
cmdp += 2;
break;
default:
PrintAndLogEx(WARNING, "Unknown parameter '%c'", param_getchar(Cmd, cmdp));
errors = true;
break;
2019-03-10 06:35:06 +08:00
}
}
2019-03-14 19:30:32 +08:00
//Validations
if (errors || cmdp == 0) {
free(data);
return usage_hitag_sim();
}
2019-03-14 19:30:32 +08:00
clearCommandBuffer();
2019-03-14 19:30:32 +08:00
if (tag_mem_supplied) {
SendCommandOLD(cmd, 1, 0, 0, data, datalen);
} else {
SendCommandMIX(cmd, 0, 0, 0, NULL, 0);
2019-03-14 05:48:51 +08:00
}
2019-03-14 19:30:32 +08:00
free(data);
2019-03-10 06:35:06 +08:00
return 0;
}
static void printHitagConfiguration(uint8_t config) {
2019-03-28 21:19:41 +08:00
2019-03-15 07:27:26 +08:00
char msg[100];
memset(msg, 0, sizeof(msg));
2019-03-16 03:10:17 +08:00
char bits[9];
char *bs = bits;
for (uint8_t i = 0 ; i < 8 ; i++) {
2019-03-16 05:05:36 +08:00
snprintf(bs, sizeof(bits) - i, "%1d", (config >> (7 - i)) & 1);
2019-03-16 03:10:17 +08:00
bs++;
}
PrintAndLogEx(INFO, "\n\nHitag2 tag information ");
PrintAndLogEx(INFO, "------------------------------------");
2019-03-28 21:19:41 +08:00
2019-03-16 03:10:17 +08:00
//configuration byte
2019-03-28 21:19:41 +08:00
PrintAndLogEx(SUCCESS, "Config byte : 0x%02X [ %s ]", config, bits);
// encoding
2019-03-16 03:10:17 +08:00
strcat(msg, "Encoding : ");
if (config & 0x1) {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), _YELLOW_("Biphase"));
} else {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), _YELLOW_("Manchester"));
}
PrintAndLogEx(SUCCESS, "%s", msg);
memset(msg, 0, sizeof(msg));
2019-03-15 07:20:42 +08:00
// version
strcat(msg, "Coding in HITAG 2 operation: %s");
uint8_t foo = (config & 0x6) >> 1;
2019-03-15 07:20:42 +08:00
switch (foo) {
case 0:
2019-03-16 03:10:17 +08:00
PrintAndLogEx(SUCCESS, "Version : public mode B, Coding: biphase");
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
break;
case 1:
2019-03-16 03:10:17 +08:00
PrintAndLogEx(SUCCESS, "Version : public mode A, Coding: manchester");
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
2019-03-15 07:20:42 +08:00
break;
case 2:
2019-03-16 03:10:17 +08:00
PrintAndLogEx(SUCCESS, "Version : public mode C, Coding: biphase");
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
2019-03-15 07:20:42 +08:00
break;
case 3:
2019-03-16 03:10:17 +08:00
PrintAndLogEx(SUCCESS, "Version : Hitag2");
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
break;
}
memset(msg, 0, sizeof(msg));
2019-03-15 07:20:42 +08:00
// mode
2019-03-16 03:10:17 +08:00
strcat(msg, "Tag is in : ");
if (config & 0x8) {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), _YELLOW_("Crypto mode"));
} else {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), _YELLOW_("Password mode"));
}
2019-03-15 07:20:42 +08:00
PrintAndLogEx(SUCCESS, "%s", msg);
memset(msg, 0, sizeof(msg));
2019-03-15 07:20:42 +08:00
// page access
2019-03-16 03:10:17 +08:00
strcat(msg, "Page 6,7 : ");
if (config & 0x10) {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), "read only");
} else {
2019-04-12 16:55:09 +08:00
strcat(msg + strlen(msg), _GREEN_("RW"));
}
2019-03-15 07:20:42 +08:00
PrintAndLogEx(SUCCESS, "%s", msg);
memset(msg, 0, sizeof(msg));
2019-03-15 07:20:42 +08:00
// page access
2019-03-28 21:19:41 +08:00
strcat(msg, "Page 4,5 : ");
if (config & 0x20) {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), "read only");
} else {
2019-04-12 16:55:09 +08:00
strcat(msg + strlen(msg), _GREEN_("RW"));
}
2019-03-15 07:20:42 +08:00
PrintAndLogEx(SUCCESS, "%s", msg);
memset(msg, 0, sizeof(msg));
2019-03-15 07:20:42 +08:00
// OTP
2019-03-16 03:10:17 +08:00
strcat(msg, "Page 3 : ");
if (config & 0x40) {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), "read only. Configuration byte and password tag " _RED_("FIXED / IRREVERSIBLE"));
} else {
2019-04-12 16:55:09 +08:00
strcat(msg + strlen(msg), _GREEN_("RW"));
2019-03-15 07:20:42 +08:00
}
PrintAndLogEx(SUCCESS, "%s", msg);
memset(msg, 0, sizeof(msg));
2019-03-15 07:20:42 +08:00
// OTP
if (config & 0x80) {
2019-03-16 03:10:17 +08:00
strcat(msg, "Page 1 : " _RED_("locked") "\n");
2019-03-15 07:20:42 +08:00
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), "Page 2 : ");
if (config & 0x8) {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), _RED_("locked"));
} else {
2019-03-16 03:10:17 +08:00
strcat(msg + strlen(msg), "read only");
}
} else {
2019-04-12 16:55:09 +08:00
strcat(msg, "Page 1,2 : " _GREEN_("RW"));
}
PrintAndLogEx(SUCCESS, "%s", msg);
PrintAndLogEx(INFO, "------------------------------------");
}
2019-03-16 03:10:17 +08:00
static bool getHitagUid(uint32_t *uid) {
hitag_data htd;
memset(&htd, 0, sizeof(htd));
2019-03-16 03:10:17 +08:00
clearCommandBuffer();
SendCommandMIX(CMD_READER_HITAG, RHT2F_UID_ONLY, 0, 0, &htd, sizeof(htd));
2019-04-18 18:43:35 +08:00
PacketResponseNG resp;
2019-03-16 03:10:17 +08:00
if (!WaitForResponseTimeout(CMD_ACK, &resp, 2500)) {
PrintAndLogEx(WARNING, "timeout while waiting for reply.");
return false;
}
2019-04-18 05:44:48 +08:00
if (resp.oldarg[0] == false) {
2019-03-16 03:10:17 +08:00
PrintAndLogEx(DEBUG, "DEBUG: Error - failed getting UID");
return false;
}
2019-03-28 21:19:41 +08:00
if (uid)
2019-04-18 05:44:48 +08:00
*uid = bytes_to_num(resp.data.asBytes, 4);
2019-03-28 21:19:41 +08:00
2019-03-16 03:10:17 +08:00
return true;
}
static int CmdLFHitagInfo(const char *Cmd) {
PrintAndLogEx(INFO, "Hitag2 tag information ");
PrintAndLogEx(INFO, "To be done!");
PrintAndLogEx(INFO, "------------------------------------");
2019-03-15 07:20:42 +08:00
char ctmp = tolower(param_getchar(Cmd, 0));
2019-03-14 19:30:32 +08:00
if (ctmp == 'h') return usage_hitag_info();
2019-03-28 21:19:41 +08:00
2019-03-16 03:10:17 +08:00
// pwd or key
2019-03-15 07:20:42 +08:00
2019-03-16 03:10:17 +08:00
// read UID
uint32_t uid = 0;
2019-03-28 21:19:41 +08:00
if (getHitagUid(&uid) == false)
2019-03-16 03:10:17 +08:00
return 1;
2019-03-28 21:19:41 +08:00
2019-03-16 03:10:17 +08:00
PrintAndLogEx(SUCCESS, "UID: %08X", uid);
2019-03-28 21:19:41 +08:00
2019-03-16 03:10:17 +08:00
// how to detemine Hitag types?
2019-03-28 21:19:41 +08:00
// read block3, get configuration byte.
// common configurations.
2019-03-15 07:20:42 +08:00
printHitagConfiguration(0x06);
//printHitagConfiguration( 0x0E );
//printHitagConfiguration( 0x02 );
//printHitagConfiguration( 0x00 );
//printHitagConfiguration( 0x04 );
return 0;
}
2019-03-28 21:19:41 +08:00
// TODO: iceman
2019-03-16 03:10:17 +08:00
// Hitag2 reader, problem is that this command mixes up stuff. So 26 give uid. 21 etc will also give you a memory dump !?
//
static int CmdLFHitagReader(const char *Cmd) {
uint16_t cmd = CMD_READER_HITAG;
hitag_data htd;
2019-03-10 06:35:06 +08:00
hitag_function htf = param_get32ex(Cmd, 0, 0, 10);
switch (htf) {
2019-03-10 21:44:21 +08:00
case RHTSF_CHALLENGE: {
cmd = CMD_READ_HITAG_S;
num_to_bytes(param_get32ex(Cmd, 1, 0, 16), 4, htd.auth.NrAr);
num_to_bytes(param_get32ex(Cmd, 2, 0, 16), 4, htd.auth.NrAr + 4);
2019-03-12 06:12:31 +08:00
break;
2019-03-10 21:44:21 +08:00
}
case RHTSF_KEY: {
cmd = CMD_READ_HITAG_S;
num_to_bytes(param_get64ex(Cmd, 1, 0, 16), 6, htd.crypto.key);
2019-03-12 06:12:31 +08:00
break;
2019-03-10 21:44:21 +08:00
}
2019-03-10 06:35:06 +08:00
case RHT2F_PASSWORD: {
num_to_bytes(param_get32ex(Cmd, 1, 0, 16), 4, htd.pwd.password);
2019-03-12 06:12:31 +08:00
break;
2019-03-10 21:44:21 +08:00
}
2019-03-10 06:35:06 +08:00
case RHT2F_AUTHENTICATE: {
num_to_bytes(param_get32ex(Cmd, 1, 0, 16), 4, htd.auth.NrAr);
num_to_bytes(param_get32ex(Cmd, 2, 0, 16), 4, htd.auth.NrAr + 4);
2019-03-12 06:12:31 +08:00
break;
2019-03-10 21:44:21 +08:00
}
2019-03-10 06:35:06 +08:00
case RHT2F_CRYPTO: {
num_to_bytes(param_get64ex(Cmd, 1, 0, 16), 6, htd.crypto.key);
2019-03-12 06:12:31 +08:00
break;
2019-03-10 21:44:21 +08:00
}
2019-03-10 06:35:06 +08:00
case RHT2F_TEST_AUTH_ATTEMPTS: {
// No additional parameters needed
2019-03-10 21:44:21 +08:00
break;
}
2019-03-10 06:35:06 +08:00
case RHT2F_UID_ONLY: {
// No additional parameters needed
2019-03-10 21:44:21 +08:00
break;
}
case WHTSF_CHALLENGE:
case WHTSF_KEY:
case WHT2F_CRYPTO:
2019-03-10 21:44:21 +08:00
return usage_hitag_reader();
2019-03-10 06:35:06 +08:00
}
clearCommandBuffer();
SendCommandOLD(cmd, htf, 0, 0, &htd, sizeof(htd));
2019-04-18 18:43:35 +08:00
PacketResponseNG resp;
2019-03-10 07:00:59 +08:00
if (!WaitForResponseTimeout(CMD_ACK, &resp, 4000)) {
2019-03-10 06:35:06 +08:00
PrintAndLogEx(WARNING, "timeout while waiting for reply.");
return 1;
}
2019-04-18 05:44:48 +08:00
if (resp.oldarg[0] == false) {
2019-03-10 06:35:06 +08:00
PrintAndLogEx(DEBUG, "DEBUG: Error - hitag failed");
return 1;
}
2019-04-18 05:44:48 +08:00
uint32_t id = bytes_to_num(resp.data.asBytes, 4);
2019-03-10 06:35:06 +08:00
2019-03-16 03:10:17 +08:00
PrintAndLogEx(SUCCESS, "Valid Hitag2 tag found - UID: %08x", id);
if (htf != RHT2F_UID_ONLY) {
2019-03-28 21:19:41 +08:00
PrintAndLogEx(SUCCESS, "Dumping tag memory...");
2019-04-18 05:44:48 +08:00
uint8_t *data = resp.data.asBytes;
2019-03-14 19:30:32 +08:00
2019-03-10 06:35:06 +08:00
char filename[FILE_PATH_SIZE];
char *fnameptr = filename;
fnameptr += sprintf(fnameptr, "lf-hitag-");
FillFileNameByUID(fnameptr, data, "-dump", 4);
2019-03-10 06:35:06 +08:00
saveFile(filename, ".bin", data, 48);
saveFileEML(filename, data, 48, 4);
saveFileJSON(filename, jsfHitag, data, 48);
2019-03-28 21:19:41 +08:00
2019-03-16 03:10:17 +08:00
// block3, 1 byte
2019-03-28 21:19:41 +08:00
printHitagConfiguration(data[4 * 3]);
2019-03-10 06:35:06 +08:00
}
return 0;
}
static int CmdLFHitagCheckChallenges(const char *Cmd) {
2019-03-14 19:30:32 +08:00
2019-03-10 06:35:06 +08:00
char filename[FILE_PATH_SIZE] = { 0x00 };
size_t datalen = 0;
int res = 0;
bool file_given = false;
2019-03-14 19:30:32 +08:00
bool errors = false;
uint8_t cmdp = 0;
uint8_t *data = calloc(8 * 60, sizeof(uint8_t));
2019-03-14 19:30:32 +08:00
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
switch (tolower(param_getchar(Cmd, cmdp))) {
case 'h':
free(data);
return usage_hitag_checkchallenges();
case 'f':
//file with all the challenges to try
2019-03-14 19:30:32 +08:00
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
res = loadFile(filename, ".cc", data, 8 * 60, &datalen);
2019-03-14 19:30:32 +08:00
if (res > 0) {
errors = true;
break;
}
file_given = true;
2019-03-14 19:30:32 +08:00
cmdp += 2;
break;
default:
PrintAndLogEx(WARNING, "Unknown parameter '%c'", param_getchar(Cmd, cmdp));
errors = true;
break;
}
2019-03-10 06:35:06 +08:00
}
2019-03-14 19:30:32 +08:00
//Validations
if (errors) {
2019-03-14 19:30:32 +08:00
free(data);
return usage_hitag_checkchallenges();
}
2019-03-14 19:30:32 +08:00
2019-03-10 06:35:06 +08:00
clearCommandBuffer();
if (file_given)
SendCommandOLD(CMD_TEST_HITAGS_TRACES, 1, 0, 0, data, datalen);
else
SendCommandMIX(CMD_TEST_HITAGS_TRACES, 0, 0, 0, NULL, 0);
2019-03-14 19:30:32 +08:00
free(data);
2019-03-10 06:35:06 +08:00
return 0;
}
static int CmdLFHitagWriter(const char *Cmd) {
hitag_data htd;
2019-03-10 06:35:06 +08:00
hitag_function htf = param_get32ex(Cmd, 0, 0, 10);
2019-03-14 19:30:32 +08:00
uint32_t arg2 = 0;
2019-03-10 06:35:06 +08:00
switch (htf) {
case WHTSF_CHALLENGE: {
num_to_bytes(param_get64ex(Cmd, 1, 0, 16), 8, htd.auth.NrAr);
arg2 = param_get32ex(Cmd, 2, 0, 10);
num_to_bytes(param_get32ex(Cmd, 3, 0, 16), 4, htd.auth.data);
break;
2019-03-10 07:00:59 +08:00
}
case WHTSF_KEY:
case WHT2F_CRYPTO: {
num_to_bytes(param_get64ex(Cmd, 1, 0, 16), 6, htd.crypto.key);
arg2 = param_get32ex(Cmd, 2, 0, 10);
num_to_bytes(param_get32ex(Cmd, 3, 0, 16), 4, htd.crypto.data);
break;
2019-03-10 07:00:59 +08:00
}
case RHTSF_CHALLENGE:
case RHTSF_KEY:
case RHT2F_PASSWORD:
case RHT2F_AUTHENTICATE:
case RHT2F_CRYPTO:
case RHT2F_TEST_AUTH_ATTEMPTS:
case RHT2F_UID_ONLY:
return usage_hitag_writer();
2019-03-10 06:35:06 +08:00
}
2019-03-10 06:35:06 +08:00
clearCommandBuffer();
SendCommandOLD(CMD_WR_HITAG_S, htf, 0, arg2, &htd, sizeof(htd));
2019-04-18 18:43:35 +08:00
PacketResponseNG resp;
if (!WaitForResponseTimeout(CMD_ACK, &resp, 4000)) {
PrintAndLogEx(WARNING, "timeout while waiting for reply.");
return 1;
2019-03-14 19:30:32 +08:00
}
2019-03-10 06:35:06 +08:00
2019-04-18 05:44:48 +08:00
if (resp.oldarg[0] == false) {
2019-03-14 05:48:51 +08:00
PrintAndLogEx(DEBUG, "DEBUG: Error - hitag write failed");
return 1;
2019-03-14 19:30:32 +08:00
}
2019-03-10 06:35:06 +08:00
return 0;
}
/*
static int CmdLFHitagDump(const char *Cmd) {
2019-03-14 18:29:50 +08:00
PrintAndLogEx(INFO, "Dumping of tag memory");
PrintAndLogEx(INFO, "To be done!");
2019-03-14 19:30:32 +08:00
char ctmp = tolower(param_getchar(Cmd, 0));
2019-03-14 18:30:49 +08:00
if (ctmp == 'h') return usage_hitag_dump();
return 0;
}
*/
static command_t CommandTable[] = {
{"help", CmdHelp, AlwaysAvailable, "This help" },
{"list", CmdLFHitagList, IfPm3Hitag, "List Hitag trace history" },
{"info", CmdLFHitagInfo, IfPm3Hitag, "Tag information" },
{"reader", CmdLFHitagReader, IfPm3Hitag, "Act like a Hitag Reader" },
{"sim", CmdLFHitagSim, IfPm3Hitag, "Simulate Hitag transponder" },
{"sniff", CmdLFHitagSniff, IfPm3Hitag, "Eavesdrop Hitag communication" },
{"writer", CmdLFHitagWriter, IfPm3Hitag, "Act like a Hitag Writer" },
{"cc", CmdLFHitagCheckChallenges, IfPm3Hitag, "Test all challenges" },
2019-03-10 07:00:59 +08:00
{ NULL, NULL, 0, NULL }
};
static int CmdHelp(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
CmdsHelp(CommandTable);
return 0;
}
int CmdLFHitag(const char *Cmd) {
2019-03-10 06:35:06 +08:00
clearCommandBuffer();
2019-04-19 06:47:51 +08:00
return CmdsParse(CommandTable, Cmd);
}
int readHitagUid(void) {
return CmdLFHitagReader("26") == 0;
}