2012-09-18 21:52:50 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// 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"
|
2012-09-18 21:52:50 +08:00
|
|
|
#include "ui.h"
|
|
|
|
#include "cmdparser.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "util.h"
|
2017-07-30 15:17:48 +08:00
|
|
|
#include "parity.h"
|
2019-03-13 19:18:37 +08:00
|
|
|
#include "hitag.h"
|
2017-07-30 15:17:48 +08:00
|
|
|
#include "util_posix.h"
|
2018-09-07 03:43:20 +08:00
|
|
|
#include "comms.h"
|
2017-10-31 05:20:08 +08:00
|
|
|
#include "cmddata.h"
|
2019-03-13 23:31:34 +08:00
|
|
|
#include "loclass/fileutils.h" // savefile
|
2012-09-18 21:52:50 +08:00
|
|
|
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
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-03-14 03:16:11 +08:00
|
|
|
int usage_hitag_sniff(void) {
|
2019-03-14 15:24:49 +08:00
|
|
|
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");
|
2019-03-14 03:16:11 +08:00
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf hitag sniff");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int usage_hitag_sim(void) {
|
2019-03-14 15:24:49 +08:00
|
|
|
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");
|
2019-03-14 03:16:11 +08:00
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " lf hitag sim 2 b lf-hitag-dump");
|
|
|
|
return 0;
|
|
|
|
}
|
2019-03-14 15:30:20 +08:00
|
|
|
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-03-14 03:16:11 +08:00
|
|
|
int usage_hitag_dump(void) {
|
2019-03-14 15:24:49 +08:00
|
|
|
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");
|
2019-03-14 15:24:49 +08:00
|
|
|
// PrintAndLogEx(NORMAL, " p <pwd> password");
|
|
|
|
// PrintAndLogEx(NORMAL, " f <name> data filename, if no <name> given, UID will be used as filename");
|
2019-03-14 03:16:11 +08:00
|
|
|
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");
|
2019-03-14 03:16:11 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2019-03-12 06:12:31 +08:00
|
|
|
int usage_hitag_reader(void) {
|
2019-03-13 23:44:32 +08:00
|
|
|
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:");
|
2019-03-14 15:24:49 +08:00
|
|
|
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-03-13 23:44:32 +08:00
|
|
|
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-03-14 15:24:49 +08:00
|
|
|
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`"));
|
2019-03-14 15:24:49 +08:00
|
|
|
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
|
|
|
|
|
|
|
int CmdLFHitagList(const char *Cmd) {
|
2019-03-14 14:42:48 +08:00
|
|
|
CmdTraceList("hitag");
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
2019-03-10 06:35:06 +08:00
|
|
|
uint8_t *got = calloc(USB_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
|
|
|
|
UsbCommand response;
|
2019-03-10 07:00:59 +08:00
|
|
|
if (!GetFromDevice(BIG_BUF, got, USB_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 > USB_CMD_DATA_SIZE) {
|
|
|
|
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;
|
2019-03-14 14:42:48 +08:00
|
|
|
*/
|
2012-09-18 21:52:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-12 19:56:39 +08:00
|
|
|
int CmdLFHitagSniff(const char *Cmd) {
|
2019-03-14 03:16:11 +08:00
|
|
|
|
|
|
|
char ctmp = tolower(param_getchar(Cmd, 0));
|
|
|
|
if (ctmp == 'h') return usage_hitag_sniff();
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 03:16:11 +08:00
|
|
|
UsbCommand c = {CMD_SNIFF_HITAG, {0, 0, 0}};
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
|
|
|
return 0;
|
2012-09-18 21:52:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
int CmdLFHitagSim(const char *Cmd) {
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-03-14 03:16:11 +08:00
|
|
|
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;
|
2019-03-14 15:24:49 +08:00
|
|
|
char filename[FILE_PATH_SIZE] = { 0x00 };
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 05:48:51 +08:00
|
|
|
UsbCommand c = {CMD_SIMULATE_HITAG, {0, 0, 0}};
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 03:16:11 +08:00
|
|
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
|
|
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
|
|
|
case 'h':
|
2019-03-14 18:20:44 +08:00
|
|
|
free(data);
|
2019-03-14 03:16:11 +08:00
|
|
|
return usage_hitag_sim();
|
|
|
|
case '2':
|
2019-03-14 19:30:32 +08:00
|
|
|
maxdatalen = 48;
|
2019-03-14 03:16:11 +08:00
|
|
|
cmdp++;
|
|
|
|
break;
|
|
|
|
case 's':
|
2019-03-14 05:48:51 +08:00
|
|
|
c.cmd = CMD_SIMULATE_HITAG_S;
|
2019-03-14 03:16:11 +08:00
|
|
|
maxdatalen = 4 * 64;
|
|
|
|
cmdp++;
|
|
|
|
break;
|
2019-03-14 19:30:32 +08:00
|
|
|
case 'e':
|
|
|
|
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
|
2019-03-14 03:16:11 +08:00
|
|
|
res = loadFileEML(filename, "eml", data, &datalen);
|
2019-03-14 19:30:32 +08:00
|
|
|
if (res > 0 || datalen != maxdatalen) {
|
|
|
|
PrintAndLogDevice(FAILED, "error, bytes read mismatch file size");
|
2019-03-14 03:16:11 +08:00
|
|
|
errors = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tag_mem_supplied = true;
|
|
|
|
cmdp += 2;
|
2019-03-14 19:30:32 +08:00
|
|
|
break;
|
2019-03-14 03:16:11 +08:00
|
|
|
case 'j':
|
2019-03-14 19:30:32 +08:00
|
|
|
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
|
2019-03-14 03:16:11 +08:00
|
|
|
res = loadFileJSON(filename, "json", data, maxdatalen, &datalen);
|
2019-03-14 19:30:32 +08:00
|
|
|
if (res > 0) {
|
2019-03-14 03:16:11 +08:00
|
|
|
errors = true;
|
|
|
|
break;
|
2019-03-14 19:30:32 +08:00
|
|
|
}
|
2019-03-14 03:16:11 +08:00
|
|
|
tag_mem_supplied = true;
|
|
|
|
cmdp += 2;
|
2019-03-14 19:30:32 +08:00
|
|
|
break;
|
2019-03-14 03:16:11 +08:00
|
|
|
case 'b':
|
2019-03-14 19:30:32 +08:00
|
|
|
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
|
2019-03-14 15:24:49 +08:00
|
|
|
res = loadFile(filename, "bin", data, maxdatalen, &datalen);
|
2019-03-14 19:30:32 +08:00
|
|
|
if (res > 0) {
|
2019-03-14 03:16:11 +08:00
|
|
|
errors = true;
|
|
|
|
break;
|
2019-03-14 19:30:32 +08:00
|
|
|
}
|
2019-03-14 03:16:11 +08:00
|
|
|
tag_mem_supplied = true;
|
2019-03-14 19:30:32 +08:00
|
|
|
cmdp += 2;
|
2019-03-14 03:16:11 +08:00
|
|
|
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 03:16:11 +08:00
|
|
|
}
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 03:16:11 +08:00
|
|
|
//Validations
|
2019-03-14 18:20:44 +08:00
|
|
|
if (errors || cmdp == 0) {
|
|
|
|
free(data);
|
|
|
|
return usage_hitag_sim();
|
|
|
|
}
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
c.arg[0] = (uint32_t)tag_mem_supplied;
|
2019-03-14 19:30:32 +08:00
|
|
|
if (tag_mem_supplied) {
|
2019-03-14 05:48:51 +08:00
|
|
|
memcpy(c.d.asBytes, data, datalen);
|
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
2019-03-14 18:20:44 +08:00
|
|
|
|
2019-03-14 19:30:32 +08:00
|
|
|
free(data);
|
2019-03-10 06:35:06 +08:00
|
|
|
return 0;
|
2012-09-18 21:52:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
static void printHitagConfiguration(uint8_t config) {
|
2019-03-16 03:10:17 +08:00
|
|
|
|
2019-03-15 07:27:26 +08:00
|
|
|
char msg[100];
|
2019-03-15 06:30:45 +08:00
|
|
|
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++) {
|
|
|
|
snprintf(bs, sizeof(bits), "%d", (config >> (7 - i)) & 1);
|
|
|
|
bs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintAndLogEx(INFO, "\n\nHitag2 tag information ");
|
|
|
|
PrintAndLogEx(INFO, "------------------------------------");
|
|
|
|
|
|
|
|
//configuration byte
|
|
|
|
PrintAndLogEx(SUCCESS, "Config byte : %02X - %s", config, bits);
|
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
// encoding
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg, "Encoding : ");
|
2019-03-15 06:30:45 +08:00
|
|
|
if (config & 0x1) {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _YELLOW_("Biphase"));
|
2019-03-15 06:30:45 +08:00
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _YELLOW_("Manchester"));
|
2019-03-15 06:30:45 +08:00
|
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, "%s", msg);
|
|
|
|
memset(msg, 0, sizeof(msg));
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-15 06:30:45 +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) {
|
2019-03-15 06:30:45 +08:00
|
|
|
case 0:
|
2019-03-16 03:10:17 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Version : public mode B, Coding: biphase");
|
2019-03-15 06:30:45 +08:00
|
|
|
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");
|
2019-03-15 06:30:45 +08:00
|
|
|
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
|
2019-03-15 07:20:42 +08:00
|
|
|
break;
|
2019-03-15 06:30:45 +08:00
|
|
|
case 2:
|
2019-03-16 03:10:17 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Version : public mode C, Coding: biphase");
|
2019-03-15 06:30:45 +08:00
|
|
|
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
|
2019-03-15 07:20:42 +08:00
|
|
|
break;
|
2019-03-15 06:30:45 +08:00
|
|
|
case 3:
|
2019-03-16 03:10:17 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Version : Hitag2");
|
2019-03-15 06:30:45 +08:00
|
|
|
PrintAndLogEx(SUCCESS, msg, (config & 0x1) ? "biphase" : "manchester");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
memset(msg, 0, sizeof(msg));
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
// mode
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg, "Tag is in : ");
|
2019-03-15 06:30:45 +08:00
|
|
|
if (config & 0x8) {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _YELLOW_("Crypto mode"));
|
2019-03-15 06:30:45 +08:00
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _YELLOW_("Password mode"));
|
2019-03-15 06:30:45 +08:00
|
|
|
}
|
2019-03-15 07:20:42 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "%s", msg);
|
2019-03-15 06:30:45 +08:00
|
|
|
memset(msg, 0, sizeof(msg));
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
// page access
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg, "Page 6,7 : ");
|
2019-03-15 06:30:45 +08:00
|
|
|
if (config & 0x10) {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), "read only");
|
2019-03-15 06:30:45 +08:00
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _GREEN_("read write"));
|
2019-03-15 06:30:45 +08:00
|
|
|
}
|
2019-03-15 07:20:42 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "%s", msg);
|
2019-03-15 06:30:45 +08:00
|
|
|
memset(msg, 0, sizeof(msg));
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
// page access
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg, "Page 4,5 : ");
|
2019-03-15 06:30:45 +08:00
|
|
|
if (config & 0x20) {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), "read only");
|
2019-03-15 06:30:45 +08:00
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _GREEN_("read write"));
|
2019-03-15 06:30:45 +08:00
|
|
|
}
|
2019-03-15 07:20:42 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "%s", msg);
|
2019-03-15 06:30:45 +08:00
|
|
|
memset(msg, 0, sizeof(msg));
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
// OTP
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg, "Page 3 : ");
|
2019-03-15 06:30:45 +08:00
|
|
|
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"));
|
2019-03-15 06:30:45 +08:00
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _GREEN_("read write"));
|
2019-03-15 07:20:42 +08:00
|
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, "%s", msg);
|
2019-03-15 06:30:45 +08:00
|
|
|
memset(msg, 0, sizeof(msg));
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-15 06:30:45 +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 : ");
|
2019-03-15 06:30:45 +08:00
|
|
|
if (config & 0x8) {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), _RED_("locked"));
|
2019-03-15 06:30:45 +08:00
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg + strlen(msg), "read only");
|
2019-03-15 06:30:45 +08:00
|
|
|
}
|
|
|
|
} else {
|
2019-03-16 03:10:17 +08:00
|
|
|
strcat(msg, "Page 1,2 : " _GREEN_("read write"));
|
2019-03-15 06:30:45 +08:00
|
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, "%s", msg);
|
|
|
|
PrintAndLogEx(INFO, "------------------------------------");
|
|
|
|
}
|
|
|
|
|
2019-03-16 03:10:17 +08:00
|
|
|
static bool getHitagUid(uint32_t *uid) {
|
|
|
|
|
|
|
|
UsbCommand c = {CMD_READER_HITAG, {RHT2F_UID_ONLY, 0, 0} };
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
|
|
|
UsbCommand resp;
|
|
|
|
if (!WaitForResponseTimeout(CMD_ACK, &resp, 2500)) {
|
|
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resp.arg[0] == false) {
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - failed getting UID");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( uid )
|
|
|
|
*uid = bytes_to_num(resp.d.asBytes, 4);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-14 15:30:20 +08:00
|
|
|
int CmdLFHitagInfo(const char *Cmd) {
|
2019-03-15 06:30:45 +08:00
|
|
|
PrintAndLogEx(INFO, "Hitag2 tag information ");
|
2019-03-14 15:30:20 +08:00
|
|
|
PrintAndLogEx(INFO, "To be done!");
|
2019-03-15 06:30:45 +08:00
|
|
|
PrintAndLogEx(INFO, "------------------------------------");
|
2019-03-15 07:20:42 +08:00
|
|
|
|
2019-03-14 15:30:20 +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-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;
|
|
|
|
if ( getHitagUid( &uid ) == false )
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
PrintAndLogEx(SUCCESS, "UID: %08X", uid);
|
|
|
|
|
|
|
|
// how to detemine Hitag types?
|
|
|
|
|
2019-03-15 06:30:45 +08:00
|
|
|
// read block3, get configuration byte.
|
|
|
|
|
|
|
|
// common configurations.
|
2019-03-15 07:20:42 +08:00
|
|
|
printHitagConfiguration(0x06);
|
2019-03-15 06:30:45 +08:00
|
|
|
//printHitagConfiguration( 0x0E );
|
|
|
|
//printHitagConfiguration( 0x02 );
|
|
|
|
//printHitagConfiguration( 0x00 );
|
|
|
|
//printHitagConfiguration( 0x04 );
|
2019-03-14 15:30:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-16 03:10:17 +08:00
|
|
|
// TODO: iceman
|
|
|
|
// Hitag2 reader, problem is that this command mixes up stuff. So 26 give uid. 21 etc will also give you a memory dump !?
|
|
|
|
//
|
2019-03-10 18:20:22 +08:00
|
|
|
int CmdLFHitagReader(const char *Cmd) {
|
2019-03-09 15:59:13 +08:00
|
|
|
|
2019-03-10 21:44:21 +08:00
|
|
|
UsbCommand c = {CMD_READER_HITAG, {0, 0, 0} };
|
2019-03-10 07:00:59 +08:00
|
|
|
hitag_data *htd = (hitag_data *)c.d.asBytes;
|
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: {
|
2019-03-10 06:35:06 +08:00
|
|
|
c.cmd = CMD_READ_HITAG_S;
|
|
|
|
num_to_bytes(param_get32ex(Cmd, 1, 0, 16), 4, htd->auth.NrAr);
|
2019-03-10 07:00:59 +08:00
|
|
|
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: {
|
2019-03-10 06:35:06 +08:00
|
|
|
c.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);
|
2019-03-10 07:00:59 +08:00
|
|
|
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;
|
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
default: {
|
2019-03-10 21:44:21 +08:00
|
|
|
return usage_hitag_reader();
|
2019-03-10 07:00:59 +08:00
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
c.arg[0] = htf;
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
|
|
|
UsbCommand 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resp.arg[0] == false) {
|
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - hitag failed");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t id = bytes_to_num(resp.d.asBytes, 4);
|
|
|
|
|
2019-03-16 03:10:17 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "Valid Hitag2 tag found - UID: %08x", id);
|
|
|
|
if (htf != RHT2F_UID_ONLY) {
|
|
|
|
|
|
|
|
PrintAndLogEx(SUCCESS, "Dumping tag memory..." );
|
2019-03-13 23:31:34 +08:00
|
|
|
uint8_t *data = resp.d.asBytes;
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
char filename[FILE_PATH_SIZE];
|
2019-03-13 23:31:34 +08:00
|
|
|
char *fnameptr = filename;
|
|
|
|
fnameptr += sprintf(fnameptr, "lf-hitag-");
|
|
|
|
FillFileNameByUID(fnameptr, data, "-dump", 4);
|
2019-03-10 06:35:06 +08:00
|
|
|
|
2019-03-14 19:30:32 +08:00
|
|
|
saveFile(filename, "bin", data, 48);
|
2019-03-13 23:31:34 +08:00
|
|
|
saveFileEML(filename, "eml", data, 48, 4);
|
2019-03-16 03:10:17 +08:00
|
|
|
saveFileJSON(filename, "json", jsfHitag, data, 48);
|
|
|
|
|
|
|
|
// block3, 1 byte
|
|
|
|
printHitagConfiguration(data[4*3] );
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
return 0;
|
2012-09-18 21:52:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
int CmdLFHitagCheckChallenges(const char *Cmd) {
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 05:48:51 +08:00
|
|
|
UsbCommand c = { CMD_TEST_HITAGS_TRACES, {0, 0, 0}};
|
2019-03-10 06:35:06 +08:00
|
|
|
char filename[FILE_PATH_SIZE] = { 0x00 };
|
2019-03-14 15:24:49 +08:00
|
|
|
size_t datalen = 0;
|
|
|
|
int res = 0;
|
|
|
|
bool file_given = false;
|
2019-03-14 19:30:32 +08:00
|
|
|
bool errors = false;
|
2019-03-14 15:24:49 +08:00
|
|
|
uint8_t cmdp = 0;
|
|
|
|
uint8_t *data = calloc(8 * 60, sizeof(uint8_t));
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 15:24:49 +08:00
|
|
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
|
|
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
|
|
|
case 'h':
|
2019-03-14 18:20:44 +08:00
|
|
|
free(data);
|
2019-03-14 15:24:49 +08:00
|
|
|
return usage_hitag_checkchallenges();
|
|
|
|
case 'f':
|
2019-03-14 19:30:32 +08:00
|
|
|
param_getstr(Cmd, cmdp + 1, filename, sizeof(filename));
|
2019-03-14 15:24:49 +08:00
|
|
|
res = loadFile(filename, "cc", data, 8 * 60, &datalen);
|
2019-03-14 19:30:32 +08:00
|
|
|
if (res > 0) {
|
2019-03-14 15:24:49 +08:00
|
|
|
errors = true;
|
|
|
|
break;
|
|
|
|
}
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 15:24:49 +08:00
|
|
|
memcpy(c.d.asBytes, data, datalen);
|
|
|
|
file_given = true;
|
2019-03-14 19:30:32 +08:00
|
|
|
cmdp += 2;
|
2019-03-14 15:24:49 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
PrintAndLogEx(WARNING, "Unknown parameter '%c'", param_getchar(Cmd, cmdp));
|
|
|
|
errors = true;
|
|
|
|
break;
|
2016-03-05 02:06:47 +08:00
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-14 15:24:49 +08:00
|
|
|
//Validations
|
2019-03-14 18:20:44 +08:00
|
|
|
if (errors) {
|
2019-03-14 19:30:32 +08:00
|
|
|
free(data);
|
2019-03-14 18:20:44 +08:00
|
|
|
return usage_hitag_checkchallenges();
|
|
|
|
}
|
2019-03-14 19:30:32 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
//file with all the challenges to try
|
|
|
|
c.arg[0] = (uint32_t)file_given;
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
2019-03-14 18:20:44 +08:00
|
|
|
|
2019-03-14 19:30:32 +08:00
|
|
|
free(data);
|
2019-03-10 06:35:06 +08:00
|
|
|
return 0;
|
2016-03-05 02:06:47 +08:00
|
|
|
}
|
|
|
|
|
2019-03-14 00:50:10 +08:00
|
|
|
int CmdLFHitagWriter(const char *Cmd) {
|
2019-03-14 05:48:51 +08:00
|
|
|
UsbCommand c = { CMD_WR_HITAG_S, {0, 0, 0}};
|
2019-03-10 07:00:59 +08:00
|
|
|
hitag_data *htd = (hitag_data *)c.d.asBytes;
|
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
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
switch (htf) {
|
2019-03-13 23:44:32 +08:00
|
|
|
case WHTSF_CHALLENGE: {
|
2019-03-10 06:35:06 +08:00
|
|
|
num_to_bytes(param_get64ex(Cmd, 1, 0, 16), 8, htd->auth.NrAr);
|
2019-03-10 07:00:59 +08:00
|
|
|
c.arg[2] = param_get32ex(Cmd, 2, 0, 10);
|
2019-03-10 06:35:06 +08:00
|
|
|
num_to_bytes(param_get32ex(Cmd, 3, 0, 16), 4, htd->auth.data);
|
2019-03-13 23:44:32 +08:00
|
|
|
break;
|
2019-03-10 07:00:59 +08:00
|
|
|
}
|
2019-03-13 23:44:32 +08:00
|
|
|
case WHTSF_KEY:
|
|
|
|
case WHT2F_CRYPTO: {
|
2019-03-10 06:35:06 +08:00
|
|
|
num_to_bytes(param_get64ex(Cmd, 1, 0, 16), 6, htd->crypto.key);
|
2019-03-10 07:00:59 +08:00
|
|
|
c.arg[2] = param_get32ex(Cmd, 2, 0, 10);
|
2019-03-10 06:35:06 +08:00
|
|
|
num_to_bytes(param_get32ex(Cmd, 3, 0, 16), 4, htd->crypto.data);
|
2019-03-13 23:44:32 +08:00
|
|
|
break;
|
2019-03-10 07:00:59 +08:00
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
default: {
|
2019-03-13 23:44:32 +08:00
|
|
|
return usage_hitag_writer();
|
2019-03-10 07:00:59 +08:00
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
2019-03-13 23:44:32 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
c.arg[0] = htf;
|
|
|
|
|
|
|
|
clearCommandBuffer();
|
|
|
|
SendCommand(&c);
|
|
|
|
UsbCommand resp;
|
2019-03-13 23:44:32 +08:00
|
|
|
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-03-13 23:44:32 +08:00
|
|
|
if (resp.arg[0] == false) {
|
2019-03-14 05:48:51 +08:00
|
|
|
PrintAndLogEx(DEBUG, "DEBUG: Error - hitag write failed");
|
2019-03-13 23:44:32 +08:00
|
|
|
return 1;
|
2019-03-14 19:30:32 +08:00
|
|
|
}
|
2019-03-10 06:35:06 +08:00
|
|
|
return 0;
|
2016-04-24 00:23:46 +08:00
|
|
|
}
|
2016-03-05 02:06:47 +08:00
|
|
|
|
2019-03-14 18:34:32 +08:00
|
|
|
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;
|
2019-03-14 03:16:11 +08:00
|
|
|
}
|
|
|
|
|
2017-08-10 00:33:30 +08:00
|
|
|
static command_t CommandTable[] = {
|
2019-03-14 15:30:20 +08:00
|
|
|
{"help", CmdHelp, 1, "This help" },
|
|
|
|
{"list", CmdLFHitagList, 0, "List Hitag trace history" },
|
|
|
|
{"info", CmdLFHitagInfo, 1, "Tag information" },
|
|
|
|
{"reader", CmdLFHitagReader, 1, "Act like a Hitag Reader" },
|
|
|
|
{"sim", CmdLFHitagSim, 1, "Simulate Hitag transponder" },
|
|
|
|
{"sniff", CmdLFHitagSniff, 1, "Eavesdrop Hitag communication" },
|
2019-03-14 15:24:49 +08:00
|
|
|
{"writer", CmdLFHitagWriter, 1, "Act like a Hitag Writer" },
|
|
|
|
{"cc", CmdLFHitagCheckChallenges, 1, "Test all challenges" },
|
2019-03-10 07:00:59 +08:00
|
|
|
{ NULL, NULL, 0, NULL }
|
2012-09-18 21:52:50 +08:00
|
|
|
};
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
int CmdLFHitag(const char *Cmd) {
|
2019-03-10 06:35:06 +08:00
|
|
|
clearCommandBuffer();
|
|
|
|
CmdsParse(CommandTable, Cmd);
|
|
|
|
return 0;
|
2012-09-18 21:52:50 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
int CmdHelp(const char *Cmd) {
|
2019-03-10 06:35:06 +08:00
|
|
|
CmdsHelp(CommandTable);
|
|
|
|
return 0;
|
2012-09-18 21:52:50 +08:00
|
|
|
}
|