mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08:00
check ATR length
This commit is contained in:
parent
d589e9cd45
commit
2c4db1ce7c
1 changed files with 4 additions and 0 deletions
|
@ -1444,6 +1444,10 @@ int CmdEMVScan(const char *cmd) {
|
|||
|
||||
smart_card_atr_t card;
|
||||
smart_select(true, &card);
|
||||
if (!card.atr_len) {
|
||||
PrintAndLogEx(ERR, "Can't get ATR from a smart card.");
|
||||
return 1;
|
||||
}
|
||||
|
||||
JsonSaveStr(root, "$.Card.Contact.Communication", "iso7816");
|
||||
JsonSaveBufAsHex(root, "$.Card.Contact.ATR", (uint8_t *)card.atr, card.atr_len);
|
||||
|
|
Loading…
Reference in a new issue