1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2017 Merlok
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
13 #include "util_posix.h"
15 #include "cmdsmartcard.h"
18 // Got from here. Thanks)
19 // https://eftlab.co.uk/index.php/site-map/knowledge-base/211-emv-aid-rid-pix
20 static const char *PSElist
[] = {
21 "325041592E5359532E4444463031", // 2PAY.SYS.DDF01 - Visa Proximity Payment System Environment - PPSE
22 "315041592E5359532E4444463031" // 1PAY.SYS.DDF01 - Visa Payment System Environment - PSE
24 //static const size_t PSElistLen = sizeof(PSElist)/sizeof(char*);
26 char *TransactionTypeStr
[] = {
34 enum CardPSVendor vendor
;
38 static const TAIDList AIDlist
[] = {
40 { CV_VISA
, "A00000000305076010"}, // VISA ELO Credit
41 { CV_VISA
, "A0000000031010" }, // VISA Debit/Credit (Classic)
42 { CV_VISA
, "A000000003101001" }, // VISA Credit
43 { CV_VISA
, "A000000003101002" }, // VISA Debit
44 { CV_VISA
, "A0000000032010" }, // VISA Electron
45 { CV_VISA
, "A0000000032020" }, // VISA
46 { CV_VISA
, "A0000000033010" }, // VISA Interlink
47 { CV_VISA
, "A0000000034010" }, // VISA Specific
48 { CV_VISA
, "A0000000035010" }, // VISA Specific
49 { CV_VISA
, "A0000000036010" }, // Domestic Visa Cash Stored Value
50 { CV_VISA
, "A0000000036020" }, // International Visa Cash Stored Value
51 { CV_VISA
, "A0000000038002" }, // VISA Auth, VisaRemAuthen EMV-CAP (DPA)
52 { CV_VISA
, "A0000000038010" }, // VISA Plus
53 { CV_VISA
, "A0000000039010" }, // VISA Loyalty
54 { CV_VISA
, "A000000003999910" }, // VISA Proprietary ATM
56 { CV_VISA
, "A000000098" }, // Debit Card
57 { CV_VISA
, "A0000000980848" }, // Debit Card
58 // Mastercard International
59 { CV_MASTERCARD
, "A00000000401" }, // MasterCard PayPass
60 { CV_MASTERCARD
, "A0000000041010" }, // MasterCard Credit
61 { CV_MASTERCARD
, "A00000000410101213" }, // MasterCard Credit
62 { CV_MASTERCARD
, "A00000000410101215" }, // MasterCard Credit
63 { CV_MASTERCARD
, "A0000000042010" }, // MasterCard Specific
64 { CV_MASTERCARD
, "A0000000043010" }, // MasterCard Specific
65 { CV_MASTERCARD
, "A0000000043060" }, // Maestro (Debit)
66 { CV_MASTERCARD
, "A000000004306001" }, // Maestro (Debit)
67 { CV_MASTERCARD
, "A0000000044010" }, // MasterCard Specific
68 { CV_MASTERCARD
, "A0000000045010" }, // MasterCard Specific
69 { CV_MASTERCARD
, "A0000000046000" }, // Cirrus
70 { CV_MASTERCARD
, "A0000000048002" }, // SecureCode Auth EMV-CAP
71 { CV_MASTERCARD
, "A0000000049999" }, // MasterCard PayPass
73 { CV_AMERICANEXPRESS
, "A000000025" },
74 { CV_AMERICANEXPRESS
, "A0000000250000" },
75 { CV_AMERICANEXPRESS
, "A00000002501" },
76 { CV_AMERICANEXPRESS
, "A000000025010402" },
77 { CV_AMERICANEXPRESS
, "A000000025010701" },
78 { CV_AMERICANEXPRESS
, "A000000025010801" },
79 // Groupement des Cartes Bancaires "CB"
80 { CV_CB
, "A0000000421010" }, // Cartes Bancaire EMV Card
81 { CV_CB
, "A0000000422010" },
82 { CV_CB
, "A0000000423010" },
83 { CV_CB
, "A0000000424010" },
84 { CV_CB
, "A0000000425010" },
86 { CV_JCB
, "A00000006510" }, // JCB
87 { CV_JCB
, "A0000000651010" }, // JCB J Smart Credit
89 { CV_OTHER
, "A0000001544442" }, // Banricompras Debito - Banrisul - Banco do Estado do Rio Grande do SUL - S.A.
90 { CV_OTHER
, "F0000000030001" }, // BRADESCO
91 { CV_OTHER
, "A0000005241010" }, // RuPay - RuPay
92 { CV_OTHER
, "D5780000021010" } // Bankaxept - Bankaxept
94 static const size_t AIDlistLen
= sizeof(AIDlist
)/sizeof(TAIDList
);
96 static bool APDULogging
= false;
97 void SetAPDULogging(bool logging
) {
98 APDULogging
= logging
;
101 enum CardPSVendor
GetCardPSVendor(uint8_t * AID
, size_t AIDlen
) {
106 hex_to_buffer((uint8_t *)buf
, AID
, AIDlen
, sizeof(buf
) - 1, 0, 0, true);
108 for(int i
= 0; i
< AIDlistLen
; i
++) {
109 if (strncmp(AIDlist
[i
].aid
, buf
, strlen(AIDlist
[i
].aid
)) == 0){
110 return AIDlist
[i
].vendor
;
117 static bool print_cb(void *data
, const struct tlv
*tlv
, int level
, bool is_leaf
) {
118 emv_tag_dump(tlv
, stdout
, level
);
120 dump_buffer(tlv
->value
, tlv
->len
, stdout
, level
);
126 void TLVPrintFromBuffer(uint8_t *data
, int datalen
) {
127 struct tlvdb
*t
= NULL
;
128 t
= tlvdb_parse_multi(data
, datalen
);
130 PrintAndLog("-------------------- TLV decoded --------------------");
132 tlvdb_visit(t
, print_cb
, NULL
, 0);
135 PrintAndLog("TLV ERROR: Can't parse response as TLV tree.");
139 void TLVPrintFromTLVLev(struct tlvdb
*tlv
, int level
) {
143 tlvdb_visit(tlv
, print_cb
, NULL
, level
);
146 void TLVPrintFromTLV(struct tlvdb
*tlv
) {
147 TLVPrintFromTLVLev(tlv
, 0);
150 void TLVPrintAIDlistFromSelectTLV(struct tlvdb
*tlv
) {
151 PrintAndLog("|------------------|--------|-------------------------|");
152 PrintAndLog("| AID |Priority| Name |");
153 PrintAndLog("|------------------|--------|-------------------------|");
155 struct tlvdb
*ttmp
= tlvdb_find(tlv
, 0x6f);
157 PrintAndLog("| none |");
160 const struct tlv
*tgAID
= tlvdb_get_inchild(ttmp
, 0x84, NULL
);
161 const struct tlv
*tgName
= tlvdb_get_inchild(ttmp
, 0x50, NULL
);
162 const struct tlv
*tgPrio
= tlvdb_get_inchild(ttmp
, 0x87, NULL
);
165 PrintAndLog("|%s| %s |%s|",
166 sprint_hex_inrow_ex(tgAID
->value
, tgAID
->len
, 18),
167 (tgPrio
) ? sprint_hex(tgPrio
->value
, 1) : " ",
168 (tgName
) ? sprint_ascii_ex(tgName
->value
, tgName
->len
, 25) : " ");
170 ttmp
= tlvdb_find_next(ttmp
, 0x6f);
173 PrintAndLog("|------------------|--------|-------------------------|");
176 struct tlvdb
*GetPANFromTrack2(const struct tlv
*track2
) {
177 char track2Hex
[200] = {0};
178 uint8_t PAN
[100] = {0};
180 char *tmp
= track2Hex
;
185 for (int i
= 0; i
< track2
->len
; ++i
, tmp
+= 2)
186 sprintf(tmp
, "%02x", (unsigned int)track2
->value
[i
]);
188 int posD
= strchr(track2Hex
, 'd') - track2Hex
;
193 if (strlen(track2Hex
) % 2) {
194 track2Hex
[posD
] = 'F';
195 track2Hex
[posD
+ 1] = '\0';
198 param_gethex_to_eol(track2Hex
, 0, PAN
, sizeof(PAN
), &PANlen
);
200 return tlvdb_fixed(0x5a, PANlen
, PAN
);
203 struct tlvdb
*GetdCVVRawFromTrack2(const struct tlv
*track2
) {
204 char track2Hex
[200] = {0};
205 char dCVVHex
[100] = {0};
206 uint8_t dCVV
[100] = {0};
208 const int PINlen
= 5; // must calculated from 9F67 MSD Offset but i have not seen this tag)
209 char *tmp
= track2Hex
;
214 for (int i
= 0; i
< track2
->len
; ++i
, tmp
+= 2)
215 sprintf(tmp
, "%02x", (unsigned int)track2
->value
[i
]);
217 int posD
= strchr(track2Hex
, 'd') - track2Hex
;
221 memset(dCVVHex
, '0', 32);
223 memcpy(dCVVHex
+ 0, track2Hex
+ posD
+ PINlen
+ 11, 4);
225 memcpy(dCVVHex
+ 4, track2Hex
, 5);
227 memcpy(dCVVHex
+ 9, track2Hex
+ posD
+ 1, 4);
229 memcpy(dCVVHex
+ 13, track2Hex
+ posD
+ 5, 3);
231 param_gethex_to_eol(dCVVHex
, 0, dCVV
, sizeof(dCVV
), &dCVVlen
);
233 return tlvdb_fixed(0x02, dCVVlen
, dCVV
);
236 int EMVExchangeEx(EMVCommandChannel channel
, bool ActivateField
, bool LeaveFieldON
, sAPDU apdu
, bool IncludeLe
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
237 uint8_t data
[APDU_RES_LEN
] = {0};
250 memcpy(data
, &apdu
, 5);
252 memcpy(&data
[5], apdu
.data
, apdu
.Lc
);
255 PrintAndLog(">>>> %s", sprint_hex(data
, (IncludeLe
?6:5) + apdu
.Lc
));
258 case ECC_CONTACTLESS
:
259 // 6 byes + data = INS + CLA + P1 + P2 + Lc + <data = Nc> + Le(?IncludeLe)
260 res
= ExchangeAPDU14a(data
, (IncludeLe
?6:5) + apdu
.Lc
, ActivateField
, LeaveFieldON
, Result
, (int)MaxResultLen
, (int *)ResultLen
);
266 //int ExchangeAPDUSC(uint8_t *datain, int datainlen, bool activateCard, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen);
267 #ifdef WITH_SMARTCARD
268 res
= ExchangeAPDUSC(data
, (IncludeLe
?6:5) + apdu
.Lc
, ActivateField
, LeaveFieldON
, Result
, (int)MaxResultLen
, (int *)ResultLen
);
277 PrintAndLog("<<<< %s", sprint_hex(Result
, *ResultLen
));
279 if (*ResultLen
< 2) {
284 isw
= Result
[*ResultLen
] * 0x0100 + Result
[*ResultLen
+ 1];
290 if (*sw
>> 8 == 0x61) {
291 PrintAndLog("APDU chaining len:%02x -->", *sw
& 0xff);
293 PrintAndLog("APDU(%02x%02x) ERROR: [%4X] %s", apdu
.CLA
, apdu
.INS
, isw
, GetAPDUCodeDescription(*sw
>> 8, *sw
& 0xff));
301 struct tlvdb
*t
= tlvdb_parse_multi(Result
, *ResultLen
);
308 int EMVExchange(EMVCommandChannel channel
, bool LeaveFieldON
, sAPDU apdu
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
309 return EMVExchangeEx(channel
, false, LeaveFieldON
, apdu
, true, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
312 int EMVSelect(EMVCommandChannel channel
, bool ActivateField
, bool LeaveFieldON
, uint8_t *AID
, size_t AIDLen
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
313 return EMVExchangeEx(channel
, ActivateField
, LeaveFieldON
, (sAPDU
){0x00, 0xa4, 0x04, 0x00, AIDLen
, AID
}, true, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
316 int EMVSelectPSE(EMVCommandChannel channel
, bool ActivateField
, bool LeaveFieldON
, uint8_t PSENum
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
) {
317 uint8_t buf
[APDU_AID_LEN
] = {0};
323 param_gethex_to_eol(PSElist
[1], 0, buf
, sizeof(buf
), &len
);
326 param_gethex_to_eol(PSElist
[0], 0, buf
, sizeof(buf
), &len
);
333 res
= EMVSelect(channel
, ActivateField
, LeaveFieldON
, buf
, len
, Result
, MaxResultLen
, ResultLen
, sw
, NULL
);
338 int EMVSearchPSE(EMVCommandChannel channel
, bool ActivateField
, bool LeaveFieldON
, bool decodeTLV
, struct tlvdb
*tlv
) {
339 uint8_t data
[APDU_RES_LEN
] = {0};
345 res
= EMVSelectPSE(channel
, ActivateField
, true, 2, data
, sizeof(data
), &datalen
, &sw
);
348 struct tlvdb
*t
= NULL
;
349 t
= tlvdb_parse_multi(data
, datalen
);
352 struct tlvdb
*ttmp
= tlvdb_find_path(t
, (tlv_tag_t
[]){0x6f, 0xa5, 0xbf0c, 0x61, 0x00});
354 PrintAndLog("PPSE don't have records.");
357 const struct tlv
*tgAID
= tlvdb_get_inchild(ttmp
, 0x4f, NULL
);
359 res
= EMVSelect(channel
, false, true, (uint8_t *)tgAID
->value
, tgAID
->len
, data
, sizeof(data
), &datalen
, &sw
, tlv
);
361 // retry if error and not returned sw error
362 if (res
&& res
!= 5) {
366 // card select error, proxmark error
368 PrintAndLog("Exit...");
373 PrintAndLog("Retry failed [%s]. Skiped...", sprint_hex_inrow(tgAID
->value
, tgAID
->len
));
377 ttmp
= tlvdb_find_next(ttmp
, 0x61);
384 PrintAndLog("%s:", sprint_hex_inrow(tgAID
->value
, tgAID
->len
));
385 TLVPrintFromBuffer(data
, datalen
);
389 ttmp
= tlvdb_find_next(ttmp
, 0x61);
394 PrintAndLog("PPSE ERROR: Can't get TLV from response.");
397 PrintAndLog("PPSE ERROR: Can't select PPSE AID. Error: %d", res
);
406 int EMVSearch(EMVCommandChannel channel
, bool ActivateField
, bool LeaveFieldON
, bool decodeTLV
, struct tlvdb
*tlv
) {
407 uint8_t aidbuf
[APDU_AID_LEN
] = {0};
409 uint8_t data
[APDU_RES_LEN
] = {0};
415 for(int i
= 0; i
< AIDlistLen
; i
++) {
416 param_gethex_to_eol(AIDlist
[i
].aid
, 0, aidbuf
, sizeof(aidbuf
), &aidlen
);
417 res
= EMVSelect(channel
, (i
== 0) ? ActivateField
: false, (i
== AIDlistLen
- 1) ? LeaveFieldON
: true, aidbuf
, aidlen
, data
, sizeof(data
), &datalen
, &sw
, tlv
);
418 // retry if error and not returned sw error
419 if (res
&& res
!= 5) {
423 // (1) - card select error, proxmark error OR (200) - result length = 0
424 if (res
== 1 || res
== 200) {
425 PrintAndLogEx(WARNING
, "Exit...");
430 PrintAndLog("Retry failed [%s]. Skiped...", AIDlist
[i
].aid
);
440 PrintAndLog("%s:", AIDlist
[i
].aid
);
441 TLVPrintFromBuffer(data
, datalen
);
448 int EMVSelectApplication(struct tlvdb
*tlv
, uint8_t *AID
, size_t *AIDlen
) {
449 // check priority. 0x00 - highest
454 struct tlvdb
*ttmp
= tlvdb_find(tlv
, 0x6f);
459 const struct tlv
*tgAID
= tlvdb_get_inchild(ttmp
, 0x84, NULL
);
460 const struct tlv
*tgPrio
= tlvdb_get_inchild(ttmp
, 0x87, NULL
);
466 int pt
= bytes_to_num((uint8_t*)tgPrio
->value
, (tgPrio
->len
< 2) ? tgPrio
->len
: 2);
470 memcpy(AID
, tgAID
->value
, tgAID
->len
);
471 *AIDlen
= tgAID
->len
;
474 // takes the first application from list wo priority
476 memcpy(AID
, tgAID
->value
, tgAID
->len
);
477 *AIDlen
= tgAID
->len
;
481 ttmp
= tlvdb_find_next(ttmp
, 0x6f);
487 int EMVGPO(EMVCommandChannel channel
, bool LeaveFieldON
, uint8_t *PDOL
, size_t PDOLLen
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
488 return EMVExchange(channel
, LeaveFieldON
, (sAPDU
){0x80, 0xa8, 0x00, 0x00, PDOLLen
, PDOL
}, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
491 int EMVReadRecord(EMVCommandChannel channel
, bool LeaveFieldON
, uint8_t SFI
, uint8_t SFIrec
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
492 int res
= EMVExchange(channel
, LeaveFieldON
, (sAPDU
){0x00, 0xb2, SFIrec
, (SFI
<< 3) | 0x04, 0, NULL
}, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
494 PrintAndLogEx(INFO
, ">>> trying to reissue command withouth Le...");
495 res
= EMVExchangeEx(channel
, false, LeaveFieldON
, (sAPDU
){0x00, 0xb2, SFIrec
, (SFI
<< 3) | 0x04, 0, NULL
}, false, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
500 int EMVAC(EMVCommandChannel channel
, bool LeaveFieldON
, uint8_t RefControl
, uint8_t *CDOL
, size_t CDOLLen
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
501 return EMVExchange(channel
, LeaveFieldON
, (sAPDU
){0x80, 0xae, RefControl
, 0x00, CDOLLen
, CDOL
}, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
504 int EMVGenerateChallenge(EMVCommandChannel channel
, bool LeaveFieldON
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
505 int res
= EMVExchange(channel
, LeaveFieldON
, (sAPDU
){0x00, 0x84, 0x00, 0x00, 0x00, NULL
}, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
507 PrintAndLogEx(INFO
, ">>> trying to reissue command withouth Le...");
508 res
= EMVExchangeEx(channel
, false, LeaveFieldON
, (sAPDU
){0x00, 0x84, 0x00, 0x00, 0x00, NULL
}, false, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
513 int EMVInternalAuthenticate(EMVCommandChannel channel
, bool LeaveFieldON
, uint8_t *DDOL
, size_t DDOLLen
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
514 return EMVExchange(channel
, LeaveFieldON
, (sAPDU
){0x00, 0x88, 0x00, 0x00, DDOLLen
, DDOL
}, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
517 int MSCComputeCryptoChecksum(EMVCommandChannel channel
, bool LeaveFieldON
, uint8_t *UDOL
, uint8_t UDOLlen
, uint8_t *Result
, size_t MaxResultLen
, size_t *ResultLen
, uint16_t *sw
, struct tlvdb
*tlv
) {
518 return EMVExchange(channel
, LeaveFieldON
, (sAPDU
){0x80, 0x2a, 0x8e, 0x80, UDOLlen
, UDOL
}, Result
, MaxResultLen
, ResultLen
, sw
, tlv
);
522 static struct emv_pk
*get_ca_pk(struct tlvdb
*db
) {
523 const struct tlv
*df_tlv
= tlvdb_get(db
, 0x84, NULL
);
524 const struct tlv
*caidx_tlv
= tlvdb_get(db
, 0x8f, NULL
);
526 if (!df_tlv
|| !caidx_tlv
|| df_tlv
->len
< 6 || caidx_tlv
->len
!= 1)
529 PrintAndLog("CA public key index 0x%0x", caidx_tlv
->value
[0]);
530 return emv_pk_get_ca_pk(df_tlv
->value
, caidx_tlv
->value
[0]);
533 int trSDA(struct tlvdb
*tlv
) {
535 struct emv_pk
*pk
= get_ca_pk(tlv
);
537 PrintAndLog("ERROR: Key not found. Exit.");
541 struct emv_pk
*issuer_pk
= emv_pki_recover_issuer_cert(pk
, tlv
);
544 PrintAndLog("ERROR: Issuer certificate not found. Exit.");
548 PrintAndLog("Issuer PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx",
555 issuer_pk
->serial
[0],
556 issuer_pk
->serial
[1],
560 const struct tlv
*sda_tlv
= tlvdb_get(tlv
, 0x21, NULL
);
561 if (!sda_tlv
|| sda_tlv
->len
< 1) {
562 emv_pk_free(issuer_pk
);
564 PrintAndLog("ERROR: Can't find input list for Offline Data Authentication. Exit.");
568 struct tlvdb
*dac_db
= emv_pki_recover_dac(issuer_pk
, tlv
, sda_tlv
);
570 const struct tlv
*dac_tlv
= tlvdb_get(dac_db
, 0x9f45, NULL
);
571 PrintAndLog("SDA verified OK. (%02hhx:%02hhx)\n", dac_tlv
->value
[0], dac_tlv
->value
[1]);
572 tlvdb_add(tlv
, dac_db
);
574 emv_pk_free(issuer_pk
);
576 PrintAndLog("ERROR: SSAD verify error");
580 emv_pk_free(issuer_pk
);
585 static const unsigned char default_ddol_value
[] = {0x9f, 0x37, 0x04};
586 static struct tlv default_ddol_tlv
= {.tag
= 0x9f49, .len
= 3, .value
= default_ddol_value
};
588 int trDDA(EMVCommandChannel channel
, bool decodeTLV
, struct tlvdb
*tlv
) {
589 uint8_t buf
[APDU_RES_LEN
] = {0};
593 struct emv_pk
*pk
= get_ca_pk(tlv
);
595 PrintAndLog("ERROR: Key not found. Exit.");
599 const struct tlv
*sda_tlv
= tlvdb_get(tlv
, 0x21, NULL
);
600 if (!sda_tlv
|| sda_tlv
->len
< 1) {
602 PrintAndLog("ERROR: Can't find input list for Offline Data Authentication. Exit.");
606 struct emv_pk
*issuer_pk
= emv_pki_recover_issuer_cert(pk
, tlv
);
609 PrintAndLog("ERROR: Issuer certificate not found. Exit.");
612 printf("Issuer PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx\n",
619 issuer_pk
->serial
[0],
620 issuer_pk
->serial
[1],
624 struct emv_pk
*icc_pk
= emv_pki_recover_icc_cert(issuer_pk
, tlv
, sda_tlv
);
627 emv_pk_free(issuer_pk
);
628 PrintAndLog("ERROR: ICC setrificate not found. Exit.");
631 printf("ICC PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx\n",
643 struct emv_pk
*icc_pe_pk
= emv_pki_recover_icc_pe_cert(issuer_pk
, tlv
);
645 PrintAndLog("WARNING: ICC PE PK recover error. ");
647 printf("ICC PE PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx\n",
654 icc_pe_pk
->serial
[0],
655 icc_pe_pk
->serial
[1],
660 // 9F4B: Signed Dynamic Application Data
661 const struct tlv
*sdad_tlv
= tlvdb_get(tlv
, 0x9f4b, NULL
);
662 // DDA with internal authenticate OR fDDA with filled 0x9F4B tag (GPO result)
663 // EMV kernel3 v2.4, contactless book C-3, C.1., page 147
665 PrintAndLog("\n* * Got Signed Dynamic Application Data (9F4B) form GPO. Maybe fDDA...");
667 const struct tlvdb
*atc_db
= emv_pki_recover_atc_ex(icc_pk
, tlv
, true);
669 PrintAndLog("ERROR: Can't recover IDN (ICC Dynamic Number)");
671 emv_pk_free(issuer_pk
);
676 // 9f36 Application Transaction Counter (ATC)
677 const struct tlv
*atc_tlv
= tlvdb_get(atc_db
, 0x9f36, NULL
);
679 PrintAndLog("\nATC (Application Transaction Counter) [%zu] %s", atc_tlv
->len
, sprint_hex_inrow(atc_tlv
->value
, atc_tlv
->len
));
681 const struct tlv
*core_atc_tlv
= tlvdb_get(tlv
, 0x9f36, NULL
);
682 if(tlv_equal(core_atc_tlv
, atc_tlv
)) {
683 PrintAndLog("ATC check OK.");
684 PrintAndLog("fDDA (fast DDA) verified OK.");
686 PrintAndLog("ERROR: fDDA verified, but ATC in the certificate and ATC in the record not the same.");
689 PrintAndLog("\nERROR: fDDA (fast DDA) verify error");
691 emv_pk_free(issuer_pk
);
696 struct tlvdb
*dac_db
= emv_pki_recover_dac(issuer_pk
, tlv
, sda_tlv
);
698 const struct tlv
*dac_tlv
= tlvdb_get(dac_db
, 0x9f45, NULL
);
699 printf("SDA verified OK. (%02hhx:%02hhx)\n", dac_tlv
->value
[0], dac_tlv
->value
[1]);
700 tlvdb_add(tlv
, dac_db
);
702 PrintAndLog("ERROR: SSAD verify error");
704 emv_pk_free(issuer_pk
);
709 PrintAndLog("\n* Calc DDOL");
710 const struct tlv
*ddol_tlv
= tlvdb_get(tlv
, 0x9f49, NULL
);
712 ddol_tlv
= &default_ddol_tlv
;
713 PrintAndLog("DDOL [9f49] not found. Using default DDOL");
716 struct tlv
*ddol_data_tlv
= dol_process(ddol_tlv
, tlv
, 0);
717 if (!ddol_data_tlv
) {
718 PrintAndLog("ERROR: Can't create DDOL TLV");
720 emv_pk_free(issuer_pk
);
725 PrintAndLog("DDOL data[%d]: %s", ddol_data_tlv
->len
, sprint_hex(ddol_data_tlv
->value
, ddol_data_tlv
->len
));
727 PrintAndLog("\n* Internal Authenticate");
728 int res
= EMVInternalAuthenticate(channel
, true, (uint8_t *)ddol_data_tlv
->value
, ddol_data_tlv
->len
, buf
, sizeof(buf
), &len
, &sw
, NULL
);
730 PrintAndLogEx(WARNING
, "Internal Authenticate error(%d): %4x. Exit...", res
, sw
);
733 emv_pk_free(issuer_pk
);
738 struct tlvdb
*dda_db
= NULL
;
739 if (buf
[0] == 0x80) {
741 PrintAndLog("ERROR: Internal Authenticate format1 parsing error. length=%d", len
);
743 // 9f4b Signed Dynamic Application Data
744 dda_db
= tlvdb_fixed(0x9f4b, len
- 2, buf
+ 2);
745 tlvdb_add(tlv
, dda_db
);
747 PrintAndLog("* * Decode response format 1:");
748 TLVPrintFromTLV(dda_db
);
752 dda_db
= tlvdb_parse_multi(buf
, len
);
754 PrintAndLog("ERROR: Can't parse Internal Authenticate result as TLV");
757 emv_pk_free(issuer_pk
);
761 tlvdb_add(tlv
, dda_db
);
764 TLVPrintFromTLV(dda_db
);
767 struct tlvdb
*idn_db
= emv_pki_recover_idn_ex(icc_pk
, dda_db
, ddol_data_tlv
, true);
770 PrintAndLog("ERROR: Can't recover IDN (ICC Dynamic Number)");
773 emv_pk_free(issuer_pk
);
779 // 9f4c ICC Dynamic Number
780 const struct tlv
*idn_tlv
= tlvdb_get(idn_db
, 0x9f4c, NULL
);
782 PrintAndLog("\nIDN (ICC Dynamic Number) [%zu] %s", idn_tlv
->len
, sprint_hex_inrow(idn_tlv
->value
, idn_tlv
->len
));
783 PrintAndLog("DDA verified OK.");
784 tlvdb_add(tlv
, idn_db
);
787 PrintAndLog("\nERROR: DDA verify error");
791 emv_pk_free(issuer_pk
);
798 emv_pk_free(issuer_pk
);
803 int trCDA(struct tlvdb
*tlv
, struct tlvdb
*ac_tlv
, struct tlv
*pdol_data_tlv
, struct tlv
*ac_data_tlv
) {
805 struct emv_pk
*pk
= get_ca_pk(tlv
);
807 PrintAndLog("ERROR: Key not found. Exit.");
811 const struct tlv
*sda_tlv
= tlvdb_get(tlv
, 0x21, NULL
);
812 if (!sda_tlv
|| sda_tlv
->len
< 1) {
813 PrintAndLog("ERROR: Can't find input list for Offline Data Authentication. Exit.");
818 struct emv_pk
*issuer_pk
= emv_pki_recover_issuer_cert(pk
, tlv
);
820 PrintAndLog("ERROR: Issuer certificate not found. Exit.");
824 printf("Issuer PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx\n",
831 issuer_pk
->serial
[0],
832 issuer_pk
->serial
[1],
836 struct emv_pk
*icc_pk
= emv_pki_recover_icc_cert(issuer_pk
, tlv
, sda_tlv
);
838 PrintAndLog("ERROR: ICC setrificate not found. Exit.");
840 emv_pk_free(issuer_pk
);
843 printf("ICC PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx\n",
855 struct tlvdb
*dac_db
= emv_pki_recover_dac(issuer_pk
, tlv
, sda_tlv
);
857 const struct tlv
*dac_tlv
= tlvdb_get(dac_db
, 0x9f45, NULL
);
858 PrintAndLog("SSAD verified OK. (%02hhx:%02hhx)", dac_tlv
->value
[0], dac_tlv
->value
[1]);
859 tlvdb_add(tlv
, dac_db
);
861 PrintAndLog("ERROR: SSAD verify error");
863 emv_pk_free(issuer_pk
);
868 PrintAndLog("\n* * Check Signed Dynamic Application Data (SDAD)");
869 struct tlvdb
*idn_db
= emv_pki_perform_cda_ex(icc_pk
, tlv
, ac_tlv
,
870 pdol_data_tlv
, // pdol
871 ac_data_tlv
, // cdol1
875 const struct tlv
*idn_tlv
= tlvdb_get(idn_db
, 0x9f4c, NULL
);
876 PrintAndLog("\nIDN (ICC Dynamic Number) [%zu] %s", idn_tlv
->len
, sprint_hex_inrow(idn_tlv
->value
, idn_tlv
->len
));
877 PrintAndLog("CDA verified OK.");
878 tlvdb_add(tlv
, idn_db
);
880 PrintAndLog("\nERROR: CDA verify error");
884 emv_pk_free(issuer_pk
);
889 int RecoveryCertificates(struct tlvdb
*tlvRoot
, json_t
*root
) {
891 struct emv_pk
*pk
= get_ca_pk(tlvRoot
);
893 PrintAndLog("ERROR: Key not found. Exit.");
897 struct emv_pk
*issuer_pk
= emv_pki_recover_issuer_cert(pk
, tlvRoot
);
900 PrintAndLog("WARNING: Issuer certificate not found. Exit.");
903 PrintAndLog("Issuer PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx",
910 issuer_pk
->serial
[0],
911 issuer_pk
->serial
[1],
915 JsonSaveBufAsHex(root
, "$.ApplicationData.RID", issuer_pk
->rid
, 5);
917 char *issuer_pk_c
= emv_pk_dump_pk(issuer_pk
);
918 JsonSaveStr(root
, "$.ApplicationData.IssuerPublicKeyDec", issuer_pk_c
);
919 JsonSaveBufAsHex(root
, "$.ApplicationData.IssuerPublicKeyModulus", issuer_pk
->modulus
, issuer_pk
->mlen
);
922 struct emv_pk
*icc_pk
= emv_pki_recover_icc_cert(issuer_pk
, tlvRoot
, NULL
);
925 emv_pk_free(issuer_pk
);
926 PrintAndLog("WARNING: ICC certificate not found. Exit.");
929 printf("ICC PK recovered. RID %02hhx:%02hhx:%02hhx:%02hhx:%02hhx IDX %02hhx CSN %02hhx:%02hhx:%02hhx\n",
941 char *icc_pk_c
= emv_pk_dump_pk(icc_pk
);
942 JsonSaveStr(root
, "$.ApplicationData.ICCPublicKeyDec", icc_pk_c
);
943 JsonSaveBufAsHex(root
, "$.ApplicationData.ICCPublicKeyModulus", icc_pk
->modulus
, icc_pk
->mlen
);