mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
hf 14a info - identify HID SEOS. ATQA: 00 01, SAK 20
This commit is contained in:
parent
3a051b3266
commit
31e1db1bc2
1 changed files with 13 additions and 6 deletions
|
@ -1422,7 +1422,8 @@ typedef enum {
|
||||||
MTDESFIRE = 4,
|
MTDESFIRE = 4,
|
||||||
MTPLUS = 8,
|
MTPLUS = 8,
|
||||||
MTULTRALIGHT = 16,
|
MTULTRALIGHT = 16,
|
||||||
MTOTHER = 32
|
HID_SEOS = 32,
|
||||||
|
MTOTHER = 64
|
||||||
} nxp_mifare_type_t;
|
} nxp_mifare_type_t;
|
||||||
|
|
||||||
// Based on NXP AN10833 Rev 3.6 and NXP AN10834 Rev 4.1
|
// Based on NXP AN10833 Rev 3.6 and NXP AN10834 Rev 4.1
|
||||||
|
@ -1525,12 +1526,18 @@ static int detect_nxp_card(uint8_t sak, uint16_t atqa, uint64_t select_status) {
|
||||||
type |= MTPLUS;
|
type |= MTPLUS;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
if ((atqa & 0x0001) == 0x0001) {
|
||||||
|
printTag("HID SEOS (smartmx / javacard)");
|
||||||
|
type |= HID_SEOS;
|
||||||
|
} else {
|
||||||
printTag("MIFARE Plus EV1 2K/4K in SL3");
|
printTag("MIFARE Plus EV1 2K/4K in SL3");
|
||||||
printTag("MIFARE Plus S 2K/4K in SL3");
|
printTag("MIFARE Plus S 2K/4K in SL3");
|
||||||
printTag("MIFARE Plus X 2K/4K in SL3");
|
printTag("MIFARE Plus X 2K/4K in SL3");
|
||||||
printTag("MIFARE Plus SE 1K");
|
printTag("MIFARE Plus SE 1K");
|
||||||
type |= MTPLUS;
|
type |= MTPLUS;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
printTag("NTAG 4xx");
|
printTag("NTAG 4xx");
|
||||||
type |= MTDESFIRE;
|
type |= MTDESFIRE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue