mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-03-30 19:05:47 +00:00
3511 lines
122 KiB
C
3511 lines
122 KiB
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
// High frequency ISO14443B commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "cmdhf14b.h"
|
|
#include <ctype.h>
|
|
#include "iso14b.h"
|
|
#include "fileutils.h"
|
|
#include "cmdparser.h" // command_t
|
|
#include "commonutil.h" // ARRAYLEN
|
|
#include "comms.h" // clearCommandBuffer
|
|
#include "emv/emvcore.h" // TLVPrintFromBuffer
|
|
#include "cmdtrace.h"
|
|
#include "cliparser.h"
|
|
#include "crc16.h"
|
|
#include "cmdhf14a.h"
|
|
#include "protocols.h" // definitions of ISO14B/7816 protocol
|
|
#include "iso7816/apduinfo.h" // GetAPDUCodeDescription
|
|
#include "nfc/ndef.h" // NDEFRecordsDecodeAndPrint
|
|
#include "aidsearch.h"
|
|
#include "fileutils.h" // saveFile
|
|
#include "iclass_cmd.h" // picopass defines
|
|
#include "cmdhf.h" // handle HF plot
|
|
#include "atrs.h" // atqbToEmulatedAtr
|
|
#include "pla.h" // ECP parsing
|
|
|
|
#define MAX_14B_TIMEOUT_MS (4949U)
|
|
|
|
// client side time out, waiting for device to ask tag.
|
|
#define TIMEOUT 1000
|
|
|
|
// client side time out, waiting for device to ask tag a APDU to answer
|
|
#define APDU_TIMEOUT 2000
|
|
|
|
// for static arrays
|
|
#define ST25TB_SR_BLOCK_SIZE 4
|
|
|
|
|
|
// SR memory sizes
|
|
#define SR_SIZE_512 1
|
|
#define SR_SIZE_4K 2
|
|
// ST235 memory sizes
|
|
#define ST25_SIZE_512 3
|
|
#define ST25_SIZE_2K 4
|
|
#define ST25_SIZE_4K 5
|
|
|
|
|
|
typedef struct {
|
|
const char *desc;
|
|
const char *apdu;
|
|
const uint8_t apdulen;
|
|
} transport_14b_apdu_t;
|
|
|
|
|
|
// iso14b apdu input frame length
|
|
static uint16_t apdu_frame_length = 0;
|
|
//static uint16_t ats_fsc[] = {16, 24, 32, 40, 48, 64, 96, 128, 256};
|
|
static bool apdu_in_framing_enable = true;
|
|
|
|
static int CmdHelp(const char *Cmd);
|
|
|
|
static int switch_off_field_14b(void) {
|
|
SetISODEPState(ISODEP_INACTIVE);
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = ISO14B_DISCONNECT,
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int clear_trace_14b(void) {
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = ISO14B_CLEARTRACE,
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static void hf14b_aid_search(bool verbose) {
|
|
|
|
json_t *root = AIDSearchInit(verbose);
|
|
if (root == NULL) {
|
|
switch_off_field_14b();
|
|
return;
|
|
}
|
|
|
|
PrintAndLogEx(INFO, "-------------------- " _CYAN_("AID Search") " --------------------");
|
|
|
|
bool found = false;
|
|
bool leave_signal_on = true;
|
|
bool activate_field = true;
|
|
for (size_t elmindx = 0; elmindx < json_array_size(root); elmindx++) {
|
|
|
|
if (kbd_enter_pressed()) {
|
|
break;
|
|
}
|
|
|
|
json_t *data = AIDSearchGetElm(root, elmindx);
|
|
uint8_t vaid[200] = {0};
|
|
int vaidlen = 0;
|
|
|
|
if ((AIDGetFromElm(data, vaid, sizeof(vaid), &vaidlen) == false) || (vaidlen == 0)) {
|
|
continue;
|
|
}
|
|
if (AIDSeenBefore(root, vaid, (size_t)vaidlen, elmindx)) {
|
|
continue;
|
|
}
|
|
|
|
|
|
// COMPUTE APDU
|
|
uint8_t apdu_data[PM3_CMD_DATA_SIZE] = {0};
|
|
int apdu_len = 0;
|
|
sAPDU_t apdu = (sAPDU_t) {0x00, 0xa4, 0x04, 0x00, vaidlen, vaid};
|
|
|
|
if (APDUEncodeS(&apdu, false, 0x00, apdu_data, &apdu_len)) {
|
|
PrintAndLogEx(ERR, "APDU encoding error");
|
|
return;
|
|
}
|
|
|
|
PrintAndLogEx(DEBUG, ">>>> %s", sprint_hex(apdu_data, apdu_len));
|
|
|
|
int resultlen = 0;
|
|
uint8_t result[1024] = {0};
|
|
int res = exchange_14b_apdu(apdu_data, apdu_len, activate_field, leave_signal_on, result, sizeof(result), &resultlen, -1);
|
|
activate_field = false;
|
|
if (res) {
|
|
continue;
|
|
}
|
|
|
|
uint16_t sw = get_sw(result, resultlen);
|
|
|
|
uint8_t dfname[200] = {0};
|
|
size_t dfnamelen = 0;
|
|
if (resultlen > 3) {
|
|
struct tlvdb *tlv = tlvdb_parse_multi(result, resultlen);
|
|
if (tlv) {
|
|
// 0x84 Dedicated File (DF) Name
|
|
const struct tlv *dfnametlv = tlvdb_get_tlv(tlvdb_find_full(tlv, 0x84));
|
|
if (dfnametlv) {
|
|
dfnamelen = dfnametlv->len;
|
|
memcpy(dfname, dfnametlv->value, dfnamelen);
|
|
}
|
|
tlvdb_free(tlv);
|
|
}
|
|
}
|
|
|
|
if (sw == ISO7816_OK || sw == ISO7816_INVALID_DF || sw == ISO7816_FILE_TERMINATED) {
|
|
if (sw == ISO7816_OK) {
|
|
if (verbose) {
|
|
PrintAndLogEx(SUCCESS, "Application ( " _GREEN_("ok") " )");
|
|
}
|
|
} else {
|
|
if (verbose) {
|
|
PrintAndLogEx(WARNING, "Application ( " _RED_("blocked") " )");
|
|
}
|
|
}
|
|
|
|
PrintAIDDescriptionEx(root, sprint_hex_inrow(vaid, vaidlen), result, (size_t)resultlen, verbose);
|
|
|
|
if (dfnamelen) {
|
|
if (dfnamelen == vaidlen) {
|
|
if (memcmp(dfname, vaid, vaidlen) == 0) {
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "(DF) Name found and equal to AID");
|
|
}
|
|
} else {
|
|
PrintAndLogEx(INFO, "(DF) Name not equal to AID: %s :", sprint_hex(dfname, dfnamelen));
|
|
PrintAIDDescriptionBuf(root, dfname, dfnamelen, verbose);
|
|
}
|
|
} else {
|
|
PrintAndLogEx(INFO, "(DF) Name not equal to AID: %s :", sprint_hex(dfname, dfnamelen));
|
|
PrintAIDDescriptionBuf(root, dfname, dfnamelen, verbose);
|
|
}
|
|
} else {
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "(DF) Name not found");
|
|
}
|
|
}
|
|
|
|
if (verbose) {
|
|
PrintAndLogEx(SUCCESS, "----------------------------------------------------");
|
|
}
|
|
found = true;
|
|
}
|
|
}
|
|
switch_off_field_14b();
|
|
if (verbose == false && found) {
|
|
PrintAndLogEx(INFO, "----------------------------------------------------");
|
|
}
|
|
}
|
|
|
|
static bool wait_14b_response(bool only_first, uint8_t *datalen, uint8_t *data) {
|
|
|
|
/* We have scenarios.
|
|
A - only select
|
|
B - only normal respose
|
|
C - both select and response
|
|
*/
|
|
|
|
PacketResponseNG resp;
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply (first)");
|
|
return false;
|
|
}
|
|
|
|
if (resp.status == PM3_ETEAROFF) {
|
|
PrintAndLogEx(INFO, "Writing tear off triggered");
|
|
return true;
|
|
}
|
|
|
|
if (resp.status != PM3_SUCCESS) {
|
|
PrintAndLogEx(DEBUG, "first response failed... %d", resp.status);
|
|
return false;
|
|
}
|
|
|
|
// treat first reponse as same.
|
|
if (only_first) {
|
|
|
|
if (datalen) {
|
|
*datalen = resp.length;
|
|
}
|
|
|
|
if (data) {
|
|
memcpy(data, resp.data.asBytes, resp.length);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// wait a second time.
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
return false;
|
|
}
|
|
|
|
if (resp.status != PM3_SUCCESS) {
|
|
PrintAndLogEx(DEBUG, "second response failed... %d", resp.status);
|
|
return false;
|
|
}
|
|
|
|
if (datalen) {
|
|
*datalen = resp.length;
|
|
}
|
|
if (data) {
|
|
memcpy(data, resp.data.asBytes, resp.length);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool wait_cmd_14b(bool verbose, bool is_select, uint32_t timeout) {
|
|
|
|
PacketResponseNG resp;
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, MAX(TIMEOUT, timeout)) == false) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
return false;
|
|
}
|
|
|
|
if (resp.status == PM3_ETEAROFF) {
|
|
PrintAndLogEx(INFO, "Writing tear off triggered");
|
|
return true;
|
|
}
|
|
|
|
if (is_select) {
|
|
if (resp.status == PM3_ECARDEXCHANGE) {
|
|
PrintAndLogEx(INFO, "no response from tag");
|
|
return false;
|
|
}
|
|
if (resp.status != PM3_SUCCESS) {
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "failed status value... %d", resp.status);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
uint16_t len = resp.length;
|
|
uint8_t *data = resp.data.asBytes;
|
|
|
|
// handle select responses OK
|
|
if (is_select && verbose) {
|
|
PrintAndLogEx(SUCCESS, "received " _YELLOW_("%u") " bytes", len);
|
|
PrintAndLogEx(SUCCESS, "%s", sprint_hex(data, len));
|
|
return true;
|
|
}
|
|
|
|
// handle raw bytes responses
|
|
if (verbose) {
|
|
if (len >= 3) {
|
|
bool crc = check_crc(CRC_14443_B, data, len);
|
|
|
|
PrintAndLogEx(SUCCESS, "received " _YELLOW_("%u") " bytes", len);
|
|
PrintAndLogEx(SUCCESS, "%s[ " _YELLOW_("%02X %02X") " ] ( %s )",
|
|
sprint_hex(data, len - 2),
|
|
data[len - 2],
|
|
data[len - 1],
|
|
(crc) ? _GREEN_("ok") : _RED_("fail")
|
|
);
|
|
} else if (len == 0) {
|
|
PrintAndLogEx(INFO, "no response from tag");
|
|
} else {
|
|
PrintAndLogEx(SUCCESS, "%s", sprint_hex(data, len));
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
static bool get_14b_UID(uint8_t *d, iso14b_type_t *found_type) {
|
|
|
|
// sanity checks
|
|
if (d == NULL || found_type == NULL) {
|
|
return false;
|
|
}
|
|
|
|
*found_type = ISO14B_NONE;
|
|
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_SR | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
PacketResponseNG resp;
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT)) {
|
|
|
|
if (resp.status == PM3_SUCCESS) {
|
|
memcpy(d, resp.data.asBytes, sizeof(iso14b_card_select_t));
|
|
|
|
iso14b_card_select_t *card = (iso14b_card_select_t *)d;
|
|
uint8_t empty[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
if (memcmp(card->uid, empty, card->uidlen) == 0) {
|
|
return false;
|
|
}
|
|
*found_type = ISO14B_SR;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// test 14b standard
|
|
packet.flags = (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_DISCONNECT);
|
|
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT)) {
|
|
|
|
if (resp.status == PM3_SUCCESS) {
|
|
memcpy(d, resp.data.asBytes, sizeof(iso14b_card_select_t));
|
|
*found_type = ISO14B_STANDARD;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// test CT
|
|
packet.flags = (ISO14B_CONNECT | ISO14B_SELECT_CTS | ISO14B_DISCONNECT);
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT)) {
|
|
|
|
if (resp.status == PM3_SUCCESS) {
|
|
memcpy(d, resp.data.asBytes, sizeof(iso14b_cts_card_select_t));
|
|
*found_type = ISO14B_CT;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
return false;
|
|
}
|
|
|
|
/* extract uid from filename
|
|
* filename must match '^hf-14b-[0-9A-F]{16}'
|
|
*/
|
|
uint8_t *get_uid_from_filename(const char *filename) {
|
|
|
|
static uint8_t uid[8];
|
|
memset(uid, 0, 8);
|
|
|
|
if (strlen(filename) < 23) {
|
|
PrintAndLogEx(ERR, "can't get uid from filename `" _YELLOW_("%s") "` expected format is hf-14b-<uid>...", filename);
|
|
return uid;
|
|
}
|
|
|
|
const char *found = strstr(filename, "hf-14b-");
|
|
if (found == NULL) {
|
|
PrintAndLogEx(ERR, "can't get uid from filename `" _YELLOW_("%s") "` expected format is hf-14b-<uid>...", filename);
|
|
return uid;
|
|
}
|
|
|
|
// extract uid part from filename
|
|
char uidinhex[17] = {0};
|
|
strncpy(uidinhex, found + 7, 16);
|
|
|
|
uidinhex[16] = '\0';
|
|
int len = hex_to_bytes(uidinhex, uid, 8);
|
|
if (len == 8) {
|
|
return SwapEndian64(uid, 8, 8);
|
|
} else {
|
|
PrintAndLogEx(ERR, "get_uid_from_filename failed: hex_to_bytes returned %d", len);
|
|
memset(uid, 0, 8);
|
|
}
|
|
return uid;
|
|
}
|
|
|
|
// print full atqb info
|
|
// bytes
|
|
// 0,1,2,3 = application data
|
|
// 4 = bit rate capacity
|
|
// 5 = max frame size / -4 info
|
|
// 6 = FWI / Coding options
|
|
static int print_atqb_resp(uint8_t *data, uint8_t cid) {
|
|
//PrintAndLogEx(SUCCESS, " UID: %s", sprint_hex(data+1,4));
|
|
PrintAndLogEx(SUCCESS, " App Data: %s", sprint_hex(data, 4));
|
|
PrintAndLogEx(SUCCESS, " Protocol: %s", sprint_hex(data + 4, 3));
|
|
uint8_t BitRate = data[4];
|
|
if (!BitRate) PrintAndLogEx(SUCCESS, " Bit Rate: 106 kbit/s only PICC <-> PCD");
|
|
if (BitRate & 0x10) PrintAndLogEx(SUCCESS, " Bit Rate: 212 kbit/s PICC -> PCD supported");
|
|
if (BitRate & 0x20) PrintAndLogEx(SUCCESS, " Bit Rate: 424 kbit/s PICC -> PCD supported");
|
|
if (BitRate & 0x40) PrintAndLogEx(SUCCESS, " Bit Rate: 847 kbit/s PICC -> PCD supported");
|
|
if (BitRate & 0x01) PrintAndLogEx(SUCCESS, " Bit Rate: 212 kbit/s PICC <- PCD supported");
|
|
if (BitRate & 0x02) PrintAndLogEx(SUCCESS, " Bit Rate: 424 kbit/s PICC <- PCD supported");
|
|
if (BitRate & 0x04) PrintAndLogEx(SUCCESS, " Bit Rate: 847 kbit/s PICC <- PCD supported");
|
|
if (BitRate & 0x80) PrintAndLogEx(SUCCESS, " Same bit rate <-> required");
|
|
|
|
uint16_t maxFrame = data[5] >> 4;
|
|
if (maxFrame < 5) maxFrame = 8 * maxFrame + 16;
|
|
else if (maxFrame == 5) maxFrame = 64;
|
|
else if (maxFrame == 6) maxFrame = 96;
|
|
else if (maxFrame == 7) maxFrame = 128;
|
|
else if (maxFrame == 8) maxFrame = 256;
|
|
else maxFrame = 257;
|
|
|
|
PrintAndLogEx(SUCCESS, "Max Frame Size: %u%s bytes", maxFrame, (maxFrame == 257) ? "+ RFU" : "");
|
|
|
|
uint8_t protocolT = data[5] & 0xF;
|
|
PrintAndLogEx(SUCCESS, " Protocol Type: Protocol is %scompliant with ISO/IEC 14443-4", (protocolT) ? "" : "not ");
|
|
|
|
uint8_t fwt = data[6] >> 4;
|
|
if (fwt < 15) {
|
|
uint32_t etus = (32 << fwt);
|
|
uint32_t fwt_time = (302 << fwt);
|
|
PrintAndLogEx(SUCCESS, "Frame Wait Integer: %u - %u ETUs | %u us", fwt, etus, fwt_time);
|
|
} else {
|
|
PrintAndLogEx(SUCCESS, "Frame Wait Integer: %u - RFU", fwt);
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, " App Data Code: Application is %s", (data[6] & 4) ? "Standard" : "Proprietary");
|
|
PrintAndLogEx(SUCCESS, " Frame Options: NAD is %ssupported", (data[6] & 2) ? "" : "not ");
|
|
PrintAndLogEx(SUCCESS, " Frame Options: CID is %ssupported", (data[6] & 1) ? "" : "not ");
|
|
PrintAndLogEx(SUCCESS, "Tag :");
|
|
PrintAndLogEx(SUCCESS, " Max Buf Length: %u (MBLI) %s", cid >> 4, (cid & 0xF0) ? "" : "chained frames not supported");
|
|
PrintAndLogEx(SUCCESS, " CID : %u", cid & 0x0f);
|
|
PrintAndLogEx(NORMAL, "");
|
|
|
|
if (memcmp(data, "\x54\x43\x4F\x53", 4) == 0) {
|
|
PrintAndLogEx(INFO, "--- " _CYAN_("Fingerprint") " -------------------------------");
|
|
|
|
int outlen = 0;
|
|
uint8_t out[PM3_CMD_DATA_SIZE] = {0};
|
|
uint8_t tcos_version[] = {0x90, 0xB2, 0x90, 0x00, 0x00};
|
|
if (exchange_14b_apdu(tcos_version, sizeof(tcos_version), true, false, out, PM3_CMD_DATA_SIZE, &outlen, -1) == PM3_SUCCESS) {
|
|
if (outlen > 2) {
|
|
PrintAndLogEx(SUCCESS, "Tiananxin TCOS CPU card... " _YELLOW_("%s"), sprint_ascii(out, outlen - 2));
|
|
} else {
|
|
PrintAndLogEx(SUCCESS, "Tiananxin TCOS CPU card... " _RED_("n/a"));
|
|
}
|
|
PrintAndLogEx(SUCCESS, "Magic capabilities........ most likely");
|
|
}
|
|
|
|
} else {
|
|
PrintAndLogEx(INFO, "--- " _CYAN_("ATR fingerprint") " ---------------------------");
|
|
uint8_t atr[256] = {0};
|
|
int atrLen = 0;
|
|
atqbToEmulatedAtr(data, cid, atr, &atrLen);
|
|
char *copy = str_dup(getAtrInfo(sprint_hex_inrow(atr, atrLen)));
|
|
char *token = strtok(copy, "\n");
|
|
while (token != NULL) {
|
|
PrintAndLogEx(SUCCESS, " %s", token);
|
|
token = strtok(NULL, "\n");
|
|
}
|
|
free(copy);
|
|
}
|
|
PrintAndLogEx(NORMAL, "");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
// get SRx chip model (from UID) // from ST Microelectronics
|
|
static const char *get_st_chip_model(uint8_t id) {
|
|
switch (id) {
|
|
case 0x0:
|
|
return "SRIX4K (Special)";
|
|
case 0x2:
|
|
return "SR176";
|
|
case 0x3:
|
|
return "SRIX4K";
|
|
case 0x4:
|
|
return "SRIX512";
|
|
case 0x6:
|
|
return "SRI512";
|
|
case 0x7:
|
|
return "SRI4K";
|
|
case 0xC:
|
|
return "SRT512";
|
|
default :
|
|
return "";
|
|
}
|
|
}
|
|
|
|
/*
|
|
static const char *get_st25_chip_model(uint8_t id) {
|
|
switch (id) {
|
|
case 0x1B:
|
|
return "ST25TB512-AC";
|
|
case 0x33:
|
|
return "ST25TB512-AT";
|
|
case 0x3F:
|
|
return "ST25TB02K";
|
|
case 0x1F:
|
|
return "ST25TB04K";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
*/
|
|
|
|
#define ST_LOCK_INFO_EMPTY " "
|
|
static const char *get_st_lock_info(uint8_t model, const uint8_t *lockbytes, uint8_t blk) {
|
|
if (blk > 15) {
|
|
return ST_LOCK_INFO_EMPTY;
|
|
}
|
|
|
|
uint8_t mask = 0;
|
|
switch (model) {
|
|
case 0x0: // SRIX4K special
|
|
case 0x3: // SRIx4K
|
|
case 0x7: { // SRI4K
|
|
//only need data[3]
|
|
switch (blk) {
|
|
case 7:
|
|
case 8:
|
|
mask = 0x01;
|
|
break;
|
|
case 9:
|
|
mask = 0x02;
|
|
break;
|
|
case 10:
|
|
mask = 0x04;
|
|
break;
|
|
case 11:
|
|
mask = 0x08;
|
|
break;
|
|
case 12:
|
|
mask = 0x10;
|
|
break;
|
|
case 13:
|
|
mask = 0x20;
|
|
break;
|
|
case 14:
|
|
mask = 0x40;
|
|
break;
|
|
case 15:
|
|
mask = 0x80;
|
|
break;
|
|
default:
|
|
return ST_LOCK_INFO_EMPTY;
|
|
}
|
|
if ((lockbytes[3] & mask) == 0) {
|
|
return _RED_("1");
|
|
}
|
|
return ST_LOCK_INFO_EMPTY;
|
|
}
|
|
case 0x4: // SRIX512
|
|
case 0x6: // SRI512
|
|
case 0xC: { // SRT512
|
|
//need data[2] and data[3]
|
|
uint8_t b = 2;
|
|
switch (blk) {
|
|
case 0:
|
|
mask = 0x01;
|
|
break;
|
|
case 1:
|
|
mask = 0x02;
|
|
break;
|
|
case 2:
|
|
mask = 0x04;
|
|
break;
|
|
case 3:
|
|
mask = 0x08;
|
|
break;
|
|
case 4:
|
|
mask = 0x10;
|
|
break;
|
|
case 5:
|
|
mask = 0x20;
|
|
break;
|
|
case 6:
|
|
mask = 0x40;
|
|
break;
|
|
case 7:
|
|
mask = 0x80;
|
|
break;
|
|
case 8:
|
|
mask = 0x01;
|
|
b = 3;
|
|
break;
|
|
case 9:
|
|
mask = 0x02;
|
|
b = 3;
|
|
break;
|
|
case 10:
|
|
mask = 0x04;
|
|
b = 3;
|
|
break;
|
|
case 11:
|
|
mask = 0x08;
|
|
b = 3;
|
|
break;
|
|
case 12:
|
|
mask = 0x10;
|
|
b = 3;
|
|
break;
|
|
case 13:
|
|
mask = 0x20;
|
|
b = 3;
|
|
break;
|
|
case 14:
|
|
mask = 0x40;
|
|
b = 3;
|
|
break;
|
|
case 15:
|
|
mask = 0x80;
|
|
b = 3;
|
|
break;
|
|
}
|
|
if ((lockbytes[b] & mask) == 0) {
|
|
return _RED_("1");
|
|
}
|
|
return ST_LOCK_INFO_EMPTY;
|
|
}
|
|
case 0x2: { // SR176
|
|
//need data[2]
|
|
switch (blk) {
|
|
case 0:
|
|
case 1:
|
|
mask = 0x1;
|
|
break;
|
|
case 2:
|
|
case 3:
|
|
mask = 0x2;
|
|
break;
|
|
case 4:
|
|
case 5:
|
|
mask = 0x4;
|
|
break;
|
|
case 6:
|
|
case 7:
|
|
mask = 0x8;
|
|
break;
|
|
case 8:
|
|
case 9:
|
|
mask = 0x10;
|
|
break;
|
|
case 10:
|
|
case 11:
|
|
mask = 0x20;
|
|
break;
|
|
case 12:
|
|
case 13:
|
|
mask = 0x40;
|
|
break;
|
|
case 14:
|
|
case 15:
|
|
mask = 0x80;
|
|
break;
|
|
}
|
|
// iceman: this is opposite! need sample to test with.
|
|
if ((lockbytes[2] & mask)) {
|
|
return _RED_("1");
|
|
}
|
|
return ST_LOCK_INFO_EMPTY;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return ST_LOCK_INFO_EMPTY;
|
|
}
|
|
|
|
static uint8_t get_st_chipid(const uint8_t *uid) {
|
|
return uid[5] >> 2;
|
|
}
|
|
|
|
/*
|
|
static uint8_t get_st25_chipid(const uint8_t *uid) {
|
|
return uid[5];
|
|
}
|
|
*/
|
|
|
|
static uint8_t get_st_cardsize(const uint8_t *uid) {
|
|
uint8_t chipid = get_st_chipid(uid);
|
|
switch (chipid) {
|
|
case 0x0:
|
|
case 0x3:
|
|
case 0x7:
|
|
return SR_SIZE_4K;
|
|
case 0x4:
|
|
case 0x6:
|
|
case 0xC:
|
|
return SR_SIZE_512;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
|
|
static uint8_t get_st25_cardsize(const uint8_t *uid) {
|
|
uint8_t chipid = get_st25_chipid(uid);
|
|
switch (chipid) {
|
|
case 0x1B:
|
|
case 0x33:
|
|
return ST25_SIZE_512;
|
|
case 0x1F:
|
|
return ST25_SIZE_4K;
|
|
case 0x3F:
|
|
return ST25_SIZE_2K;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
*/
|
|
|
|
// print UID info from SRx chips (ST Microelectronics)
|
|
static void print_st_general_info(uint8_t *data, uint8_t len) {
|
|
//uid = first 8 bytes in data
|
|
uint8_t mfgid = data[6];
|
|
uint8_t chipid = get_st_chipid(data);
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(SUCCESS, " UID: " _GREEN_("%s"), sprint_hex(SwapEndian64(data, 8, 8), len));
|
|
PrintAndLogEx(SUCCESS, " MFG: %02X, " _YELLOW_("%s"), mfgid, getTagInfo(mfgid));
|
|
PrintAndLogEx(SUCCESS, "Chip: %02X, " _YELLOW_("%s"), chipid, get_st_chip_model(chipid));
|
|
}
|
|
|
|
// print UID info from ASK CT chips
|
|
static void print_ct_general_info(void *vcard) {
|
|
iso14b_cts_card_select_t card;
|
|
memcpy(&card, (iso14b_cts_card_select_t *)vcard, sizeof(iso14b_cts_card_select_t));
|
|
|
|
uint32_t uid32 = MemLeToUint4byte(card.uid);
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(SUCCESS, "ASK C-Ticket");
|
|
PrintAndLogEx(SUCCESS, " UID: " _GREEN_("%s") " ( " _YELLOW_("%010u") " )", sprint_hex(card.uid, sizeof(card.uid)), uid32);
|
|
PrintAndLogEx(SUCCESS, " Product Code: %02X", card.pc);
|
|
PrintAndLogEx(SUCCESS, " Facility Code: %02X", card.fc);
|
|
PrintAndLogEx(NORMAL, "");
|
|
}
|
|
|
|
static void print_hdr(void) {
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(INFO, " block# | data |lck| ascii");
|
|
PrintAndLogEx(INFO, "---------+-------------+---+------");
|
|
}
|
|
|
|
static void print_footer(void) {
|
|
PrintAndLogEx(INFO, "---------+-------------+---+------");
|
|
PrintAndLogEx(NORMAL, "");
|
|
}
|
|
|
|
/*
|
|
static void print_ct_blocks(uint8_t *data, size_t len) {
|
|
|
|
size_t blocks = len / ST25TB_SR_BLOCK_SIZE;
|
|
|
|
print_hdr();
|
|
|
|
for (int i = 0; i <= blocks; i++) {
|
|
PrintAndLogEx(INFO,
|
|
"%3d/0x%02X | %s | %s | %s",
|
|
i,
|
|
i,
|
|
sprint_hex(data + (i * 4), 4),
|
|
" ",
|
|
sprint_ascii(data + (i * 4), 4)
|
|
);
|
|
}
|
|
print_footer();
|
|
}
|
|
*/
|
|
|
|
static void print_sr_blocks(uint8_t *data, size_t len, const uint8_t *uid, bool dense_output) {
|
|
|
|
size_t blocks = (len / ST25TB_SR_BLOCK_SIZE) - 1 ;
|
|
uint8_t *systemblock = data + blocks * ST25TB_SR_BLOCK_SIZE ;
|
|
uint8_t chipid = get_st_chipid(uid);
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(INFO, "-------- " _CYAN_("%s tag memory") " ---------", get_st_chip_model(chipid));
|
|
PrintAndLogEx(DEBUG, "systemblock... " _YELLOW_("%s"), sprint_hex(systemblock, ST25TB_SR_BLOCK_SIZE));
|
|
PrintAndLogEx(DEBUG, " otp lock... " _YELLOW_("%02x %02x"), *systemblock, *(systemblock + 1));
|
|
|
|
print_hdr();
|
|
|
|
bool in_repeated_block = false;
|
|
|
|
|
|
for (int i = 0; i < blocks; i++) {
|
|
|
|
// suppress repeating blocks, truncate as such that the first and last block with the same data is shown
|
|
// but the blocks in between are replaced with a single line of "......" if dense_output is enabled
|
|
uint8_t *blk = data + (i * ST25TB_SR_BLOCK_SIZE);
|
|
if (dense_output &&
|
|
(i > 3) &&
|
|
(i < (blocks - 1)) &&
|
|
(in_repeated_block == false) &&
|
|
(memcmp(blk, blk - ST25TB_SR_BLOCK_SIZE, ST25TB_SR_BLOCK_SIZE) == 0) &&
|
|
(memcmp(blk, blk + ST25TB_SR_BLOCK_SIZE, ST25TB_SR_BLOCK_SIZE) == 0) &&
|
|
(memcmp(blk, blk + (ST25TB_SR_BLOCK_SIZE * 2), ST25TB_SR_BLOCK_SIZE) == 0)
|
|
) {
|
|
// we're in a user block that isn't the first user block nor last two user blocks,
|
|
// and the current block data is the same as the previous and next two block
|
|
in_repeated_block = true;
|
|
PrintAndLogEx(INFO, " ......");
|
|
} else if (in_repeated_block &&
|
|
(memcmp(blk, blk + ST25TB_SR_BLOCK_SIZE, ST25TB_SR_BLOCK_SIZE) || i == blocks)
|
|
) {
|
|
// in a repeating block, but the next block doesn't match anymore, or we're at the end block
|
|
in_repeated_block = false;
|
|
}
|
|
|
|
if (in_repeated_block == false) {
|
|
PrintAndLogEx(INFO,
|
|
"%3d/0x%02X | %s| %s | %s",
|
|
i,
|
|
i,
|
|
sprint_hex(data + (i * ST25TB_SR_BLOCK_SIZE), ST25TB_SR_BLOCK_SIZE),
|
|
get_st_lock_info(chipid, systemblock, i),
|
|
sprint_ascii(data + (i * ST25TB_SR_BLOCK_SIZE), ST25TB_SR_BLOCK_SIZE)
|
|
);
|
|
}
|
|
}
|
|
|
|
PrintAndLogEx(INFO,
|
|
"%3d/0x%02X | %s| %s | %s",
|
|
0xFF,
|
|
0xFF,
|
|
sprint_hex(systemblock, ST25TB_SR_BLOCK_SIZE),
|
|
get_st_lock_info(chipid, systemblock, 0xFF),
|
|
sprint_ascii(systemblock, ST25TB_SR_BLOCK_SIZE)
|
|
);
|
|
|
|
print_footer();
|
|
}
|
|
|
|
// iceman, calypso?
|
|
// 05 00 00 = find one tag in field
|
|
// 1d xx xx xx xx 00 08 01 00 = attrib xx=UID (resp 10 [f9 e0])
|
|
// 0200a40400 (resp 02 67 00 [29 5b])
|
|
// 0200a4040c07a0000002480300 (resp 02 67 00 [29 5b])
|
|
// 0200a4040c07a0000002480200 (resp 02 67 00 [29 5b])
|
|
// 0200a4040006a0000000010100 (resp 02 6a 82 [4b 4c])
|
|
// 0200a4040c09d27600002545500200 (resp 02 67 00 [29 5b])
|
|
// 0200a404000cd2760001354b414e4d30310000 (resp 02 6a 82 [4b 4c])
|
|
// 0200a404000ca000000063504b43532d313500 (resp 02 6a 82 [4b 4c])
|
|
// 0200a4040010a000000018300301000000000000000000 (resp 02 6a 82 [4b 4c])
|
|
|
|
static int hf14b_setconfig(hf14b_config_t *config, bool verbose) {
|
|
if (!g_session.pm3_present) return PM3_ENOTTY;
|
|
|
|
clearCommandBuffer();
|
|
if (config != NULL) {
|
|
SendCommandNG(CMD_HF_ISO14443B_SET_CONFIG, (uint8_t *)config, sizeof(hf14b_config_t));
|
|
if (verbose) {
|
|
SendCommandNG(CMD_HF_ISO14443B_PRINT_CONFIG, NULL, 0);
|
|
}
|
|
} else {
|
|
SendCommandNG(CMD_HF_ISO14443B_PRINT_CONFIG, NULL, 0);
|
|
}
|
|
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHf14BConfig(const char *Cmd) {
|
|
if (!g_session.pm3_present) return PM3_ENOTTY;
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b config",
|
|
"Configure 14b settings (use with caution)\n",
|
|
"hf 14b config -> Print current configuration\n"
|
|
"hf 14b config --std -> Reset default configuration\n"
|
|
"hf 14b config --pla <hex> -> Set polling loop annotation (max 22 bytes)\n"
|
|
"hf 14b config --pla off -> Disable polling loop annotation\n"
|
|
"hf 14b config --pla ecp.access -> Set ECP Access (default)\n"
|
|
"hf 14b config --pla ecp.transit.emv -> Set ECP Transit for EMV\n");
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str0(NULL, "pla", "<hex|off>", "Configure polling loop annotation"),
|
|
arg_lit0(NULL, "std", "Reset default configuration"),
|
|
arg_lit0("v", "verbose", "verbose output"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
bool defaults = arg_get_lit(ctx, 2);
|
|
bool verbose = arg_get_lit(ctx, 3);
|
|
|
|
int vlen = 0;
|
|
char value[64];
|
|
|
|
// Handle polling loop annotation parameter
|
|
iso14b_polling_frame_t pla = {
|
|
// 0 signals that PLA has to be disabled, -1 signals that no change has to be made
|
|
.frame_length = defaults ? 0 : -1,
|
|
.last_byte_bits = 8,
|
|
.extra_delay = 30
|
|
};
|
|
|
|
// Get main --pla value
|
|
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)value, sizeof(value), &vlen);
|
|
str_lower((char *)value);
|
|
|
|
if (vlen > 0) {
|
|
if (strncmp((char *)value, "std", 3) == 0) pla.frame_length = 0;
|
|
else if (strncmp((char *)value, "skip", 4) == 0) pla.frame_length = 0;
|
|
else if (strncmp((char *)value, "disable", 3) == 0) pla.frame_length = 0;
|
|
else if (strncmp((char *)value, "off", 3) == 0) pla.frame_length = 0;
|
|
else if (strncmp((char *)value, "ecp", 3) == 0) {
|
|
// Parse ECP subcommand
|
|
int length = pla_parse_ecp_subcommand((char *)value, pla.frame, sizeof(pla.frame));
|
|
if (length < 0) {
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
pla.frame_length = length;
|
|
|
|
// Add CRC
|
|
uint8_t first, second;
|
|
compute_crc(CRC_14443_B, pla.frame, pla.frame_length, &first, &second);
|
|
pla.frame[pla.frame_length++] = first;
|
|
pla.frame[pla.frame_length++] = second;
|
|
PrintAndLogEx(INFO, "Set polling loop annotation to ECP: %s", sprint_hex(pla.frame, pla.frame_length));
|
|
} else {
|
|
// Convert hex string to bytes
|
|
int length = 0;
|
|
if (param_gethex_to_eol((char *)value, 0, pla.frame, sizeof(pla.frame), &length) != 0) {
|
|
PrintAndLogEx(ERR, "Error parsing polling loop annotation bytes");
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
pla.frame_length = length;
|
|
|
|
// Validate length before adding CRC
|
|
if (pla.frame_length < 1 || pla.frame_length > 22) {
|
|
PrintAndLogEx(ERR, "Polling loop annotation length invalid: min %d; max %d", 1, 22);
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
uint8_t first, second;
|
|
compute_crc(CRC_14443_B, pla.frame, pla.frame_length, &first, &second);
|
|
pla.frame[pla.frame_length++] = first;
|
|
pla.frame[pla.frame_length++] = second;
|
|
PrintAndLogEx(INFO, "Set polling loop annotation to: %s", sprint_hex(pla.frame, pla.frame_length));
|
|
}
|
|
}
|
|
|
|
CLIParserFree(ctx);
|
|
|
|
// Handle empty command
|
|
if (strlen(Cmd) == 0) {
|
|
return hf14b_setconfig(NULL, verbose);
|
|
}
|
|
|
|
// Initialize config with all parameters
|
|
hf14b_config_t config = {
|
|
.polling_loop_annotation = pla
|
|
};
|
|
|
|
return hf14b_setconfig(&config, verbose);
|
|
}
|
|
|
|
static int CmdHF14BList(const char *Cmd) {
|
|
return CmdTraceListAlias(Cmd, "hf 14b", "14b -c");
|
|
}
|
|
|
|
static int CmdHF14BSim(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b sim",
|
|
"Simulate a ISO/IEC 14443 type B tag with 4 byte UID / PUPI",
|
|
"hf 14b sim -u 11AA33BB"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str1("u", "uid", "hex", "4byte UID/PUPI"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
uint8_t pupi[4];
|
|
int n = 0;
|
|
int res = CLIParamHexToBuf(arg_get_str(ctx, 1), pupi, sizeof(pupi), &n);
|
|
CLIParserFree(ctx);
|
|
|
|
if (res) {
|
|
PrintAndLogEx(FAILED, "failed to read pupi");
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
PrintAndLogEx(INFO, "Simulate with PUPI : " _GREEN_("%s"), sprint_hex_inrow(pupi, sizeof(pupi)));
|
|
PrintAndLogEx(INFO, "Press " _GREEN_("pm3 button") " to abort simulation");
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_SIMULATE, pupi, sizeof(pupi));
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BSniff(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b sniff",
|
|
"Sniff the communication between reader and tag\n"
|
|
"Use `hf 14b list` to view collected data.",
|
|
"hf 14b sniff"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
CLIParserFree(ctx);
|
|
|
|
PrintAndLogEx(INFO, "Press " _GREEN_("pm3 button") " to abort sniffing");
|
|
|
|
PacketResponseNG resp;
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_SNIFF, NULL, 0);
|
|
WaitForResponse(CMD_HF_ISO14443B_SNIFF, &resp);
|
|
PrintAndLogEx(HINT, "Hint: Try `" _YELLOW_("hf 14b list") "` to view captured tracelog");
|
|
PrintAndLogEx(HINT, "Hint: Try `" _YELLOW_("trace save -h") "` to save tracelog for later analysing");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BRaw(const char *Cmd) {
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b raw",
|
|
"Sends raw bytes to card. Activates field by default",
|
|
"hf 14b raw -cks --data 0200a40400 -> standard select, apdu 0200a4000 (7816)\n"
|
|
"hf 14b raw -ck --sr --data 0200a40400 -> SRx select\n"
|
|
"hf 14b raw -ck --cts --data 0200a40400 -> C-ticket select\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_lit0("a", NULL, "active signal field ON without select"),
|
|
arg_lit0("c", "crc", "calculate and append CRC"),
|
|
arg_lit0("k", "keep", "leave the signal field ON after receive response"),
|
|
|
|
arg_str0("d", "data", "<hex>", "data, bytes to send"),
|
|
arg_lit0("r", NULL, "do not read response from card"),
|
|
arg_int0("t", "timeout", "<dec>", "timeout in ms"),
|
|
|
|
arg_lit0("s", "std", "use ISO14B select"),
|
|
arg_lit0(NULL, "sr", "use SRx ST select"),
|
|
arg_lit0(NULL, "cts", "use ASK C-ticket select"),
|
|
arg_lit0(NULL, "xrx", "use Fuji/Xerox select"),
|
|
arg_lit0(NULL, "pico", "use Picopass select"),
|
|
|
|
arg_lit0("v", "verbose", "verbose output"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
bool activate_field = arg_get_lit(ctx, 1);
|
|
bool add_crc = arg_get_lit(ctx, 2);
|
|
bool keep_field_on = arg_get_lit(ctx, 3);
|
|
|
|
uint8_t data[PM3_CMD_DATA_SIZE] = {0x00};
|
|
int datalen = 0;
|
|
CLIParamHexToBuf(arg_get_str(ctx, 4), data, sizeof(data), &datalen);
|
|
|
|
bool read_reply = (arg_get_lit(ctx, 5) == false);
|
|
int user_timeout = arg_get_int_def(ctx, 6, -1);
|
|
bool select_std = arg_get_lit(ctx, 7);
|
|
bool select_sr = arg_get_lit(ctx, 8);
|
|
bool select_cts = arg_get_lit(ctx, 9);
|
|
bool select_xrx = arg_get_lit(ctx, 10);
|
|
bool select_pico = arg_get_lit(ctx, 11);
|
|
bool verbose = arg_get_lit(ctx, 12);
|
|
CLIParserFree(ctx);
|
|
|
|
// FLAGS for device side
|
|
uint32_t flags = 0;
|
|
|
|
if (activate_field) {
|
|
flags |= ISO14B_CONNECT;
|
|
}
|
|
|
|
if (add_crc) {
|
|
flags |= ISO14B_APPEND_CRC;
|
|
}
|
|
|
|
if (select_std) {
|
|
flags |= (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_CLEARTRACE);
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "using ISO14443-B select");
|
|
}
|
|
} else if (select_sr) {
|
|
flags |= (ISO14B_CONNECT | ISO14B_SELECT_SR | ISO14B_CLEARTRACE);
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "using ST/SRx select");
|
|
}
|
|
} else if (select_cts) {
|
|
flags |= (ISO14B_CONNECT | ISO14B_SELECT_CTS | ISO14B_CLEARTRACE);
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "using ASK/C-ticket select");
|
|
}
|
|
} else if (select_xrx) {
|
|
flags |= (ISO14B_CONNECT | ISO14B_SELECT_XRX | ISO14B_CLEARTRACE);
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "using Fuji/Xerox select");
|
|
}
|
|
} else if (select_pico) {
|
|
flags |= (ISO14B_CONNECT | ISO14B_SELECT_PICOPASS | ISO14B_CLEARTRACE);
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "using Picopass select");
|
|
}
|
|
}
|
|
|
|
uint32_t time_wait = 0;
|
|
if (user_timeout > 0) {
|
|
|
|
flags |= ISO14B_SET_TIMEOUT;
|
|
|
|
if (user_timeout > MAX_14B_TIMEOUT_MS) {
|
|
user_timeout = MAX_14B_TIMEOUT_MS;
|
|
PrintAndLogEx(INFO, "set timeout to 4.9 seconds. The max we can wait for response");
|
|
}
|
|
|
|
// timeout in ETUs (time to transfer 1 bit, approx. 9.4 us)
|
|
time_wait = (uint32_t)((13560 / 128) * user_timeout);
|
|
if (verbose)
|
|
PrintAndLogEx(INFO, " new raw timeout : %u ETU ( %u ms )", time_wait, user_timeout);
|
|
}
|
|
|
|
if (keep_field_on == false) {
|
|
flags |= ISO14B_DISCONNECT;
|
|
}
|
|
|
|
if (datalen > 0) {
|
|
flags |= ISO14B_RAW;
|
|
}
|
|
|
|
// Max buffer is PM3_CMD_DATA_SIZE
|
|
datalen = (datalen > PM3_CMD_DATA_SIZE) ? PM3_CMD_DATA_SIZE : datalen;
|
|
|
|
iso14b_raw_cmd_t *packet = (iso14b_raw_cmd_t *)calloc(1, sizeof(iso14b_raw_cmd_t) + datalen);
|
|
if (packet == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
return PM3_EMALLOC;
|
|
}
|
|
|
|
packet->flags = flags;
|
|
packet->timeout = time_wait;
|
|
packet->rawlen = datalen;
|
|
memcpy(packet->raw, data, datalen);
|
|
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t) + packet->rawlen);
|
|
free(packet);
|
|
|
|
if (read_reply == false) {
|
|
clearCommandBuffer();
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
bool success = true;
|
|
|
|
// Select, device will send back iso14b_card_select_t, don't print it.
|
|
if (select_std) {
|
|
success = wait_cmd_14b(verbose, true, user_timeout);
|
|
if (verbose && success) {
|
|
PrintAndLogEx(SUCCESS, "Got response for standard select");
|
|
}
|
|
}
|
|
|
|
if (select_sr) {
|
|
success = wait_cmd_14b(verbose, true, user_timeout);
|
|
if (verbose && success) {
|
|
PrintAndLogEx(SUCCESS, "Got response for ST/SRx select");
|
|
}
|
|
}
|
|
|
|
if (select_cts) {
|
|
success = wait_cmd_14b(verbose, true, user_timeout);
|
|
if (verbose && success) {
|
|
PrintAndLogEx(SUCCESS, "Got response for ASK/C-ticket select");
|
|
}
|
|
}
|
|
|
|
if (select_xrx) {
|
|
success = wait_cmd_14b(verbose, true, user_timeout);
|
|
if (verbose && success) {
|
|
PrintAndLogEx(SUCCESS, "Got response for Fuji/Xerox select");
|
|
}
|
|
}
|
|
|
|
if (select_pico) {
|
|
success = wait_cmd_14b(verbose, true, user_timeout);
|
|
if (verbose && success) {
|
|
PrintAndLogEx(SUCCESS, "Got response for Picopass select");
|
|
}
|
|
}
|
|
|
|
// get back response from the raw bytes you sent.
|
|
if (success && datalen > 0) {
|
|
wait_cmd_14b(true, false, user_timeout);
|
|
}
|
|
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
// 14b get and print Full Info (as much as we know)
|
|
static bool HF14B_Std_Info(bool verbose, bool do_aid_search) {
|
|
// 14b get and print UID only (general info)
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
clearCommandBuffer();
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
if (verbose) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
}
|
|
switch_off_field_14b();
|
|
return false;
|
|
}
|
|
|
|
switch (resp.status) {
|
|
case PM3_SUCCESS: {
|
|
|
|
iso14b_card_select_t card;
|
|
memcpy(&card, (iso14b_card_select_t *)resp.data.asBytes, sizeof(iso14b_card_select_t));
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(INFO, "--- " _CYAN_("Tag Information") " ---------------------------");
|
|
PrintAndLogEx(SUCCESS, " UID : " _GREEN_("%s"), sprint_hex(card.uid, card.uidlen));
|
|
PrintAndLogEx(SUCCESS, " ATQB : %s", sprint_hex(card.atqb, sizeof(card.atqb)));
|
|
PrintAndLogEx(SUCCESS, " CHIPID : %02X", card.chipid);
|
|
print_atqb_resp(card.atqb, card.cid);
|
|
|
|
if (do_aid_search) {
|
|
hf14b_aid_search(verbose);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
case PM3_ELENGTH:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 STD ATTRIB fail");
|
|
break;
|
|
case PM3_ECRC:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 STD CRC fail");
|
|
break;
|
|
default:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-b STD select failed");
|
|
break;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// SRx get and print full info (needs more info...)
|
|
static bool HF14B_ST_Info(bool verbose, bool do_aid_search) {
|
|
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_SR | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
clearCommandBuffer();
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
if (verbose) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (resp.status != PM3_SUCCESS) {
|
|
return false;
|
|
}
|
|
|
|
iso14b_card_select_t card;
|
|
memcpy(&card, (iso14b_card_select_t *)resp.data.asBytes, sizeof(iso14b_card_select_t));
|
|
|
|
uint8_t empty[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
if ((card.uidlen != 8) || (memcmp(card.uid, empty, card.uidlen) == 0)) {
|
|
return false;
|
|
}
|
|
|
|
print_st_general_info(card.uid, card.uidlen);
|
|
|
|
if (do_aid_search) {
|
|
hf14b_aid_search(verbose);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// menu command to get and print all info known about any known 14b tag
|
|
static int CmdHF14Binfo(const char *Cmd) {
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b info",
|
|
"Tag information for ISO/IEC 14443 type B based tags",
|
|
"hf 14b info\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_lit0("s", "aidsearch", "checks if AIDs from aidlist.json is present on the card and prints information about found AIDs"),
|
|
arg_lit0("v", "verbose", "verbose output"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
bool do_aid_search = arg_get_lit(ctx, 1);
|
|
bool verbose = arg_get_lit(ctx, 2);
|
|
CLIParserFree(ctx);
|
|
return infoHF14B(verbose, do_aid_search);
|
|
}
|
|
|
|
// #define ISO14443B_READ_BLK 0x08
|
|
// #define ISO14443B_WRITE_BLK 0x09
|
|
|
|
static int read_sr_block(uint8_t blockno, uint8_t *out, uint16_t out_len) {
|
|
struct {
|
|
uint8_t blockno;
|
|
} PACKED payload;
|
|
|
|
payload.blockno = blockno;
|
|
|
|
PacketResponseNG resp;
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_SRI_READ, (uint8_t *)&payload, sizeof(payload));
|
|
if (WaitForResponseTimeout(CMD_HF_SRI_READ, &resp, TIMEOUT) == false) {
|
|
return PM3_ETIMEOUT;
|
|
}
|
|
|
|
if (resp.status == PM3_SUCCESS && out) {
|
|
memcpy(out, resp.data.asBytes, MIN(out_len, resp.length));
|
|
}
|
|
return resp.status;
|
|
}
|
|
|
|
static int write_sr_block(uint8_t blockno, uint8_t datalen, uint8_t *data) {
|
|
|
|
uint8_t psize = sizeof(iso14b_raw_cmd_t) + datalen + 2;
|
|
iso14b_raw_cmd_t *packet = (iso14b_raw_cmd_t *)calloc(1, psize);
|
|
if (packet == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
return PM3_EMALLOC;
|
|
}
|
|
|
|
packet->flags = (ISO14B_CONNECT | ISO14B_SELECT_SR | ISO14B_RAW | ISO14B_APPEND_CRC | ISO14B_DISCONNECT);
|
|
packet->timeout = 0;
|
|
packet->rawlen = 6;
|
|
packet->raw[0] = ISO14443B_WRITE_BLK;
|
|
packet->raw[1] = blockno;
|
|
packet->raw[2] = data[0];
|
|
packet->raw[3] = data[1];
|
|
packet->raw[4] = data[2];
|
|
packet->raw[5] = data[3];
|
|
|
|
// SRx get and print general info about SRx chip from UID
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, psize);
|
|
free(packet);
|
|
|
|
if (wait_14b_response(true, NULL, NULL) == false) {
|
|
PrintAndLogEx(FAILED, "SRx write block ( " _RED_("failed") " )");
|
|
return PM3_ESOFT;
|
|
}
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static bool HF14B_st_reader(bool verbose) {
|
|
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_SR | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
// SRx get and print general info about SRx chip from UID
|
|
clearCommandBuffer();
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
if (verbose) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
switch (resp.status) {
|
|
case PM3_SUCCESS: {
|
|
iso14b_card_select_t card;
|
|
memcpy(&card, (iso14b_card_select_t *)resp.data.asBytes, sizeof(iso14b_card_select_t));
|
|
|
|
uint8_t empty[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
if ((card.uidlen != 8) || (memcmp(card.uid, empty, card.uidlen) == 0)) {
|
|
return false;
|
|
}
|
|
print_st_general_info(card.uid, card.uidlen);
|
|
return true;
|
|
}
|
|
case PM3_ELENGTH:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 ST ATTRIB fail");
|
|
break;
|
|
case PM3_ECRC:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 ST CRC fail");
|
|
break;
|
|
case PM3_EWRONGANSWER:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 ST random chip id fail");
|
|
break;
|
|
default:
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-b ST select SRx failed");
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static bool HF14B_std_reader(bool verbose) {
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
// 14b get and print UID only (general info)
|
|
clearCommandBuffer();
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
if (verbose) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
switch (resp.status) {
|
|
case PM3_SUCCESS: {
|
|
iso14b_card_select_t card;
|
|
memcpy(&card, (iso14b_card_select_t *)resp.data.asBytes, sizeof(iso14b_card_select_t));
|
|
|
|
uint8_t empty[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
if (memcmp(card.uid, empty, card.uidlen) == 0) {
|
|
return false;
|
|
}
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(SUCCESS, " UID : " _GREEN_("%s"), sprint_hex(card.uid, card.uidlen));
|
|
PrintAndLogEx(SUCCESS, " ATQB : %s", sprint_hex(card.atqb, sizeof(card.atqb)));
|
|
PrintAndLogEx(SUCCESS, " CHIPID : %02X", card.chipid);
|
|
print_atqb_resp(card.atqb, card.cid);
|
|
return true;
|
|
}
|
|
case PM3_ELENGTH: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 ATTRIB fail");
|
|
break;
|
|
}
|
|
case PM3_ECRC: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 CRC fail");
|
|
break;
|
|
}
|
|
default: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-b card select failed");
|
|
break;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static bool HF14B_ask_ct_reader(bool verbose) {
|
|
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_CTS | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
// 14b get and print UID only (general info)
|
|
clearCommandBuffer();
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
if (verbose) PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
return false;
|
|
}
|
|
|
|
switch (resp.status) {
|
|
case PM3_SUCCESS: {
|
|
print_ct_general_info(resp.data.asBytes);
|
|
return true;
|
|
}
|
|
case PM3_ELENGTH: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 CTS wrong length");
|
|
break;
|
|
}
|
|
case PM3_ECRC: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 CTS CRC fail");
|
|
break;
|
|
}
|
|
default: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-b CTS select failed");
|
|
break;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static bool HF14B_picopass_reader(bool verbose) {
|
|
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_PICOPASS | ISO14B_DISCONNECT),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
|
|
// 14b get and print UID only (general info)
|
|
clearCommandBuffer();
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
if (verbose) PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
return false;
|
|
}
|
|
|
|
switch (resp.status) {
|
|
case PM3_SUCCESS: {
|
|
|
|
picopass_hdr_t *card = calloc(1, sizeof(picopass_hdr_t));
|
|
if (card == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
return false;
|
|
}
|
|
memcpy(card, resp.data.asBytes, sizeof(picopass_hdr_t));
|
|
PrintAndLogEx(NORMAL, "");
|
|
PrintAndLogEx(SUCCESS, "iCLASS / Picopass CSN: " _GREEN_("%s"), sprint_hex(card->csn, sizeof(card->csn)));
|
|
free(card);
|
|
return true;
|
|
}
|
|
case PM3_ELENGTH: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 wrong length");
|
|
break;
|
|
}
|
|
case PM3_ECRC: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-3 CRC fail");
|
|
break;
|
|
}
|
|
default: {
|
|
if (verbose) PrintAndLogEx(FAILED, "ISO 14443-b Picopass select failed");
|
|
break;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// test for other 14b type tags (mimic another reader - don't have tags to identify)
|
|
static bool HF14B_other_reader(bool verbose) {
|
|
|
|
iso14b_raw_cmd_t *packet = (iso14b_raw_cmd_t *)calloc(1, sizeof(iso14b_raw_cmd_t) + 4);
|
|
if (packet == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
return false;
|
|
}
|
|
packet->flags = (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_RAW | ISO14B_APPEND_CRC);
|
|
packet->timeout = 0;
|
|
packet->rawlen = 4;
|
|
memcpy(packet->raw, "\x00\x0b\x3f\x80", 4);
|
|
|
|
// 14b get and print UID only (general info)
|
|
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t) + packet->rawlen);
|
|
|
|
// wait for the select message and wait for response
|
|
if (wait_14b_response(false, NULL, NULL)) {
|
|
PrintAndLogEx(SUCCESS, "\n14443-3b tag found:");
|
|
PrintAndLogEx(SUCCESS, "unknown tag type answered to a " _YELLOW_("0x000b3f80") " command");
|
|
switch_off_field_14b();
|
|
free(packet);
|
|
return true;
|
|
}
|
|
|
|
packet->rawlen = 1;
|
|
packet->raw[0] = ISO14443B_AUTHENTICATE;
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t) + packet->rawlen);
|
|
|
|
if (wait_14b_response(false, NULL, NULL)) {
|
|
PrintAndLogEx(SUCCESS, "\n14443-3b tag found:");
|
|
PrintAndLogEx(SUCCESS, "Unknown tag type answered to a " _YELLOW_("0x0A") " command");
|
|
switch_off_field_14b();
|
|
free(packet);
|
|
return true;
|
|
}
|
|
|
|
packet->raw[0] = ISO14443B_RESET;
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t) + packet->rawlen);
|
|
free(packet);
|
|
if (wait_14b_response(false, NULL, NULL)) {
|
|
PrintAndLogEx(SUCCESS, "\n14443-3b tag found:");
|
|
PrintAndLogEx(SUCCESS, "Unknown tag type answered to a " _YELLOW_("0x0C") " command");
|
|
switch_off_field_14b();
|
|
return true;
|
|
}
|
|
|
|
switch_off_field_14b();
|
|
return false;
|
|
}
|
|
|
|
// menu command to get and print general info about all known 14b chips
|
|
static int CmdHF14BReader(const char *Cmd) {
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b reader",
|
|
"Act as a 14443B reader to identify a tag",
|
|
"hf 14b reader\n"
|
|
"hf 14b reader -@ -> continuous reader mode"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_lit0(NULL, "plot", "show anticollision signal trace in plot window"),
|
|
arg_lit0("v", "verbose", "verbose output"),
|
|
arg_lit0("@", NULL, "optional - continuous reader mode"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
bool read_plot = arg_get_lit(ctx, 1);
|
|
bool verbose = arg_get_lit(ctx, 2);
|
|
bool cm = arg_get_lit(ctx, 3);
|
|
CLIParserFree(ctx);
|
|
|
|
if (cm) {
|
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
|
}
|
|
|
|
clear_trace_14b();
|
|
|
|
return readHF14B(cm, verbose, read_plot);
|
|
}
|
|
|
|
// Read SRI512|SRIX4K block
|
|
static int CmdHF14BSriRdBl(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b rdbl",
|
|
"Read SRI512 | SRIX4K block",
|
|
"hf 14b rdbl -b 06\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_int0("b", "block", "<dec>", "block number"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
int blockno = arg_get_int_def(ctx, 1, -1);
|
|
CLIParserFree(ctx);
|
|
|
|
/*
|
|
iso14b_card_select_t card;
|
|
if (get_14b_UID(&card) == false) {
|
|
PrintAndLogEx(WARNING, "no tag found");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
if (card.uidlen != 8) {
|
|
PrintAndLogEx(FAILED, "current read command only work with SRI4K / SRI512 tags");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
// detect cardsize
|
|
// 1 = 4096
|
|
// 2 = 512
|
|
uint8_t cardtype = get_st_cardsize(card.uid);
|
|
uint8_t blocks = (cardtype == 1) ? 0x7F : 0x0F;
|
|
*/
|
|
|
|
uint8_t out[ST25TB_SR_BLOCK_SIZE] = {0};
|
|
int status = read_sr_block(blockno, out, sizeof(out));
|
|
if (status == PM3_SUCCESS) {
|
|
PrintAndLogEx(SUCCESS, "block %02u... " _GREEN_("%s") " | " _GREEN_("%s"), blockno, sprint_hex(out, sizeof(out)), sprint_ascii(out, sizeof(out)));
|
|
}
|
|
return status;
|
|
}
|
|
|
|
// New command to write a SRI512/SRIX4K tag.
|
|
static int CmdHF14BSriWrbl(const char *Cmd) {
|
|
/*
|
|
* For SRIX4K blocks 00 - 7F
|
|
* hf 14b raw --sr -c --data [09 $srix4kwblock $srix4kwdata
|
|
*
|
|
* For SR512 blocks 00 - 0F
|
|
* hf 14b raw --sr -c --data [09 $sr512wblock $sr512wdata]
|
|
*
|
|
* Special block FF = otp_lock_reg block.
|
|
* Data len 4 bytes-
|
|
*/
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b wrbl",
|
|
"Write data to a SRI512 or SRIX4K block\n"
|
|
"If writing to a block out-of-range, use `--force` to override checks\n"
|
|
"Special block at end denots OTP and lock bits among others",
|
|
"hf 14b wrbl --4k -b 100 -d 11223344\n"
|
|
"hf 14b wrbl --4k --sb -d 11223344 --> special block write\n"
|
|
"hf 14b wrbl --512 -b 15 -d 11223344\n"
|
|
"hf 14b wrbl --512 --sb -d 11223344 --> special block write\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_int0("b", "block", "<dec>", "block number"),
|
|
arg_str1("d", "data", "<hex>", "4 hex bytes"),
|
|
arg_lit0(NULL, "512", "target SRI 512 tag"),
|
|
arg_lit0(NULL, "4k", "target SRIX 4k tag (def)"),
|
|
arg_lit0(NULL, "sb", "special block write at end of memory (0xFF)"),
|
|
arg_lit0(NULL, "force", "overrides block range checks"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
int blockno = arg_get_int_def(ctx, 1, -1);
|
|
int dlen = 0;
|
|
uint8_t data[ST25TB_SR_BLOCK_SIZE] = {0, 0, 0, 0};
|
|
int res = CLIParamHexToBuf(arg_get_str(ctx, 2), data, sizeof(data), &dlen);
|
|
if (res) {
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
bool use_sri512 = arg_get_lit(ctx, 3);
|
|
bool use_srix4k = arg_get_lit(ctx, 4);
|
|
bool special = arg_get_lit(ctx, 5);
|
|
bool override = arg_get_lit(ctx, 6);
|
|
CLIParserFree(ctx);
|
|
|
|
if (dlen != sizeof(data)) {
|
|
PrintAndLogEx(FAILED, "data must be 4 hex bytes, got %d", dlen);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
if (use_sri512 + use_srix4k > 1) {
|
|
PrintAndLogEx(FAILED, "Select only one card type");
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
// Set default
|
|
if (use_sri512 == false) {
|
|
use_srix4k = true;
|
|
}
|
|
|
|
if (use_srix4k && blockno > 0x7F) {
|
|
PrintAndLogEx(FAILED, "block number out of range, max 127 (0x7F), got " _RED_("%u"), blockno);
|
|
if (override) {
|
|
PrintAndLogEx(INFO, "overriding block check");
|
|
} else {
|
|
return PM3_EINVARG;
|
|
}
|
|
}
|
|
|
|
if (use_sri512 && blockno > 0x0F) {
|
|
PrintAndLogEx(FAILED, "block number out of range, max 15 (0x0F), got " _RED_("%u"), blockno);
|
|
if (override) {
|
|
PrintAndLogEx(INFO, "overriding block check");
|
|
} else {
|
|
return PM3_EINVARG;
|
|
}
|
|
}
|
|
|
|
// special block at end of memory
|
|
if (special) {
|
|
blockno = 0xFF;
|
|
PrintAndLogEx(SUCCESS, _YELLOW_("%s") " Write special block %02X - " _YELLOW_("%s"),
|
|
(use_srix4k) ? "SRIX4K" : "SRI512",
|
|
blockno,
|
|
sprint_hex(data, sizeof(data))
|
|
);
|
|
} else {
|
|
PrintAndLogEx(SUCCESS, _YELLOW_("%s") " Write block %02X - " _YELLOW_("%s"),
|
|
(use_srix4k) ? "SRIX4K" : "SRI512",
|
|
blockno,
|
|
sprint_hex(data, sizeof(data))
|
|
);
|
|
}
|
|
|
|
int status = write_sr_block(blockno, ST25TB_SR_BLOCK_SIZE, data);
|
|
if (status != PM3_SUCCESS) {
|
|
return status;
|
|
}
|
|
|
|
// verify
|
|
uint8_t out[ST25TB_SR_BLOCK_SIZE] = {0};
|
|
status = read_sr_block(blockno, out, sizeof(out));
|
|
if (status == PM3_SUCCESS) {
|
|
if (memcmp(data, out, 4) == 0) {
|
|
PrintAndLogEx(SUCCESS, "SRx write block ( " _GREEN_("ok") " )");
|
|
}
|
|
} else {
|
|
PrintAndLogEx(INFO, "Verifying block ( " _RED_("failed") " )");
|
|
}
|
|
return status;
|
|
}
|
|
|
|
// need to write to file
|
|
static int CmdHF14BDump(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b dump",
|
|
"This command dumps the contents of a ISO-14443-B tag and save it to file\n"
|
|
"Tries to autodetect cardtype, memory size defaults to SRI4K",
|
|
"hf 14b dump\n"
|
|
"hf 14b dump -f myfilename\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str0("f", "file", "<fn>", "(optional) filename, if no <name> UID will be used as filename"),
|
|
arg_lit0(NULL, "ns", "no save to file"),
|
|
arg_lit0("z", "dense", "dense dump output style"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
int fnlen = 0;
|
|
char filename[FILE_PATH_SIZE] = {0};
|
|
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)filename, FILE_PATH_SIZE, &fnlen);
|
|
bool nosave = arg_get_lit(ctx, 2);
|
|
bool dense_output = (g_session.dense_output || arg_get_lit(ctx, 3));
|
|
CLIParserFree(ctx);
|
|
|
|
|
|
uint8_t select[sizeof(iso14b_card_select_t)] = {0};
|
|
iso14b_type_t select_cardtype = ISO14B_NONE;
|
|
if (get_14b_UID(select, &select_cardtype) == false) {
|
|
PrintAndLogEx(WARNING, "no tag found");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
if (select_cardtype == ISO14B_CT) {
|
|
iso14b_cts_card_select_t ct_card;
|
|
memcpy(&ct_card, (iso14b_cts_card_select_t *)&select, sizeof(iso14b_cts_card_select_t));
|
|
|
|
uint32_t uid32 = MemLeToUint4byte(ct_card.uid);
|
|
PrintAndLogEx(SUCCESS, "UID: " _GREEN_("%s") " ( " _YELLOW_("%010u") " )", sprint_hex(ct_card.uid, 4), uid32);
|
|
|
|
// Have to figure out how large one of these are..
|
|
PrintAndLogEx(FAILED, "Dumping CT tags is not implemented yet.");
|
|
|
|
// print_ct_blocks(data, cardsize);
|
|
return switch_off_field_14b();
|
|
}
|
|
|
|
if (select_cardtype == ISO14B_STANDARD) {
|
|
// Have to figure out how large one of these are..
|
|
PrintAndLogEx(FAILED, "Dumping Standard ISO14443-B tags is not implemented yet.");
|
|
// print_std_blocks(data, cardsize);
|
|
return switch_off_field_14b();
|
|
}
|
|
|
|
if (select_cardtype == ISO14B_SR) {
|
|
iso14b_card_select_t card;
|
|
memcpy(&card, (iso14b_card_select_t *)&select, sizeof(iso14b_card_select_t));
|
|
|
|
// detect cardsize
|
|
// 1 = 4096
|
|
// 2 = 512
|
|
uint8_t cardtype = get_st_cardsize(card.uid);
|
|
uint8_t lastblock = 0;
|
|
uint16_t cardsize = 0;
|
|
|
|
switch (cardtype) {
|
|
case SR_SIZE_512:
|
|
cardsize = (512 / 8) + ST25TB_SR_BLOCK_SIZE;
|
|
lastblock = 0x0F;
|
|
break;
|
|
case SR_SIZE_4K:
|
|
default:
|
|
cardsize = (4096 / 8) + ST25TB_SR_BLOCK_SIZE;
|
|
lastblock = 0x7F;
|
|
break;
|
|
}
|
|
|
|
uint8_t chipid = get_st_chipid(card.uid);
|
|
PrintAndLogEx(SUCCESS, "found a " _GREEN_("%s") " tag", get_st_chip_model(chipid));
|
|
|
|
// detect blocksize from card :)
|
|
PrintAndLogEx(INFO, "reading tag memory");
|
|
|
|
iso14b_raw_cmd_t *packet = (iso14b_raw_cmd_t *)calloc(1, sizeof(iso14b_raw_cmd_t) + 2);
|
|
if (packet == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
return PM3_EMALLOC;
|
|
}
|
|
packet->flags = (ISO14B_CONNECT | ISO14B_SELECT_SR);
|
|
packet->timeout = 0;
|
|
packet->rawlen = 0;
|
|
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t));
|
|
PacketResponseNG resp;
|
|
|
|
// select SR tag
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, 2000)) {
|
|
if (resp.status != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "failed to select ( " _RED_("%d") " )", resp.status);
|
|
free(packet);
|
|
return switch_off_field_14b();
|
|
}
|
|
}
|
|
|
|
PrintAndLogEx(INFO, "." NOLF);
|
|
|
|
uint8_t data[cardsize];
|
|
memset(data, 0, sizeof(data));
|
|
uint16_t blocknum = 0;
|
|
|
|
for (int retry = 0; retry < 3; retry++) {
|
|
|
|
// set up the read command
|
|
packet->flags = (ISO14B_APPEND_CRC | ISO14B_RAW);
|
|
packet->rawlen = 2;
|
|
packet->raw[0] = ISO14443B_READ_BLK;
|
|
packet->raw[1] = blocknum & 0xFF;
|
|
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t) + 2);
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, 2000)) {
|
|
|
|
if (resp.status != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "retrying one more time");
|
|
continue;
|
|
}
|
|
|
|
uint8_t *recv = resp.data.asBytes;
|
|
|
|
if (check_crc(CRC_14443_B, recv, resp.length) == false) {
|
|
PrintAndLogEx(FAILED, "crc fail, retrying one more time");
|
|
continue;
|
|
}
|
|
|
|
// last read
|
|
if (blocknum == 0xFF) {
|
|
// we reserved space for this block after 0x0F and 0x7F, ie 0x10, 0x80
|
|
memcpy(data + ((lastblock + 1) * ST25TB_SR_BLOCK_SIZE), recv, ST25TB_SR_BLOCK_SIZE);
|
|
break;
|
|
}
|
|
memcpy(data + (blocknum * ST25TB_SR_BLOCK_SIZE), recv, ST25TB_SR_BLOCK_SIZE);
|
|
|
|
|
|
retry = 0;
|
|
blocknum++;
|
|
if (blocknum > lastblock) {
|
|
// read config block
|
|
blocknum = 0xFF;
|
|
}
|
|
|
|
PrintAndLogEx(NORMAL, "." NOLF);
|
|
fflush(stdout);
|
|
}
|
|
}
|
|
free(packet);
|
|
|
|
PrintAndLogEx(NORMAL, "");
|
|
switch_off_field_14b();
|
|
|
|
if (blocknum != 0xFF) {
|
|
PrintAndLogEx(FAILED, "dump failed");
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
print_sr_blocks(data, cardsize, card.uid, dense_output);
|
|
|
|
if (nosave) {
|
|
PrintAndLogEx(INFO, "Called with no save option");
|
|
PrintAndLogEx(NORMAL, "");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
// save to file
|
|
if (fnlen < 1) {
|
|
PrintAndLogEx(INFO, "using UID as filename");
|
|
char *fptr = filename + snprintf(filename, sizeof(filename), "hf-14b-");
|
|
FillFileNameByUID(fptr, SwapEndian64(card.uid, card.uidlen, 8), "-dump", card.uidlen);
|
|
}
|
|
|
|
size_t datalen = (lastblock + 2) * ST25TB_SR_BLOCK_SIZE;
|
|
pm3_save_dump(filename, data, datalen, jsf14b_v2);
|
|
}
|
|
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
static int CmdHF14BRestore(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b restore",
|
|
"Restore data from (bin/eml/json) dump file to tag\n"
|
|
"If the dump file includes the special block at the end it will be ignored\n",
|
|
"hf 14b restore --4k -f myfilename\n"
|
|
"hf 14b restore --512 -f myfilename\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str0("f", "file", "<fn>", "(optional) filename, if no <name> UID will be used as filename"),
|
|
arg_lit0(NULL, "512", "target SRI 512 tag"),
|
|
arg_lit0(NULL, "4k", "target SRIX 4k tag (def)"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
|
|
int fnlen = 0;
|
|
char filename[FILE_PATH_SIZE] = {0};
|
|
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)filename, FILE_PATH_SIZE, &fnlen);
|
|
bool use_sri512 = arg_get_lit(ctx, 2);
|
|
bool use_srix4k = arg_get_lit(ctx, 3);
|
|
CLIParserFree(ctx);
|
|
|
|
if (use_sri512 + use_srix4k > 1) {
|
|
PrintAndLogEx(FAILED, "Select only one card type");
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
// Set default
|
|
if (use_sri512 == false) {
|
|
use_srix4k = true;
|
|
}
|
|
|
|
char s[7];
|
|
memset(s, 0, sizeof(s));
|
|
uint16_t block_cnt = 0;
|
|
if (use_sri512) {
|
|
block_cnt = 16;
|
|
memcpy(s, "SRI512", 7);
|
|
} else if (use_srix4k) {
|
|
block_cnt = 128;
|
|
memcpy(s, "SRIX4K", 7);
|
|
}
|
|
|
|
// reserve memory
|
|
uint8_t *data = NULL;
|
|
size_t bytes_read = 0;
|
|
int res = pm3_load_dump(filename, (void **)&data, &bytes_read, (ST25TB_SR_BLOCK_SIZE * block_cnt));
|
|
if (res != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "Failed to load file");
|
|
return res;
|
|
}
|
|
|
|
// Ignore remaining block if the file is 1 block larger than the expected size
|
|
// (because hf 14b dump also saves the special block at the end of the memory, it will be ignored by the restore command)
|
|
if (bytes_read != (block_cnt * ST25TB_SR_BLOCK_SIZE) && bytes_read != ((block_cnt + 1) * ST25TB_SR_BLOCK_SIZE)) {
|
|
PrintAndLogEx(ERR, "File content error. Read %zu", bytes_read);
|
|
free(data);
|
|
return PM3_EFILE;
|
|
}
|
|
PrintAndLogEx(INFO, "Copying to %s", s);
|
|
|
|
int blockno = 0;
|
|
while (bytes_read) {
|
|
|
|
int status = write_sr_block(blockno, ST25TB_SR_BLOCK_SIZE, data + blockno * ST25TB_SR_BLOCK_SIZE);
|
|
if (status != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "Write failed");
|
|
free(data);
|
|
return status;
|
|
}
|
|
|
|
// verify
|
|
uint8_t out[ST25TB_SR_BLOCK_SIZE] = {0};
|
|
status = read_sr_block(blockno, out, sizeof(out));
|
|
if (status == PM3_SUCCESS) {
|
|
if (memcmp(data + blockno * ST25TB_SR_BLOCK_SIZE, out, ST25TB_SR_BLOCK_SIZE) == 0) {
|
|
printf("\33[2K\r");
|
|
PrintAndLogEx(INFO, "SRx write block %d/%d ( " _GREEN_("ok") " )" NOLF, blockno, block_cnt - 1);
|
|
} else {
|
|
printf("\n");
|
|
PrintAndLogEx(INFO, "SRx write block %d/%d ( " _RED_("different") " )", blockno, block_cnt - 1);
|
|
}
|
|
} else {
|
|
printf("\n");
|
|
PrintAndLogEx(INFO, "Verifying block %d/%d ( " _RED_("failed") " )", blockno, block_cnt - 1);
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
bytes_read -= ST25TB_SR_BLOCK_SIZE;
|
|
blockno++;
|
|
if (blockno >= block_cnt) break;
|
|
}
|
|
|
|
PrintAndLogEx(NORMAL, "\n");
|
|
free(data);
|
|
|
|
// confirm number written blocks.
|
|
if (blockno != block_cnt) {
|
|
PrintAndLogEx(ERR, "File content error. There must be %d blocks", block_cnt);
|
|
return PM3_EFILE;
|
|
}
|
|
|
|
PrintAndLogEx(SUCCESS, "Card loaded " _YELLOW_("%d") " blocks from file", block_cnt);
|
|
PrintAndLogEx(INFO, "Done!");
|
|
|
|
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
/*
|
|
|
|
static uint32_t srix4kEncode(uint32_t value) {
|
|
// vv = value
|
|
// pp = position
|
|
// vv vv vv pp
|
|
// 4 bytes : 00 1A 20 01
|
|
// only the lower crumbs.
|
|
uint8_t block = (value & 0xFF);
|
|
uint8_t i = 0;
|
|
uint8_t valuebytes[] = {0, 0, 0};
|
|
Uint3byteToMemBe(valuebytes, value >> 8);
|
|
|
|
uint32_t value_x = (value >> 8);
|
|
PrintAndLogEx(INFO, "value...... %08x %06x", value, value_x);
|
|
PrintAndLogEx(INFO, "3b value... %s", sprint_hex_inrow(valuebytes, sizeof(valuebytes)));
|
|
PrintAndLogEx(INFO, "block no... %02x", block);
|
|
|
|
// Scrambled part
|
|
// Crumb swapping of value.
|
|
uint32_t foo = 0;
|
|
foo |= CRUMB(value_x, 22) << 28;
|
|
foo |= CRUMB(value_x, 14) << 26;
|
|
foo |= CRUMB(value_x, 6) << 24;
|
|
|
|
foo |= CRUMB(value_x, 20) << 20;
|
|
foo |= CRUMB(value_x, 12) << 18;
|
|
foo |= CRUMB(value_x, 4) << 16;
|
|
|
|
foo |= CRUMB(value_x, 18) << 12;
|
|
foo |= CRUMB(value_x, 10) << 10;
|
|
foo |= CRUMB(value_x, 2) << 8;
|
|
|
|
foo |= CRUMB(value_x, 16) << 4;
|
|
foo |= CRUMB(value_x, 8) << 2;
|
|
foo |= CRUMB(value_x, 0) << 0;
|
|
|
|
PrintAndLogEx(INFO, "hex........ %02x %02x %02x", CRUMB(value_x, 22), CRUMB(value_x, 14), CRUMB(value_x, 6));
|
|
PrintAndLogEx(INFO, "hex........ %02x %02x %02x", CRUMB(value_x, 20), CRUMB(value_x, 12), CRUMB(value_x, 4));
|
|
PrintAndLogEx(INFO, "hex........ %02x %02x %02x", CRUMB(value_x, 18), CRUMB(value_x, 10), CRUMB(value_x, 2));
|
|
PrintAndLogEx(INFO, "hex........ %02x %02x %02x", CRUMB(value_x, 16), CRUMB(value_x, 8), CRUMB(value_x, 0));
|
|
|
|
PrintAndLogEx(INFO, "hex........ %08x", foo);
|
|
|
|
// chksum part
|
|
uint32_t chksum = 0xFF - block;
|
|
|
|
// chksum is reduced by each nibbles of value.
|
|
for (i = 0; i < 3; ++i) {
|
|
chksum -= NIBBLE_HIGH(valuebytes[i]);
|
|
chksum -= NIBBLE_LOW(valuebytes[i]);
|
|
}
|
|
|
|
// base4 conversion and left shift twice
|
|
i = 3;
|
|
uint8_t base4[] = {0, 0, 0, 0};
|
|
while (chksum != 0) {
|
|
base4[i--] = (chksum % 4 << 2);
|
|
chksum /= 4;
|
|
}
|
|
PrintAndLogEx(INFO, "%s", sprint_hex_inrow(base4, sizeof(base4)));
|
|
|
|
// merge scambled and chksum parts
|
|
uint32_t encvalue = 0;
|
|
|
|
(NIBBLE_LOW(base4[0]) << 28) |
|
|
(NIBBLE_HIGH(temp[0]) << 24) |
|
|
|
|
(NIBBLE_LOW(base4[1]) << 20) |
|
|
(NIBBLE_LOW(temp[0]) << 16) |
|
|
|
|
(NIBBLE_LOW(base4[2]) << 12) |
|
|
(NIBBLE_HIGH(temp[1]) << 8) |
|
|
|
|
(NIBBLE_LOW(base4[3]) << 4) |
|
|
NIBBLE_LOW(temp[1]);
|
|
|
|
PrintAndLogEx(NORMAL, "ICE encoded | %08X -> %08X", value, encvalue);
|
|
return encvalue;
|
|
}
|
|
*/
|
|
|
|
static uint32_t srix4k_decode_counter(uint32_t num) {
|
|
uint32_t value = ~num;
|
|
++value;
|
|
return value;
|
|
}
|
|
/*
|
|
static uint32_t srix4kDecode(uint32_t value) {
|
|
switch (value) {
|
|
case 0xC04F42C5:
|
|
return 0x003139;
|
|
case 0xC1484807:
|
|
return 0x002943;
|
|
case 0xC0C60848:
|
|
return 0x001A20;
|
|
}
|
|
return 0;
|
|
}
|
|
*/
|
|
|
|
static uint32_t srix4k_get_magicbytes(uint64_t uid, uint32_t block6, uint32_t block18, uint32_t block19) {
|
|
#define MASK 0xFFFFFFFF;
|
|
uint32_t uid32 = uid & MASK;
|
|
uint32_t counter = srix4k_decode_counter(block6);
|
|
uint32_t decodedBlock18 = 0;
|
|
uint32_t decodedBlock19 = 0;
|
|
// uint32_t decodedBlock18 = srix4kDecode(block18);
|
|
// uint32_t decodedBlock19 = srix4kDecode(block19);
|
|
uint32_t doubleBlock = (decodedBlock18 << 16 | decodedBlock19) + 1;
|
|
|
|
uint32_t result = (uid32 * doubleBlock * counter) & MASK;
|
|
PrintAndLogEx(SUCCESS, "Magic bytes | %08X", result);
|
|
return result;
|
|
}
|
|
|
|
static int CmdSRIX4kValid(const char *Cmd) {
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b valid",
|
|
"SRIX checksum test",
|
|
"hf 14b valid\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
CLIParserFree(ctx);
|
|
|
|
uint64_t uid = 0xD00202501A4532F9;
|
|
uint32_t block6 = 0xFFFFFFFF;
|
|
uint32_t block18 = 0xC04F42C5;
|
|
uint32_t block19 = 0xC1484807;
|
|
uint32_t block21 = 0xD1BCABA4;
|
|
|
|
uint32_t test_b18 = 0x001A2001; // 0x00313918;
|
|
uint32_t test_b18_enc = 0;
|
|
// uint32_t test_b18_enc = srix4kEncode(test_b18);
|
|
// uint32_t test_b18_dec = srix4kDecode(test_b18_enc);
|
|
PrintAndLogEx(SUCCESS, "ENCODE & CHECKSUM | %08X -> %08X (%s)", test_b18, test_b18_enc, "");
|
|
|
|
uint32_t magic = srix4k_get_magicbytes(uid, block6, block18, block19);
|
|
PrintAndLogEx(SUCCESS, "BLOCK 21 | %08X -> %08X (no XOR)", block21, magic ^ block21);
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
int select_card_14443b_4(bool disconnect, iso14b_card_select_t *card) {
|
|
if (card) {
|
|
memset(card, 0, sizeof(iso14b_card_select_t));
|
|
}
|
|
|
|
switch_off_field_14b();
|
|
|
|
iso14b_raw_cmd_t packet = {
|
|
.flags = (ISO14B_CONNECT | ISO14B_SELECT_STD | ISO14B_CLEARTRACE),
|
|
.timeout = 0,
|
|
.rawlen = 0,
|
|
};
|
|
// Anticollision + SELECT STD card
|
|
PacketResponseNG resp;
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
|
|
PrintAndLogEx(INFO, "Trying 14B Select SRx");
|
|
// Anticollision + SELECT SR card
|
|
packet.flags = (ISO14B_CONNECT | ISO14B_SELECT_SR | ISO14B_CLEARTRACE);
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
|
|
PrintAndLogEx(INFO, "Trying 14B Select CTS");
|
|
// Anticollision + SELECT ASK C-Ticket card
|
|
packet.flags = (ISO14B_CONNECT | ISO14B_SELECT_CTS | ISO14B_CLEARTRACE);
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)&packet, sizeof(iso14b_raw_cmd_t));
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, TIMEOUT) == false) {
|
|
PrintAndLogEx(ERR, "connection timeout");
|
|
switch_off_field_14b();
|
|
return PM3_ESOFT;
|
|
}
|
|
}
|
|
}
|
|
|
|
// check result
|
|
if (resp.status != PM3_SUCCESS) {
|
|
PrintAndLogEx(WARNING, "No ISO14443-B Card in field");
|
|
switch_off_field_14b();
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
SetISODEPState(ISODEP_NFCB);
|
|
apdu_frame_length = 0;
|
|
// get frame length from ATS in card data structure
|
|
iso14b_card_select_t *vcard = (iso14b_card_select_t *) resp.data.asBytes;
|
|
// uint8_t fsci = vcard->atqb[1] & 0x0f;
|
|
// if (fsci < ARRAYLEN(ats_fsc)) {
|
|
// apdu_frame_length = ats_fsc[fsci];
|
|
// }
|
|
|
|
if (card) {
|
|
memcpy(card, vcard, sizeof(iso14b_card_select_t));
|
|
}
|
|
|
|
if (disconnect) {
|
|
switch_off_field_14b();
|
|
}
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int handle_14b_apdu(bool chainingin, uint8_t *datain, int datainlen,
|
|
bool activateField, uint8_t *dataout, int maxdataoutlen,
|
|
int *dataoutlen, bool *chainingout, int user_timeout) {
|
|
|
|
*chainingout = false;
|
|
|
|
if (activateField) {
|
|
// select with no disconnect and set frameLength
|
|
int selres = select_card_14443b_4(false, NULL);
|
|
if (selres != PM3_SUCCESS) {
|
|
return selres;
|
|
}
|
|
}
|
|
|
|
iso14b_raw_cmd_t *packet = (iso14b_raw_cmd_t *)calloc(1, sizeof(iso14b_raw_cmd_t) + datainlen);
|
|
if (packet == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
return PM3_EMALLOC;
|
|
}
|
|
packet->flags = (ISO14B_APDU);
|
|
packet->timeout = 0;
|
|
packet->rawlen = 0;
|
|
|
|
if (chainingin) {
|
|
packet->flags = (ISO14B_SEND_CHAINING | ISO14B_APDU);
|
|
}
|
|
|
|
if (user_timeout > 0) {
|
|
packet->flags |= ISO14B_SET_TIMEOUT;
|
|
if (user_timeout > MAX_14B_TIMEOUT_MS) {
|
|
user_timeout = MAX_14B_TIMEOUT_MS;
|
|
PrintAndLogEx(INFO, "set timeout to 4.9 seconds. The max we can wait for response");
|
|
}
|
|
|
|
// timeout in ETU
|
|
packet->timeout = (uint32_t)((13560 / 128) * user_timeout);
|
|
}
|
|
|
|
// "Command APDU" length should be 5+255+1, but javacard's APDU buffer might be smaller - 133 bytes
|
|
// https://stackoverflow.com/questions/32994936/safe-max-java-card-apdu-data-command-and-respond-size
|
|
// here length PM3_CMD_DATA_SIZE=512
|
|
if (datain) {
|
|
packet->rawlen = datainlen;
|
|
memcpy(packet->raw, datain, datainlen);
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t) + packet->rawlen);
|
|
} else {
|
|
SendCommandNG(CMD_HF_ISO14443B_COMMAND, (uint8_t *)packet, sizeof(iso14b_raw_cmd_t));
|
|
}
|
|
free(packet);
|
|
PacketResponseNG resp;
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_COMMAND, &resp, MAX(APDU_TIMEOUT, user_timeout)) == false) {
|
|
PrintAndLogEx(ERR, "APDU: reply timeout");
|
|
return PM3_ETIMEOUT;
|
|
}
|
|
|
|
if (resp.status != PM3_SUCCESS) {
|
|
PrintAndLogEx(ERR, "APDU: no APDU response");
|
|
return resp.status;
|
|
}
|
|
|
|
iso14b_raw_apdu_response_t *apdu = (iso14b_raw_apdu_response_t *)resp.data.asBytes;
|
|
|
|
// remove crc bytes
|
|
int dlen = apdu->datalen - 2;
|
|
if (dlen < 0) {
|
|
dlen = 0;
|
|
}
|
|
|
|
*dataoutlen += dlen;
|
|
|
|
if (maxdataoutlen && *dataoutlen > maxdataoutlen) {
|
|
PrintAndLogEx(ERR, "APDU: buffer too small ( " _RED_("%d") " ), needs " _YELLOW_("%d") " bytes", maxdataoutlen, *dataoutlen);
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
// I-block ACK
|
|
if ((apdu->response_byte & 0xF2) == 0xA2) {
|
|
*dataoutlen = 0;
|
|
*chainingout = true;
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
// check apdu length
|
|
if (apdu->datalen < 2) {
|
|
PrintAndLogEx(ERR, "APDU: small APDU response, len " _RED_("%d"), apdu->datalen);
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
// copy to output array
|
|
memcpy(dataout, apdu->data, dlen);
|
|
|
|
// chaining
|
|
if ((apdu->response_byte & 0x10) != 0) {
|
|
*chainingout = true;
|
|
}
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
int exchange_14b_apdu(uint8_t *datain, int datainlen, bool activate_field,
|
|
bool leave_signal_on, uint8_t *dataout, int maxdataoutlen,
|
|
int *dataoutlen, int user_timeout) {
|
|
|
|
*dataoutlen = 0;
|
|
bool chaining = false;
|
|
int res;
|
|
|
|
// 3 byte here - 1b framing header, 2b crc16
|
|
if (apdu_in_framing_enable &&
|
|
((apdu_frame_length && (datainlen > apdu_frame_length - 3)) || (datainlen > PM3_CMD_DATA_SIZE - 3))) {
|
|
|
|
int clen = 0;
|
|
bool v_activate_field = activate_field;
|
|
|
|
do {
|
|
int vlen = MIN(apdu_frame_length - 3, datainlen - clen);
|
|
bool chainBlockNotLast = ((clen + vlen) < datainlen);
|
|
|
|
*dataoutlen = 0;
|
|
res = handle_14b_apdu(chainBlockNotLast, &datain[clen], vlen, v_activate_field, dataout, maxdataoutlen, dataoutlen, &chaining, user_timeout);
|
|
if (res) {
|
|
if (leave_signal_on == false) {
|
|
switch_off_field_14b();
|
|
}
|
|
|
|
return 200;
|
|
}
|
|
|
|
// TODO check this one...
|
|
// check R-block ACK
|
|
// *dataoutlen!=0. 'A && (!A || B)' is equivalent to 'A && B'
|
|
if ((*dataoutlen == 0) && (chaining != chainBlockNotLast)) {
|
|
if (leave_signal_on == false) {
|
|
switch_off_field_14b();
|
|
}
|
|
return 201;
|
|
}
|
|
|
|
clen += vlen;
|
|
v_activate_field = false;
|
|
if (*dataoutlen) {
|
|
if (clen != datainlen) {
|
|
PrintAndLogEx(ERR, "APDU: I-block/R-block sequence error. Data len=%d, Sent=%d, Last packet len=%d", datainlen, clen, *dataoutlen);
|
|
}
|
|
break;
|
|
}
|
|
} while (clen < datainlen);
|
|
|
|
} else {
|
|
res = handle_14b_apdu(false, datain, datainlen, activate_field, dataout, maxdataoutlen, dataoutlen, &chaining, user_timeout);
|
|
if (res != PM3_SUCCESS) {
|
|
if (leave_signal_on == false) {
|
|
switch_off_field_14b();
|
|
}
|
|
return res;
|
|
}
|
|
}
|
|
|
|
while (chaining) {
|
|
// I-block with chaining
|
|
res = handle_14b_apdu(false, NULL, 0, false, &dataout[*dataoutlen], maxdataoutlen, dataoutlen, &chaining, user_timeout);
|
|
if (res != PM3_SUCCESS) {
|
|
if (leave_signal_on == false) {
|
|
switch_off_field_14b();
|
|
}
|
|
return 100;
|
|
}
|
|
}
|
|
|
|
if (leave_signal_on == false) {
|
|
switch_off_field_14b();
|
|
}
|
|
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
// ISO14443-4. 7. Half-duplex block transmission protocol
|
|
static int CmdHF14BAPDU(const char *Cmd) {
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b apdu",
|
|
"Sends an ISO 7816-4 APDU via ISO 14443-4 block transmission protocol (T=CL).\n"
|
|
"works with all apdu types from ISO 7816-4:2013",
|
|
"hf 14b apdu -s -d 94a40800043f000002\n"
|
|
"hf 14b apdu -s --decode -d 00A404000E325041592E5359532E444446303100 -> decode apdu\n"
|
|
"hf 14b apdu -sm 00A40400 -l 256 -d 325041592E5359532E4444463031 -> encode standard apdu\n"
|
|
"hf 14b apdu -sm 00A40400 -el 65536 -d 325041592E5359532E4444463031 -> encode extended apdu\n");
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_lit0("s", "select", "activate field and select card"),
|
|
arg_lit0("k", "keep", "leave the signal field ON after receive response"),
|
|
arg_lit0("t", "tlv", "executes TLV decoder if it possible"),
|
|
arg_lit0(NULL, "decode", "decode apdu request if it possible"),
|
|
arg_str0("m", "make", "<hex>", "make apdu with head from this field and data from data field.\n"
|
|
" must be 4 bytes: <CLA INS P1 P2>"),
|
|
arg_lit0("e", "extended", "make extended length apdu if `m` parameter included"),
|
|
arg_int0("l", "le", "<int>", "Le apdu parameter if `m` parameter included"),
|
|
arg_str1("d", "data", "<hex>", "<APDU | data> if `m` parameter included"),
|
|
arg_int0(NULL, "timeout", "<dec>", "timeout in ms"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
bool activate_field = arg_get_lit(ctx, 1);
|
|
bool leave_signal_on = arg_get_lit(ctx, 2);
|
|
bool decode_TLV = arg_get_lit(ctx, 3);
|
|
bool decode_APDU = arg_get_lit(ctx, 4);
|
|
|
|
uint8_t header[PM3_CMD_DATA_SIZE] = {0x00};
|
|
int headerlen = 0;
|
|
CLIGetHexWithReturn(ctx, 5, header, &headerlen);
|
|
|
|
bool make_APDU = (headerlen > 0);
|
|
if (make_APDU && headerlen != 4) {
|
|
PrintAndLogEx(ERR, "header length must be 4 bytes, got " _RED_("%d"), headerlen);
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
bool extended_APDU = arg_get_lit(ctx, 6);
|
|
int le = arg_get_int_def(ctx, 7, 0);
|
|
|
|
uint8_t data[PM3_CMD_DATA_SIZE] = {0x00};
|
|
int datalen = 0;
|
|
|
|
if (make_APDU) {
|
|
uint8_t apdudata[PM3_CMD_DATA_SIZE] = {0};
|
|
int apdudatalen = 0;
|
|
|
|
CLIGetHexBLessWithReturn(ctx, 8, apdudata, &apdudatalen, 1 + 2);
|
|
|
|
APDU_t apdu;
|
|
apdu.cla = header[0];
|
|
apdu.ins = header[1];
|
|
apdu.p1 = header[2];
|
|
apdu.p2 = header[3];
|
|
|
|
apdu.lc = apdudatalen;
|
|
apdu.data = apdudata;
|
|
|
|
apdu.extended_apdu = extended_APDU;
|
|
apdu.le = le;
|
|
|
|
if (APDUEncode(&apdu, data, &datalen)) {
|
|
PrintAndLogEx(ERR, "can't make apdu with provided parameters.");
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
} else {
|
|
if (extended_APDU) {
|
|
PrintAndLogEx(ERR, "make mode not set but here `e` option.");
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
if (le > 0) {
|
|
PrintAndLogEx(ERR, "make mode not set but here `l` option.");
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
// len = data + PCB(1b) + CRC(2b)
|
|
CLIGetHexBLessWithReturn(ctx, 8, data, &datalen, 1 + 2);
|
|
}
|
|
int user_timeout = arg_get_int_def(ctx, 9, -1);
|
|
CLIParserFree(ctx);
|
|
|
|
PrintAndLogEx(SUCCESS, _YELLOW_("%s%s%s"),
|
|
activate_field ? "select card" : "",
|
|
leave_signal_on ? ", keep field on" : "",
|
|
decode_TLV ? ", TLV" : ""
|
|
);
|
|
PrintAndLogEx(SUCCESS, ">>> %s", sprint_hex_inrow(data, datalen));
|
|
|
|
if (decode_APDU) {
|
|
APDU_t apdu;
|
|
if (APDUDecode(data, datalen, &apdu) == 0)
|
|
APDUPrint(apdu);
|
|
else
|
|
PrintAndLogEx(WARNING, "can't decode APDU.");
|
|
}
|
|
|
|
int res = exchange_14b_apdu(data, datalen, activate_field, leave_signal_on, data, PM3_CMD_DATA_SIZE, &datalen, user_timeout);
|
|
if (res != PM3_SUCCESS) {
|
|
return res;
|
|
}
|
|
|
|
PrintAndLogEx(INFO, "<<<< %s - %s", sprint_hex_inrow(data, datalen), sprint_ascii(data, datalen));
|
|
uint16_t sw = get_sw(data, datalen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(SUCCESS, "APDU response: " _YELLOW_("%02x %02x") " - %s"
|
|
, data[datalen - 2]
|
|
, data[datalen - 1]
|
|
, GetAPDUCodeDescription(data[datalen - 2], data[datalen - 1])
|
|
);
|
|
} else {
|
|
PrintAndLogEx(SUCCESS, "APDU response: " _GREEN_("%02x %02x") " - %s"
|
|
, data[datalen - 2]
|
|
, data[datalen - 1]
|
|
, GetAPDUCodeDescription(data[datalen - 2], data[datalen - 1])
|
|
);
|
|
}
|
|
|
|
// TLV decoder
|
|
if (decode_TLV && datalen > 4) {
|
|
TLVPrintFromBuffer(data, datalen - 2);
|
|
}
|
|
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
int CmdHF14BNdefRead(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b ndefread",
|
|
"Print NFC Data Exchange Format (NDEF)",
|
|
"hf 14b ndefread\n"
|
|
"hf 14b ndefread -f myfilename -> save raw NDEF to file"
|
|
);
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str0("f", "file", "<fn>", "Save raw NDEF to file"),
|
|
arg_lit0("v", "verbose", "Verbose output"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
int fnlen = 0;
|
|
char filename[FILE_PATH_SIZE] = {0};
|
|
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)filename, FILE_PATH_SIZE, &fnlen);
|
|
|
|
bool verbose = arg_get_lit(ctx, 2);
|
|
CLIParserFree(ctx);
|
|
|
|
bool activate_field = true;
|
|
bool keep_field_on = true;
|
|
uint8_t response[PM3_CMD_DATA_SIZE];
|
|
int resplen = 0;
|
|
|
|
// --------------- Select NDEF Tag application ----------------
|
|
uint8_t aSELECT_AID[80];
|
|
int aSELECT_AID_n = 0;
|
|
// It's likely safe to ignore the backwards compatibility select that's present in the 14443A part of this code.
|
|
// Full-fledged 14443B is rare, after all. And if not.. your eMRTD passport doesn't have NDEF for a fact.
|
|
param_gethex_to_eol("00a4040007d276000085010100", 0, aSELECT_AID, sizeof(aSELECT_AID), &aSELECT_AID_n); // Select NDEF application D2760000850101
|
|
int res = exchange_14b_apdu(aSELECT_AID, aSELECT_AID_n, activate_field, keep_field_on, response, sizeof(response), &resplen, -1);
|
|
if (res) {
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
if (resplen < 2) {
|
|
res = PM3_ESOFT;
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
uint16_t sw = get_sw(response, resplen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(ERR, "Selecting NDEF AID failed (%04x - %s).", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
res = PM3_ESOFT;
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
activate_field = false;
|
|
keep_field_on = true;
|
|
|
|
// --------------- CC file reading ----------------
|
|
uint8_t aSELECT_FILE_CC[30];
|
|
int aSELECT_FILE_CC_n = 0;
|
|
param_gethex_to_eol("00a4000c02e103", 0, aSELECT_FILE_CC, sizeof(aSELECT_FILE_CC), &aSELECT_FILE_CC_n); // Select E103 file with payload information
|
|
res = exchange_14b_apdu(aSELECT_FILE_CC, aSELECT_FILE_CC_n, activate_field, keep_field_on, response, sizeof(response), &resplen, -1);
|
|
if (res) {
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
sw = get_sw(response, resplen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(ERR, "Selecting CC file failed (%04x - %s).", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
res = PM3_ESOFT;
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
// --------------- Read binary ----------------
|
|
uint8_t aREAD_CC[30];
|
|
int aREAD_CC_n = 0;
|
|
param_gethex_to_eol("00b000000f", 0, aREAD_CC, sizeof(aREAD_CC), &aREAD_CC_n);
|
|
res = exchange_14b_apdu(aREAD_CC, aREAD_CC_n, activate_field, keep_field_on, response, sizeof(response), &resplen, -1);
|
|
if (res) {
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
sw = get_sw(response, resplen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(ERR, "reading CC file failed (%04x - %s).", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
res = PM3_ESOFT;
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
// Parse CC data
|
|
uint8_t cc_data[resplen - 2];
|
|
memcpy(cc_data, response, sizeof(cc_data));
|
|
uint8_t file_id[2] = {cc_data[9], cc_data[10]};
|
|
|
|
|
|
uint16_t max_rapdu_size = (cc_data[3] << 8 | cc_data[4]) - 2;
|
|
|
|
max_rapdu_size = max_rapdu_size < sizeof(response) - 2 ? max_rapdu_size : sizeof(response) - 2;
|
|
// --------------- NDEF file reading ----------------
|
|
uint8_t aSELECT_FILE_NDEF[30];
|
|
int aSELECT_FILE_NDEF_n = 0;
|
|
param_gethex_to_eol("00a4000c02", 0, aSELECT_FILE_NDEF, sizeof(aSELECT_FILE_NDEF), &aSELECT_FILE_NDEF_n);
|
|
memcpy(aSELECT_FILE_NDEF + aSELECT_FILE_NDEF_n, file_id, sizeof(file_id));
|
|
res = exchange_14b_apdu(aSELECT_FILE_NDEF, aSELECT_FILE_NDEF_n + sizeof(file_id), activate_field, keep_field_on, response, sizeof(response), &resplen, -1);
|
|
if (res != PM3_SUCCESS) {
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
sw = get_sw(response, resplen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(ERR, "Selecting NDEF file failed (%04x - %s).", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
switch_off_field_14b();
|
|
return PM3_ESOFT;
|
|
}
|
|
// --------------- Read binary size ----------------
|
|
uint8_t aREAD_NDEF[30];
|
|
int aREAD_NDEF_n = 0;
|
|
aREAD_NDEF_n = 0;
|
|
param_gethex_to_eol("00b0000002", 0, aREAD_NDEF, sizeof(aREAD_NDEF), &aREAD_NDEF_n);
|
|
res = exchange_14b_apdu(aREAD_NDEF, aREAD_NDEF_n, activate_field, keep_field_on, response, sizeof(response), &resplen, -1);
|
|
if (res) {
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
sw = get_sw(response, resplen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(ERR, "reading NDEF file failed (%04x - %s).", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
res = PM3_ESOFT;
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
uint16_t ndef_size = (response[0] << 8) + response[1];
|
|
uint8_t offset = 2;
|
|
|
|
uint8_t *ndef_file = calloc(ndef_size, sizeof(uint8_t));
|
|
if (ndef_file == NULL) {
|
|
PrintAndLogEx(WARNING, "Failed to allocate memory");
|
|
switch_off_field_14b();
|
|
return PM3_EMALLOC;
|
|
}
|
|
|
|
if (ndef_size + offset > 0xFFFF) {
|
|
PrintAndLogEx(ERR, "NDEF size abnormally large in CmdHF14BNdefRead(). Aborting...\n");
|
|
free(ndef_file);
|
|
switch_off_field_14b();
|
|
return PM3_EOVFLOW;
|
|
}
|
|
for (size_t i = offset; i < ndef_size + offset; i += max_rapdu_size) {
|
|
size_t segment_size = max_rapdu_size < ndef_size + offset - i ? max_rapdu_size : ndef_size + offset - i;
|
|
|
|
keep_field_on = i < ndef_size + offset - max_rapdu_size;
|
|
aREAD_NDEF_n = 0;
|
|
param_gethex_to_eol("00b00000", 0, aREAD_NDEF, sizeof(aREAD_NDEF), &aREAD_NDEF_n);
|
|
aREAD_NDEF[2] = i >> 8;
|
|
aREAD_NDEF[3] = i & 0xFF;
|
|
|
|
// Segment_size is stuffed into a single-byte field below ... so error out if overflows
|
|
if (segment_size > 0xFFu) {
|
|
PrintAndLogEx(ERR, "Segment size too large (0x%zx > 0xFF)", segment_size);
|
|
switch_off_field_14b();
|
|
free(ndef_file);
|
|
return PM3_EOVFLOW;
|
|
}
|
|
aREAD_NDEF[4] = segment_size;
|
|
|
|
res = exchange_14b_apdu(aREAD_NDEF, aREAD_NDEF_n + 1, activate_field, keep_field_on, response, sizeof(response), &resplen, -1);
|
|
if (res != PM3_SUCCESS) {
|
|
switch_off_field_14b();
|
|
free(ndef_file);
|
|
return res;
|
|
}
|
|
|
|
sw = get_sw(response, resplen);
|
|
if (sw != ISO7816_OK) {
|
|
PrintAndLogEx(ERR, "reading NDEF file failed (%04x - %s).", sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
switch_off_field_14b();
|
|
free(ndef_file);
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
if (resplen != segment_size + 2) {
|
|
PrintAndLogEx(ERR, "reading NDEF file failed, expected %zu bytes, got %i bytes.", segment_size, resplen - 2);
|
|
switch_off_field_14b();
|
|
free(ndef_file);
|
|
return PM3_ESOFT;
|
|
}
|
|
|
|
memcpy(ndef_file + (i - offset), response, segment_size);
|
|
}
|
|
|
|
if (verbose == false) {
|
|
PrintAndLogEx(HINT, "Hint: Try " _YELLOW_("`hf 14b ndefread -v`") " for more details"); // So far this prints absolutely nothing
|
|
}
|
|
|
|
|
|
// get total NDEF length before save. If fails, we save it all
|
|
size_t n = 0;
|
|
if (NDEFGetTotalLength(response + 2, resplen - 4, &n) != PM3_SUCCESS)
|
|
n = resplen - 4;
|
|
|
|
pm3_save_dump(filename, response + 2, n, jsfNDEF);
|
|
|
|
NDEFRecordsDecodeAndPrint(ndef_file, ndef_size, verbose);
|
|
free(ndef_file);
|
|
PrintAndLogEx(NORMAL, "");
|
|
switch_off_field_14b();
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BView(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b view",
|
|
"Print a ISO14443-B dump file (bin/eml/json)\n"
|
|
"note:\n"
|
|
" - command expects the filename to contain a UID\n"
|
|
" which is needed to determine card memory type",
|
|
"hf 14b view -f hf-14b-01020304-dump.bin"
|
|
);
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str1("f", "file", "<fn>", "Specify a filename for dump file"),
|
|
arg_lit0("v", "verbose", "verbose output"),
|
|
arg_lit0("z", "dense", "dense dump output style"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
int fnlen = 0;
|
|
char filename[FILE_PATH_SIZE];
|
|
CLIParamStrToBuf(arg_get_str(ctx, 1), (uint8_t *)filename, FILE_PATH_SIZE, &fnlen);
|
|
bool verbose = arg_get_lit(ctx, 2);
|
|
bool dense_output = (g_session.dense_output || arg_get_lit(ctx, 3));
|
|
CLIParserFree(ctx);
|
|
|
|
// read dump file
|
|
uint8_t *dump = NULL;
|
|
size_t bytes_read = (ST25TB_SR_BLOCK_SIZE * 0x100);
|
|
int res = pm3_load_dump(filename, (void **)&dump, &bytes_read, (ST25TB_SR_BLOCK_SIZE * 0x100));
|
|
if (res != PM3_SUCCESS) {
|
|
return res;
|
|
}
|
|
|
|
uint16_t block_cnt = bytes_read / ST25TB_SR_BLOCK_SIZE;
|
|
|
|
if (verbose) {
|
|
PrintAndLogEx(INFO, "File size %zu bytes, file blocks %d (0x%x)", bytes_read, block_cnt, block_cnt);
|
|
}
|
|
|
|
// figure out a way to identify the different dump files.
|
|
// STD/SR/CT is difference
|
|
print_sr_blocks(dump, bytes_read, get_uid_from_filename(filename), dense_output);
|
|
//print_std_blocks(dump, bytes_read);
|
|
//print_ct_blocks(dump, bytes_read);
|
|
|
|
free(dump);
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BCalypsoRead(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b calypso",
|
|
"Reads out the contents of a ISO14443B Calypso card\n",
|
|
"hf 14b calypso"
|
|
);
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
CLIParserFree(ctx);
|
|
|
|
transport_14b_apdu_t cmds[] = {
|
|
{"Select ICC", "\x94\xa4\x08\x00\x04\x3f\x00\x00\x02", 9},
|
|
{"- ICC", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"Select EnvHol", "\x94\xa4\x08\x00\x04\x20\x00\x20\x01", 9},
|
|
{"- EnvHol1", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"Select EvLog", "\x94\xa4\x08\x00\x04\x20\x00\x20\x10", 9},
|
|
{"- EvLog1", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"- EvLog2", "\x94\xb2\x02\x04\x1d", 5},
|
|
{"- EvLog3", "\x94\xb2\x03\x04\x1d", 5},
|
|
{"Select ConList", "\x94\xa4\x08\x00\x04\x20\x00\x20\x50", 9},
|
|
{"- ConList", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"Select Contra", "\x94\xa4\x08\x00\x04\x20\x00\x20\x20", 9},
|
|
{"- Contra1", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"- Contra2", "\x94\xb2\x02\x04\x1d", 5},
|
|
{"- Contra3", "\x94\xb2\x03\x04\x1d", 5},
|
|
{"- Contra4", "\x94\xb2\x04\x04\x1d", 5},
|
|
{"Select Counter", "\x94\xa4\x08\x00\x04\x20\x00\x20\x69", 9},
|
|
{"- Counter", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"Select SpecEv", "\x94\xa4\x08\x00\x04\x20\x00\x20\x40", 9},
|
|
{"- SpecEv1", "\x94\xb2\x01\x04\x1d", 5},
|
|
{"Select Purse", "\x00\xa4\x00\x00\x02\x10\x15", 7},
|
|
{"- Purse1", "\x00\xb2\x01\x04\x1d", 5},
|
|
{"- Purse2", "\x00\xb2\x02\x04\x1d", 5},
|
|
{"- Purse3", "\x00\xb2\x03\x04\x1d", 5},
|
|
{"Select Top Up", "\x00\xa4\x00\x00\x02\x10\x14", 7},
|
|
{"- Topup1", "\x00\xb2\x01\x04\x1d", 5},
|
|
{"Select 1TIC.ICA", "\x00\xa4\x04\x00\x08\x31\x54\x49\x43\x2e\x49\x43\x41", 13},
|
|
};
|
|
|
|
/*
|
|
local CLA = '94'
|
|
local _calypso_cmds = {
|
|
|
|
-- Break down of command bytes:
|
|
-- A4 = select
|
|
-- Master File 3F00
|
|
-- 0x3F = master file
|
|
-- 0x00 = master file id, is constant to 0x00.
|
|
|
|
-- DF Dedicated File 38nn
|
|
-- can be seen as directories
|
|
-- 0x38
|
|
-- 0xNN id
|
|
-- ["01.Select ICC file"] = '0294 a4 080004 3f00 0002',
|
|
|
|
-- EF Elementary File
|
|
-- EF1 Pin file
|
|
-- EF2 Key file
|
|
-- Grey Lock file
|
|
-- Electronic deposit file
|
|
-- Electronic Purse file
|
|
-- Electronic Transaction log file
|
|
*/
|
|
bool activate_field = true;
|
|
bool leave_signal_on = true;
|
|
uint8_t response[PM3_CMD_DATA_SIZE] = { 0x00 };
|
|
|
|
for (int i = 0; i < ARRAYLEN(cmds); i++) {
|
|
|
|
int user_timeout = -1;
|
|
int resplen = 0;
|
|
int res = exchange_14b_apdu(
|
|
(uint8_t *)cmds[i].apdu,
|
|
cmds[i].apdulen,
|
|
activate_field,
|
|
leave_signal_on,
|
|
response,
|
|
PM3_CMD_DATA_SIZE,
|
|
&resplen,
|
|
user_timeout
|
|
);
|
|
|
|
if (res != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "sending command failed, aborting!");
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
uint16_t sw = get_sw(response, resplen);
|
|
if (sw == ISO7816_OK) {
|
|
PrintAndLogEx(SUCCESS, "%-22s - %s", cmds[i].desc, sprint_hex(response, resplen - 2));
|
|
} else {
|
|
PrintAndLogEx(INFO, "%-22s - Sending command failed (%04x - %s).", cmds[i].desc, sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
}
|
|
|
|
activate_field = false;
|
|
}
|
|
|
|
switch_off_field_14b();
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BMobibRead(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b mobib",
|
|
"Reads out the contents of a ISO14443B Mobib card\n",
|
|
"hf 14b mobib"
|
|
);
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_lit0("o", "old", "for old cards"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
|
bool old = arg_get_lit(ctx, 1);
|
|
CLIParserFree(ctx);
|
|
|
|
transport_14b_apdu_t cmds_v1[] = {
|
|
{"SELECT AID 1TIC.ICA", "\x00\xa4\x04\x00\x08\x31\x54\x49\x43\x2e\x49\x43\x41", 13},
|
|
{"Select ICC file a", "\x00\xa4\x00\x00\x02\x3f\x00", 7},
|
|
{"Select ICC file b", "\x00\xa4\x00\x00\x02\x00\x02", 7},
|
|
{"- ICC", "\x00\xb2\x01\x04\x1d", 5},
|
|
{"Select Holder file", "\x00\xa4\x00\x00\x02\x3f\x1c", 7},
|
|
{"- Holder1", "\x00\xb2\x01\x04\x1d", 5},
|
|
{"- Holder2", "\x00\xb2\x02\x04\x1d", 5},
|
|
{"Select EnvHol file a", "\x00\xa4\x00\x00\x00", 5},
|
|
{"Select EnvHol file b", "\x00\xa4\x00\x00\x02\x20\x00", 7},
|
|
{"Select EnvHol file c", "\x00\xa4\x00\x00\x02\x20\x01", 7},
|
|
{"- EnvHol1", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"- EnvHol2", "\x00\xb2\x02\x04\x1D", 5},
|
|
{"Select EvLog file", "\x00\xa4\x00\x00\x02\x20\x10", 7},
|
|
{"- EvLog1", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"- EvLog2", "\x00\xb2\x02\x04\x1D", 5},
|
|
{"- EvLog3", "\x00\xb2\x03\x04\x1D", 5},
|
|
{"Select ConList file", "\x00\xa4\x00\x00\x02\x20\x50", 7},
|
|
{"- ConList", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"Select Contra file", "\x00\xa4\x00\x00\x02\x20\x20", 7},
|
|
{"- Contra1", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"- Contra2", "\x00\xb2\x02\x04\x1D", 5},
|
|
{"- Contra3", "\x00\xb2\x03\x04\x1D", 5},
|
|
{"- Contra4", "\x00\xb2\x04\x04\x1D", 5},
|
|
{"- Contra5", "\x00\xb2\x05\x04\x1D", 5},
|
|
{"- Contra6", "\x00\xb2\x06\x04\x1D", 5},
|
|
{"- Contra7", "\x00\xb2\x07\x04\x1D", 5},
|
|
{"- Contra8", "\x00\xb2\x08\x04\x1D", 5},
|
|
{"- Contra9", "\x00\xb2\x09\x04\x1D", 5},
|
|
{"- ContraA", "\x00\xb2\x0a\x04\x1D", 5},
|
|
{"- ContraB", "\x00\xb2\x0b\x04\x1D", 5},
|
|
{"- ContraC", "\x00\xb2\x0c\x04\x1D", 5},
|
|
{"Select Counter file", "\x00\xa4\x00\x00\x02\x20\x69", 7},
|
|
{"- Counter", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"Select LoadLog file a", "\x00\xa4\x00\x00\x00", 5},
|
|
{"Select LoadLog file b", "\x00\xa4\x00\x00\x02\x10\x00", 7},
|
|
{"Select LoadLog file c", "\x00\xa4\x00\x00\x02\x10\x14", 7},
|
|
{"- LoadLog", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"Select Purcha file", "\x00\xa4\x00\x00\x02\x10\x15", 7},
|
|
{"- Purcha1", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"- Purcha2", "\x00\xb2\x02\x04\x1D", 5},
|
|
{"- Purcha3", "\x00\xb2\x03\x04\x1D", 5},
|
|
{"Select SpecEv file a", "\x00\xa4\x00\x00\x00", 5},
|
|
{"Select SpecEv file b", "\x00\xa4\x00\x00\x02\x20\x00", 7},
|
|
{"Select SpecEv file c", "\x00\xa4\x00\x00\x02\x20\x40", 7},
|
|
{"- SpecEv1", "\x00\xb2\x01\x04\x1D", 5},
|
|
{"- SpecEv2", "\x00\xb2\x02\x04\x1D", 5},
|
|
{"- SpecEv3", "\x00\xb2\x03\x04\x1D", 5},
|
|
{"- SpecEv4", "\x00\xb2\x04\x04\x1d", 5},
|
|
};
|
|
transport_14b_apdu_t cmds_v2[] = {
|
|
{"SELECT AID ??", "\x00\xa4\x04\x00\x0b\xa0\x00\x00\x02\x91\xd0\x56\x00\x01\x90\x01", 16},
|
|
// ShortEF=02: ICC
|
|
{"- ICC", "\x00\xb2\x01\x14\x1d", 5},
|
|
// ShortEF=06: ??, records length up to 0x20?
|
|
//{"- ShortEF=06", "\x00\xb2\x01\x34\x1d", 5},
|
|
// ShortEF=1C: Holder, records length up to 0x30?
|
|
{"- Holder1", "\x00\xb2\x01\xe4\x1d", 5},
|
|
{"- Holder2", "\x00\xb2\x02\xe4\x1d", 5}, // extra
|
|
{"SELECT AID 1TIC.ICA", "\x00\xa4\x04\x00\x0e\x31\x54\x49\x43\x2e\x49\x43\x41\xd0\x56\x00\x01\x91\x01\x00", 20},
|
|
// ShortEF=09: Contracts
|
|
{"- Contra1", "\x00\xb2\x01\x4c\x1d", 5},
|
|
{"- Contra2", "\x00\xb2\x02\x4c\x1d", 5},
|
|
{"- Contra3", "\x00\xb2\x03\x4c\x1d", 5},
|
|
{"- Contra4", "\x00\xb2\x04\x4c\x1d", 5},
|
|
{"- Contra5", "\x00\xb2\x05\x4c\x1d", 5},
|
|
{"- Contra6", "\x00\xb2\x06\x4c\x1d", 5},
|
|
{"- Contra7", "\x00\xb2\x07\x4c\x1d", 5},
|
|
{"- Contra8", "\x00\xb2\x08\x4c\x1d", 5},
|
|
{"- Contra9", "\x00\xb2\x09\x4c\x1d", 5},
|
|
{"- ContraA", "\x00\xb2\x0a\x4c\x1d", 5}, // extra
|
|
{"- ContraB", "\x00\xb2\x0b\x4c\x1d", 5}, // extra
|
|
{"- ContraC", "\x00\xb2\x0c\x4c\x1d", 5}, // extra
|
|
// ShortEF=19: Counter, length up to 0x24?
|
|
{"- Counter", "\x00\xb2\x01\xcc\x1d", 5},
|
|
// ShortEF=17: Events
|
|
// ShortEF=1d: Special Events
|
|
{"- ? Ev1", "\x00\xb2\x01\xbc\x1d", 5},
|
|
{"- SpecEv1", "\x00\xb2\x01\xec\x1d", 5},
|
|
{"- ? Ev2", "\x00\xb2\x02\xbc\x1d", 5},
|
|
{"- SpecEv2", "\x00\xb2\x02\xec\x1d", 5},
|
|
{"- ? Ev3", "\x00\xb2\x03\xbc\x1d", 5},
|
|
{"- SpecEv3", "\x00\xb2\x03\xec\x1d", 5},
|
|
{"- ? Ev4", "\x00\xb2\x04\xbc\x1d", 5},
|
|
{"- SpecEv4", "\x00\xb2\x04\xec\x1d", 5},
|
|
// ShortEF=16: Contract Extensions
|
|
//{"- ? ContraExt", "\x00\xb2\x0c\x4c\x1d", 5}, == ContraC
|
|
{"- ? ContraExt1", "\x00\xb2\x01\xb4\x1d", 5},
|
|
{"- ? ContraExt2", "\x00\xb2\x02\xb4\x1d", 5},
|
|
{"- ? ContraExt3", "\x00\xb2\x03\xb4\x1d", 5},
|
|
{"- ? ContraExt4", "\x00\xb2\x04\xb4\x1d", 5},
|
|
{"- ? ContraExt5", "\x00\xb2\x05\xb4\x1d", 5},
|
|
{"- ? ContraExt6", "\x00\xb2\x06\xb4\x1d", 5},
|
|
{"- ? ContraExt7", "\x00\xb2\x07\xb4\x1d", 5},
|
|
{"- ? ContraExt8", "\x00\xb2\x08\xb4\x1d", 5},
|
|
// ShortEF=1E: Best Contract?, length up to 0x30?
|
|
{"- ConList", "\x00\xb2\x01\xf4\x1d", 5},
|
|
// ShortEF=01: ??, 1 records length up to 0x30?
|
|
// ShortEF=07: ??, 2 records length up to 0x30?
|
|
{"- ShortEF=07, rec1", "\x00\xb2\x01\x3c\x1d", 5},
|
|
{"- ShortEF=07, rec2", "\x00\xb2\x02\x3c\x1d", 5},
|
|
// ShortEF=08: ??, 3 records length up to 0x30?
|
|
// ShortEF=10: ??, 1 records length up to 0x24?
|
|
// ShortEF=11: ??, 1 records length up to 0x30?
|
|
// ShortEF=12: ??, 12 records length up to 0x15?
|
|
// ShortEF=13: ??, 4 records length up to 0x30?
|
|
// ShortEF=14: ??, 1 records length up to 0x20?
|
|
// ShortEF=15: ??, 8 records length up to 0x40?
|
|
// ShortEF=18: ??, 8 records length up to 0x40?
|
|
// ShortEF=1A: ??, 8 records length up to 0x30?
|
|
// ShortEF=1B: ??, 1 records length up to 0x18?
|
|
// ShortEF=1C: ??, 1 records length up to 0x18?
|
|
};
|
|
bool activate_field = true;
|
|
bool leave_signal_on = true;
|
|
uint8_t response[PM3_CMD_DATA_SIZE] = { 0x00 };
|
|
|
|
transport_14b_apdu_t *cmds = old ? cmds_v1 : cmds_v2;
|
|
int cmds_count = old ? ARRAYLEN(cmds_v1) : ARRAYLEN(cmds_v2);
|
|
|
|
for (int i = 0; i < cmds_count; i++) {
|
|
|
|
int user_timeout = -1;
|
|
int resplen = 0;
|
|
int res = exchange_14b_apdu(
|
|
(uint8_t *)cmds[i].apdu,
|
|
cmds[i].apdulen,
|
|
activate_field,
|
|
leave_signal_on,
|
|
response,
|
|
PM3_CMD_DATA_SIZE,
|
|
&resplen,
|
|
user_timeout
|
|
);
|
|
|
|
if (res != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "sending command failed, aborting!");
|
|
switch_off_field_14b();
|
|
return res;
|
|
}
|
|
|
|
uint16_t sw = get_sw(response, resplen);
|
|
if (sw == ISO7816_OK) {
|
|
PrintAndLogEx(SUCCESS, "%-22s - %s", cmds[i].desc, sprint_hex(response, resplen - 2));
|
|
} else {
|
|
PrintAndLogEx(INFO, "%-22s - Sending command failed (%04x - %s).", cmds[i].desc, sw, GetAPDUCodeDescription(sw >> 8, sw & 0xff));
|
|
}
|
|
activate_field = false;
|
|
}
|
|
|
|
switch_off_field_14b();
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BSriTearoff(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b tearoff",
|
|
"Use tear-off technique to manipulate ST25TB/SRx monotonic counter blocks.\n"
|
|
"This exploits EEPROM tearing to increment counters that normally can only\n"
|
|
"be decremented. Based on the near-field-chaos project by SecLabz.\n"
|
|
"\n"
|
|
"The attack works by sending a write command and cutting the RF field at\n"
|
|
"a precise moment, causing a partial write that can raise the counter value.\n"
|
|
"The operation usually takes a few seconds to a few minutes.\n"
|
|
"\n"
|
|
" NOTE: 0xFFFFFFFE values may be unstable due to tag internals.\n"
|
|
" Keep the tag positioned steadily on the antenna.\n",
|
|
"hf 14b tearoff -b 5 -d FFFFFFFE\n"
|
|
"hf 14b tearoff -b 6 -d FFFFFFFE\n"
|
|
"hf 14b tearoff -b 5 -d FFFFFFFE --start 5000 --adj 50\n"
|
|
"hf 14b tearoff -b 5 -d FFFFFFFE --safety 1000\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_int1("b", "block", "<dec>", "block number (typically 5 or 6 for ST25TB counters)"),
|
|
arg_str1("d", "data", "<hex>", "target counter value (4 hex bytes, e.g. FFFFFFFE)"),
|
|
arg_int0(NULL, "adj", "<dec>", "tear-off timing step in us (default: 25)"),
|
|
arg_int0(NULL, "safety", "<dec>", "safety threshold value (default: 0x1000)"),
|
|
arg_int0(NULL, "start", "<dec>", "initial tear-off delay in us (default: 150)"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
int blockno = arg_get_int_def(ctx, 1, -1);
|
|
|
|
int dlen = 0;
|
|
uint8_t data[4] = {0};
|
|
int res = CLIParamHexToBuf(arg_get_str(ctx, 2), data, sizeof(data), &dlen);
|
|
if (res) {
|
|
CLIParserFree(ctx);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
int adj = arg_get_int_def(ctx, 3, 0);
|
|
int safety = arg_get_int_def(ctx, 4, 0x1000);
|
|
int start = arg_get_int_def(ctx, 5, 0);
|
|
CLIParserFree(ctx);
|
|
|
|
if (dlen != 4) {
|
|
PrintAndLogEx(FAILED, "target value must be 4 hex bytes, got %d", dlen);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
if (blockno < 0 || blockno > 255) {
|
|
PrintAndLogEx(FAILED, "block number must be 0-255, got %d", blockno);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
// Convert data bytes to uint32_t (little-endian as per ST25TB convention)
|
|
uint32_t target_value = (uint32_t)data[0] << 24 |
|
|
(uint32_t)data[1] << 16 |
|
|
(uint32_t)data[2] << 8 |
|
|
(uint32_t)data[3];
|
|
|
|
PrintAndLogEx(INFO, "");
|
|
PrintAndLogEx(INFO, "--- " _CYAN_("ST25TB Tear-off Attack") " ---------");
|
|
PrintAndLogEx(INFO, " block............. " _YELLOW_("%d"), blockno);
|
|
PrintAndLogEx(INFO, " target value...... " _YELLOW_("0x%08X"), target_value);
|
|
PrintAndLogEx(INFO, " start delay....... " _YELLOW_("%d") " us", start > 0 ? start : 150);
|
|
PrintAndLogEx(INFO, " timing step....... " _YELLOW_("%d") " us", adj > 0 ? adj : 25);
|
|
PrintAndLogEx(INFO, " safety threshold.. " _YELLOW_("0x%04X"), safety);
|
|
PrintAndLogEx(INFO, "");
|
|
PrintAndLogEx(INFO, "Press " _GREEN_("pm3 button") " or " _GREEN_("Enter") " to abort");
|
|
PrintAndLogEx(INFO, "");
|
|
|
|
// Build payload (must match st25tb_tearoff_params_t on ARM side)
|
|
struct {
|
|
uint8_t block_address;
|
|
uint32_t target_value;
|
|
uint32_t tear_off_adjustment_us;
|
|
uint32_t safety_value;
|
|
uint32_t start_time_us;
|
|
} PACKED payload;
|
|
|
|
payload.block_address = (uint8_t)blockno;
|
|
payload.target_value = target_value;
|
|
payload.tear_off_adjustment_us = (uint32_t)adj;
|
|
payload.safety_value = (uint32_t)safety;
|
|
payload.start_time_us = (uint32_t)start;
|
|
|
|
clearCommandBuffer();
|
|
SendCommandNG(CMD_HF_ISO14443B_ST25TB_TEAROFF, (uint8_t *)&payload, sizeof(payload));
|
|
|
|
// Wait for response with generous timeout.
|
|
// The ARM side sends periodic CMD_WTX keepalive packets to extend
|
|
// the timeout, so the attack can run as long as needed.
|
|
// Use -1 for infinite wait (extended via WTX), abort with Enter key.
|
|
PacketResponseNG resp;
|
|
if (WaitForResponseTimeout(CMD_HF_ISO14443B_ST25TB_TEAROFF, &resp, -1) == false) {
|
|
PrintAndLogEx(WARNING, "command failed or connection lost");
|
|
return PM3_ETIMEOUT;
|
|
}
|
|
|
|
if (resp.status == PM3_SUCCESS) {
|
|
uint32_t final_value = 0;
|
|
if (resp.length >= sizeof(uint32_t)) {
|
|
memcpy(&final_value, resp.data.asBytes, sizeof(uint32_t));
|
|
}
|
|
PrintAndLogEx(SUCCESS, "Tear-off attack " _GREEN_("successful"));
|
|
PrintAndLogEx(SUCCESS, "Final block value: " _GREEN_("0x%08X"), final_value);
|
|
} else if (resp.status == PM3_EOPABORTED) {
|
|
uint32_t final_value = 0;
|
|
if (resp.length >= sizeof(uint32_t)) {
|
|
memcpy(&final_value, resp.data.asBytes, sizeof(uint32_t));
|
|
}
|
|
PrintAndLogEx(WARNING, "Tear-off attack " _YELLOW_("aborted by user"));
|
|
PrintAndLogEx(INFO, "Last known value: 0x%08X", final_value);
|
|
} else {
|
|
PrintAndLogEx(FAILED, "Tear-off attack " _RED_("failed"));
|
|
if (resp.length >= sizeof(uint32_t)) {
|
|
uint32_t final_value = 0;
|
|
memcpy(&final_value, resp.data.asBytes, sizeof(uint32_t));
|
|
PrintAndLogEx(INFO, "Last known value: 0x%08X", final_value);
|
|
}
|
|
}
|
|
|
|
PrintAndLogEx(INFO, "");
|
|
PrintAndLogEx(HINT, "Hint: use " _YELLOW_("`hf 14b rdbl -b %d`") " to verify the block", blockno);
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static int CmdHF14BSetUID(const char *Cmd) {
|
|
|
|
CLIParserContext *ctx;
|
|
CLIParserInit(&ctx, "hf 14b setuid",
|
|
"Set UID for magic card (only works with such cards)\n",
|
|
"hf 14b setuid -u 11223344\n"
|
|
);
|
|
|
|
void *argtable[] = {
|
|
arg_param_begin,
|
|
arg_str1("u", "uid", "<hex>", "UID, 4 hex bytes"),
|
|
arg_param_end
|
|
};
|
|
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
|
|
|
uint8_t uid[20] = {0};
|
|
int uidlen = 20;
|
|
CLIGetHexWithReturn(ctx, 1, uid, &uidlen);
|
|
CLIParserFree(ctx);
|
|
|
|
if (uidlen != 4) {
|
|
PrintAndLogEx(WARNING, "UID len must be 4 bytes, got " _RED_("%i"), uidlen);
|
|
return PM3_EINVARG;
|
|
}
|
|
|
|
uint8_t select[sizeof(iso14b_card_select_t)] = {0};
|
|
iso14b_type_t select_cardtype = ISO14B_NONE;
|
|
if (get_14b_UID(select, &select_cardtype) == false) {
|
|
PrintAndLogEx(WARNING, "no tag found");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
if (select_cardtype != ISO14B_STANDARD) {
|
|
PrintAndLogEx(FAILED, "None supported tag");
|
|
return switch_off_field_14b();
|
|
}
|
|
|
|
iso14b_card_select_t *card = (iso14b_card_select_t *)select;
|
|
if (memcmp(card->atqb, "\x54\x43\x4F\x53", 4)) {
|
|
PrintAndLogEx(FAILED, "None supported tag");
|
|
PrintAndLogEx(NORMAL, "");
|
|
return switch_off_field_14b();
|
|
}
|
|
|
|
int outlen = 0;
|
|
uint8_t out[PM3_CMD_DATA_SIZE] = {0};
|
|
uint8_t tcos_version[] = {0x90, 0xB2, 0x90, 0x00, 0x00};
|
|
if (exchange_14b_apdu(tcos_version, sizeof(tcos_version), true, false, out, PM3_CMD_DATA_SIZE, &outlen, -1) != PM3_SUCCESS) {
|
|
PrintAndLogEx(FAILED, "None supported tag");
|
|
return PM3_EFAILED;
|
|
}
|
|
|
|
uint8_t cmd[] = { 0x90, 0xF8, 0xEE, 0xEE, 0x0B, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
|
memcpy(cmd + 6, uid, uidlen);
|
|
if (exchange_14b_apdu(cmd, sizeof(cmd), true, false, out, PM3_CMD_DATA_SIZE, &outlen, -1) != PM3_SUCCESS) {
|
|
PrintAndLogEx(WARNING, "timeout while waiting for reply");
|
|
return PM3_EFAILED;
|
|
}
|
|
|
|
PrintAndLogEx(INFO, "Verifying...");
|
|
|
|
// verify
|
|
if (get_14b_UID(select, &select_cardtype) == false) {
|
|
PrintAndLogEx(WARNING, "no tag found");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
if (memcmp(card->uid, uid, uidlen) == 0) {
|
|
PrintAndLogEx(SUCCESS, "Setting new UID ( " _GREEN_("ok") " )");
|
|
PrintAndLogEx(HINT, "Hint: Try `" _YELLOW_("hf 14b reader") "` to verify");
|
|
PrintAndLogEx(NORMAL, "");
|
|
return PM3_SUCCESS;;
|
|
}
|
|
|
|
PrintAndLogEx(FAILED, "Setting new UID ( " _RED_("fail") " )");
|
|
PrintAndLogEx(NORMAL, "");
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
static command_t CommandTable[] = {
|
|
{"---------", CmdHelp, AlwaysAvailable, "----------------------- " _CYAN_("General") " -----------------------"},
|
|
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
|
{"config", CmdHf14BConfig, IfPm3Iso14443b, "Configure 14b settings (use with caution)"},
|
|
{"list", CmdHF14BList, AlwaysAvailable, "List ISO-14443-B history"},
|
|
{"---------", CmdHelp, AlwaysAvailable, "----------------------- " _CYAN_("Operations") " -----------------------"},
|
|
{"apdu", CmdHF14BAPDU, IfPm3Iso14443b, "Send ISO 14443-4 APDU to tag"},
|
|
{"dump", CmdHF14BDump, IfPm3Iso14443b, "Read all memory pages of an ISO-14443-B tag, save to file"},
|
|
{"info", CmdHF14Binfo, IfPm3Iso14443b, "Tag information"},
|
|
{"ndefread", CmdHF14BNdefRead, IfPm3Iso14443b, "Read NDEF file on tag"},
|
|
{"raw", CmdHF14BRaw, IfPm3Iso14443b, "Send raw hex data to tag"},
|
|
{"rdbl", CmdHF14BSriRdBl, IfPm3Iso14443b, "Read SRI512/SRIX4 block"},
|
|
{"reader", CmdHF14BReader, IfPm3Iso14443b, "Act as a ISO-14443-B reader to identify a tag"},
|
|
{"restore", CmdHF14BRestore, IfPm3Iso14443b, "Restore from file to all memory pages of an ISO-14443-B tag"},
|
|
{"sim", CmdHF14BSim, IfPm3Iso14443b, "Fake ISO ISO-14443-B tag"},
|
|
{"sniff", CmdHF14BSniff, IfPm3Iso14443b, "Eavesdrop ISO-14443-B"},
|
|
{"wrbl", CmdHF14BSriWrbl, IfPm3Iso14443b, "Write data to a SRI512/SRIX4 tag"},
|
|
{"tearoff", CmdHF14BSriTearoff, IfPm3Iso14443b, "Tear-off attack on ST25TB/SRx counter blocks"},
|
|
{"view", CmdHF14BView, AlwaysAvailable, "Display content from tag dump file"},
|
|
{"valid", CmdSRIX4kValid, AlwaysAvailable, "SRIX4 checksum test"},
|
|
{"---------", CmdHelp, AlwaysAvailable, "------------------ " _CYAN_("Calypso / Mobib") " ------------------"},
|
|
{"calypso", CmdHF14BCalypsoRead, IfPm3Iso14443b, "Read contents of a Calypso card"},
|
|
{"mobib", CmdHF14BMobibRead, IfPm3Iso14443b, "Read contents of a Mobib card"},
|
|
{"---------", CmdHelp, IfPm3Iso14443b, "------------------------- " _CYAN_("Magic") " -----------------------"},
|
|
{"setuid", CmdHF14BSetUID, IfPm3Iso14443b, "Set UID for magic card"},
|
|
{NULL, NULL, NULL, NULL}
|
|
};
|
|
|
|
static int CmdHelp(const char *Cmd) {
|
|
(void)Cmd; // Cmd is not used so far
|
|
CmdsHelp(CommandTable);
|
|
return PM3_SUCCESS;
|
|
}
|
|
|
|
int CmdHF14B(const char *Cmd) {
|
|
clearCommandBuffer();
|
|
return CmdsParse(CommandTable, Cmd);
|
|
}
|
|
|
|
// get and print all info known about any known 14b tag
|
|
int infoHF14B(bool verbose, bool do_aid_search) {
|
|
|
|
// try std 14b (atqb)
|
|
if (HF14B_Std_Info(verbose, do_aid_search))
|
|
return PM3_SUCCESS;
|
|
|
|
// try ST 14b
|
|
if (HF14B_ST_Info(verbose, do_aid_search))
|
|
return PM3_SUCCESS;
|
|
|
|
// try unknown 14b read commands (to be identified later)
|
|
// could be read of calypso, CEPAS, moneo, or pico pass.
|
|
if (verbose) {
|
|
PrintAndLogEx(FAILED, "no 14443-B tag found");
|
|
}
|
|
return PM3_EOPABORTED;
|
|
}
|
|
|
|
// get and print general info about all known 14b chips
|
|
int readHF14B(bool loop, bool verbose, bool read_plot) {
|
|
bool found = false;
|
|
int res = PM3_SUCCESS;
|
|
do {
|
|
found = false;
|
|
|
|
// try std 14b (atqb)
|
|
found |= HF14B_std_reader(verbose);
|
|
if (found)
|
|
goto plot;
|
|
|
|
// try ST Microelectronics 14b
|
|
found |= HF14B_st_reader(verbose);
|
|
if (found)
|
|
goto plot;
|
|
|
|
// Picopass
|
|
found |= HF14B_picopass_reader(verbose);
|
|
if (found)
|
|
goto plot;
|
|
|
|
// try ASK CT 14b
|
|
found |= HF14B_ask_ct_reader(verbose);
|
|
if (found)
|
|
goto plot;
|
|
|
|
// try unknown 14b read commands (to be identified later)
|
|
// could be read of calypso, CEPAS, moneo, or pico pass.
|
|
found |= HF14B_other_reader(verbose);
|
|
if (found)
|
|
goto plot;
|
|
plot:
|
|
if (read_plot) {
|
|
res = handle_hf_plot(verbose);
|
|
if (res != PM3_SUCCESS) {
|
|
PrintAndLogEx(DEBUG, "plot failed");
|
|
}
|
|
}
|
|
|
|
} while (loop && (kbd_enter_pressed() == false));
|
|
|
|
if (verbose && found == false) {
|
|
PrintAndLogEx(FAILED, "no ISO 14443-B tag found");
|
|
}
|
|
return (found) ? PM3_SUCCESS : PM3_EOPABORTED;
|
|
}
|