mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
textual
This commit is contained in:
parent
df83c71470
commit
68a890d0e9
2 changed files with 4 additions and 6 deletions
|
@ -1317,10 +1317,8 @@ int detect_nxp_card(uint8_t sak, uint16_t atqa) {
|
||||||
printTag("MIFARE NTAG424DNA (Random ID feature)");
|
printTag("MIFARE NTAG424DNA (Random ID feature)");
|
||||||
type |= MTDESFIRE;
|
type |= MTDESFIRE;
|
||||||
} else {
|
} else {
|
||||||
printTag("MIFARE Plus 2K / Plus EV1 2K");
|
printTag("MIFARE Plus 2K/4K / Plus EV1 2K/4K");
|
||||||
printTag("MIFARE Plus 4K / Plus EV1 4K");
|
printTag("MIFARE Plus CL2 2K/4K / Plus CL2 EV1 2K/4K");
|
||||||
printTag("MIFARE Plus CL2 2K / Plus CL2 EV1 4K");
|
|
||||||
printTag("MIFARE Plus CL2 4K / Plus CL2 EV1 4K");
|
|
||||||
type |= MTPLUS;
|
type |= MTPLUS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -248,11 +248,11 @@ static int CmdHFMFPInfo(const char *Cmd) {
|
||||||
bool isPlus = false;
|
bool isPlus = false;
|
||||||
|
|
||||||
if (ATQA & 0x0004) {
|
if (ATQA & 0x0004) {
|
||||||
PrintAndLogEx(INFO, " ATQA: " _GREEN_("2K") "(%s UID)", (ATQA & 0x0040) ? "7" : "4");
|
PrintAndLogEx(INFO, " SIZE: " _GREEN_("2K") "(%s UID)", (ATQA & 0x0040) ? "7" : "4");
|
||||||
isPlus = true;
|
isPlus = true;
|
||||||
}
|
}
|
||||||
if (ATQA & 0x0002) {
|
if (ATQA & 0x0002) {
|
||||||
PrintAndLogEx(INFO, " ATQA: " _GREEN_("4K") "(%s UID)", (ATQA & 0x0040) ? "7" : "4");
|
PrintAndLogEx(INFO, " SIZE: " _GREEN_("4K") "(%s UID)", (ATQA & 0x0040) ? "7" : "4");
|
||||||
isPlus = true;
|
isPlus = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue