2019-08-01 21:39:33 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2019 iceman
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Thinfilm commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "cmdhfthinfilm.h"
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include "cmdparser.h" // command_t
|
|
|
|
#include "comms.h"
|
|
|
|
#include "cmdtrace.h"
|
|
|
|
#include "crc16.h"
|
|
|
|
#include "ui.h"
|
|
|
|
#include "cmdhf14a.h" // manufacture
|
|
|
|
|
2019-08-01 21:39:33 +08:00
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
|
|
|
|
static int usage_thinfilm_info(void) {
|
2019-08-01 21:49:20 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Usage: hf thinfilm info [h]");
|
2019-08-01 21:39:33 +08:00
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h this help");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
2019-08-01 21:49:20 +08:00
|
|
|
PrintAndLogEx(NORMAL, " hf thinfilm info");
|
2019-08-01 21:39:33 +08:00
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-08-02 06:00:37 +08:00
|
|
|
static int usage_thinfilm_sim(void) {
|
|
|
|
PrintAndLogEx(NORMAL, "Usage: hf thinfilm sim [h] [d <data>]");
|
|
|
|
PrintAndLogEx(NORMAL, "Options:");
|
|
|
|
PrintAndLogEx(NORMAL, " h this help");
|
|
|
|
PrintAndLogEx(NORMAL, " d <bytes> bytes to send, in hex");
|
|
|
|
PrintAndLogEx(NORMAL, " r raw, provided bytes should include CRC");
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
PrintAndLogEx(NORMAL, "Examples:");
|
|
|
|
PrintAndLogEx(NORMAL, " hf thinfilm sim d B70470726f786d61726b2e636f6d");
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
2019-08-01 21:39:33 +08:00
|
|
|
|
|
|
|
// Printing function based upon the code in libnfc
|
|
|
|
// ref
|
|
|
|
// https://github.com/nfc-tools/libnfc/blob/master/utils/nfc-barcode.c
|
2019-08-01 23:33:00 +08:00
|
|
|
static int print_barcode(uint8_t *barcode, const size_t barcode_len, bool verbose) {
|
2019-08-01 21:39:33 +08:00
|
|
|
|
2019-09-24 00:59:45 +08:00
|
|
|
PrintAndLogEx(NORMAL, "");
|
2019-08-02 00:16:33 +08:00
|
|
|
// remove start bit
|
|
|
|
uint8_t mb = barcode[0] & ~0x80;
|
|
|
|
PrintAndLogEx(SUCCESS, " Manufacturer : "_YELLOW_("%s") "[0x%02X]", getTagInfo(mb), mb);
|
2019-08-01 23:09:51 +08:00
|
|
|
|
2019-08-01 23:33:00 +08:00
|
|
|
if (verbose) {
|
|
|
|
PrintAndLogEx(SUCCESS, " Data format : "_YELLOW_("%02X"), barcode[1]);
|
2019-08-01 23:49:35 +08:00
|
|
|
if (barcode_len > 2) {
|
|
|
|
uint8_t b1, b2;
|
|
|
|
compute_crc(CRC_14443_A, barcode, barcode_len - 2, &b1, &b2);
|
|
|
|
bool isok = (barcode[barcode_len - 1] == b1 && barcode[barcode_len - 2] == b2);
|
|
|
|
|
2019-09-11 21:58:03 +08:00
|
|
|
PrintAndLogEx(SUCCESS, " Checksum : "_YELLOW_("%02X %02X")"- %s", b2, b1, (isok) ? _GREEN_("OK") : _RED_("fail"));
|
2019-08-01 23:49:35 +08:00
|
|
|
} else {
|
2019-09-11 21:58:03 +08:00
|
|
|
PrintAndLogEx(SUCCESS, " Checksum : "_YELLOW_("too few data for checksum")"- " _RED_("fail"));
|
2019-08-01 23:49:35 +08:00
|
|
|
}
|
2019-10-06 05:56:19 +08:00
|
|
|
PrintAndLogEx(SUCCESS, " Data len (bits) : "_YELLOW_("%zu")"- %s", barcode_len * 8, (barcode_len == 16 || barcode_len == 32) ? _GREEN_("OK") : _YELLOW_("warning"));
|
2019-08-01 23:33:00 +08:00
|
|
|
PrintAndLogEx(SUCCESS, " Raw data : "_YELLOW_("%s"), sprint_hex(barcode, barcode_len));
|
2019-08-01 23:49:35 +08:00
|
|
|
if (barcode_len < 4) // too few to go to next decoding stages
|
|
|
|
return PM3_ESOFT;
|
2019-08-01 23:33:00 +08:00
|
|
|
}
|
2019-08-01 23:09:51 +08:00
|
|
|
|
2019-08-01 21:39:33 +08:00
|
|
|
char s[45];
|
|
|
|
memset(s, 0x00, sizeof(s));
|
2019-08-01 23:15:39 +08:00
|
|
|
|
2019-08-01 21:39:33 +08:00
|
|
|
switch (barcode[1]) {
|
|
|
|
case 0:
|
2019-08-02 00:22:51 +08:00
|
|
|
PrintAndLogEx(SUCCESS, " Data format : Reserved for allocation by tag manufacturer");
|
2019-08-01 21:39:33 +08:00
|
|
|
return PM3_SUCCESS;
|
|
|
|
case 1:
|
2019-08-01 23:15:39 +08:00
|
|
|
snprintf(s, sizeof(s), "http://www.");
|
2019-08-01 21:39:33 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
snprintf(s, sizeof(s), "https://www.");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
snprintf(s, sizeof(s), "http://");
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
snprintf(s, sizeof(s), "https://");
|
|
|
|
break;
|
|
|
|
case 5:
|
2019-08-01 23:49:35 +08:00
|
|
|
if (barcode_len < 16) {
|
|
|
|
PrintAndLogEx(WARNING, "EPC: (partial data) %s", sprint_hex(barcode + 2, barcode_len - 2));
|
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2019-08-01 23:15:39 +08:00
|
|
|
PrintAndLogEx(SUCCESS, "EPC: %s", sprint_hex(barcode + 2, 12));
|
2019-08-01 21:39:33 +08:00
|
|
|
return PM3_SUCCESS;
|
|
|
|
default:
|
2019-08-02 00:22:51 +08:00
|
|
|
PrintAndLogEx(SUCCESS, " Data format : RFU Reserved for future use (%02X)", barcode[1]);
|
2019-08-02 00:03:41 +08:00
|
|
|
if (!verbose)
|
|
|
|
PrintAndLogEx(SUCCESS, "Raw data with CRC: "_YELLOW_("%s"), sprint_hex(barcode, barcode_len));
|
2019-08-01 21:39:33 +08:00
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
2019-08-01 23:15:39 +08:00
|
|
|
|
|
|
|
snprintf(s + strlen(s), barcode_len - 3, (const char *)&barcode[2], barcode_len - 4);
|
2019-08-01 21:39:33 +08:00
|
|
|
|
|
|
|
for (uint8_t i = 0; i < strlen(s); i++) {
|
|
|
|
|
|
|
|
// terminate string
|
2019-08-01 23:07:07 +08:00
|
|
|
if ((uint8_t) s[i] == 0xFE) {
|
2019-08-01 21:39:33 +08:00
|
|
|
s[i] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, " Decoded NFC URL : "_YELLOW_("%s"), s);
|
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int CmdHfThinFilmInfo(const char *Cmd) {
|
|
|
|
|
|
|
|
uint8_t cmdp = 0;
|
|
|
|
bool errors = false;
|
|
|
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
|
|
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
|
|
|
case 'h':
|
|
|
|
return usage_thinfilm_info();
|
|
|
|
default:
|
|
|
|
PrintAndLogEx(WARNING, "Unknown parameter '%c'", param_getchar(Cmd, cmdp));
|
|
|
|
errors = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Validations
|
|
|
|
if (errors) {
|
|
|
|
usage_thinfilm_info();
|
|
|
|
return PM3_EINVARG;
|
|
|
|
}
|
|
|
|
|
2019-08-01 23:33:00 +08:00
|
|
|
return infoThinFilm(true);
|
2019-08-01 21:39:33 +08:00
|
|
|
}
|
|
|
|
|
2019-08-01 23:33:00 +08:00
|
|
|
int infoThinFilm(bool verbose) {
|
2019-08-01 23:15:39 +08:00
|
|
|
|
|
|
|
clearCommandBuffer();
|
2019-08-04 01:17:00 +08:00
|
|
|
SendCommandNG(CMD_HF_THINFILM_READ, NULL, 0);
|
2019-08-01 21:39:33 +08:00
|
|
|
|
|
|
|
PacketResponseNG resp;
|
2019-08-04 01:17:00 +08:00
|
|
|
if (!WaitForResponseTimeout(CMD_HF_THINFILM_READ, &resp, 1500)) {
|
2019-08-01 21:39:33 +08:00
|
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply.");
|
|
|
|
return PM3_ETIMEOUT;
|
|
|
|
}
|
2019-08-01 23:15:39 +08:00
|
|
|
|
|
|
|
if (resp.status == PM3_SUCCESS) {
|
2019-11-19 19:14:58 +08:00
|
|
|
if (resp.length == 16 || resp.length == 32) {
|
2019-08-01 23:33:00 +08:00
|
|
|
print_barcode(resp.data.asBytes, resp.length, verbose);
|
|
|
|
} else {
|
2019-11-19 19:14:58 +08:00
|
|
|
if (verbose)
|
|
|
|
PrintAndLogEx(WARNING, "Response is wrong length. (%d)", resp.length);
|
|
|
|
|
2019-08-01 23:33:00 +08:00
|
|
|
return PM3_ESOFT;
|
|
|
|
}
|
2019-08-01 21:39:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return resp.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CmdHfThinFilmSim(const char *Cmd) {
|
2019-08-02 06:00:37 +08:00
|
|
|
uint8_t cmdp = 0;
|
|
|
|
uint8_t data[512];
|
|
|
|
int datalen = 0;
|
|
|
|
|
|
|
|
bool addcrc = true;
|
|
|
|
bool errors = false;
|
|
|
|
|
|
|
|
while (param_getchar(Cmd, cmdp) != 0x00 && !errors) {
|
|
|
|
switch (tolower(param_getchar(Cmd, cmdp))) {
|
|
|
|
case 'h':
|
|
|
|
return usage_thinfilm_sim();
|
|
|
|
case 'd':
|
|
|
|
// Retrieve the data
|
|
|
|
param_gethex_ex(Cmd, cmdp + 1, data, &datalen);
|
|
|
|
datalen >>= 1;
|
|
|
|
cmdp += 2;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
addcrc = false;
|
|
|
|
cmdp++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
PrintAndLogEx(WARNING, "Unknown parameter '%c'", param_getchar(Cmd, cmdp));
|
|
|
|
errors = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Validations
|
|
|
|
if (errors || cmdp == 0 || datalen == 0 || datalen > 512) return usage_thinfilm_sim();
|
|
|
|
if (addcrc && datalen <= 510) {
|
|
|
|
uint8_t b1, b2;
|
|
|
|
compute_crc(CRC_14443_A, data, datalen, &b1, &b2);
|
|
|
|
data[datalen++] = b2;
|
|
|
|
data[datalen++] = b1;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearCommandBuffer();
|
2019-08-04 01:17:00 +08:00
|
|
|
SendCommandNG(CMD_HF_THINFILM_SIMULATE, (uint8_t *)&data, datalen);
|
2019-08-02 06:00:37 +08:00
|
|
|
PacketResponseNG resp;
|
|
|
|
PrintAndLogEx(SUCCESS, "press pm3-button to abort simulation");
|
|
|
|
|
2019-08-04 04:37:01 +08:00
|
|
|
int ret;
|
|
|
|
while (!(ret = kbd_enter_pressed())) {
|
|
|
|
if (WaitForResponseTimeout(CMD_HF_THINFILM_SIMULATE, &resp, 500) == 0) continue;
|
2019-08-02 06:00:37 +08:00
|
|
|
if (resp.status != PM3_SUCCESS) break;
|
|
|
|
}
|
2019-08-04 04:37:01 +08:00
|
|
|
if (ret) {
|
|
|
|
PrintAndLogEx(INFO, "Client side interrupted");
|
|
|
|
PrintAndLogEx(WARNING, "Simulation still running on Proxmark3 till next command or button press");
|
|
|
|
} else {
|
|
|
|
PrintAndLogEx(INFO, "Done");
|
|
|
|
}
|
2019-08-02 06:00:37 +08:00
|
|
|
return PM3_SUCCESS;
|
2019-08-01 21:39:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int CmdHfThinFilmList(const char *Cmd) {
|
|
|
|
(void)Cmd; // Cmd is not used so far
|
2019-08-02 02:15:46 +08:00
|
|
|
CmdTraceList("thinfilm");
|
2019-08-01 21:39:33 +08:00
|
|
|
return PM3_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static command_t CommandTable[] = {
|
|
|
|
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
2019-08-04 03:17:52 +08:00
|
|
|
{"info", CmdHfThinFilmInfo, IfPm3NfcBarcode, "Tag information"},
|
|
|
|
{"list", CmdHfThinFilmList, AlwaysAvailable, "List NFC Barcode / Thinfilm history - not correct"},
|
|
|
|
{"sim", CmdHfThinFilmSim, IfPm3NfcBarcode, "Fake Thinfilm tag"},
|
2019-08-01 21:39:33 +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 CmdHFThinfilm(const char *Cmd) {
|
|
|
|
clearCommandBuffer();
|
|
|
|
return CmdsParse(CommandTable, Cmd);
|
|
|
|
}
|