diff --git a/client/src/mifare/desfirecore.c b/client/src/mifare/desfirecore.c index 8e557ab2a..a1e57f2a3 100644 --- a/client/src/mifare/desfirecore.c +++ b/client/src/mifare/desfirecore.c @@ -851,8 +851,12 @@ void DesfirePrintMADAID(uint32_t appid, bool verbose) { appid, short_aid >> 8, nxp_cluster_to_text(short_aid >> 8)); - if (verbose) - MADDFDecodeAndPrint(short_aid); + if (verbose) { + if (appid == 0xffffff) + PrintAndLogEx(SUCCESS, " Card issuer information application"); + else + MADDFDecodeAndPrint(short_aid); + } } void DesfirePrintAIDFunctions(uint32_t appid) {