mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-15 06:09:13 +08:00
Adding FM1216-137 detection
This commit is contained in:
parent
96f85d38bc
commit
4ec171c317
1 changed files with 5 additions and 0 deletions
|
@ -9719,6 +9719,11 @@ static int CmdHF14AMfInfo(const char *Cmd) {
|
|||
// Note: it also has ATS =
|
||||
// 10 78 80 90 02 20 90 00 00 00 00 00 + UID + CRC
|
||||
PrintAndLogEx(SUCCESS, "Fudan FM1208-10");
|
||||
} else if (fKeyType == MF_KEY_BD && memcmp(fkey, k08, sizeof(fkey)) == 0
|
||||
&& card.sak == 0x28 && memcmp(blockdata + 5, "\x28\x04\x00\x90\x53\xB7\x0C\x00\x00\x00\x00", 11) == 0) {
|
||||
// Note: it also has ATS =
|
||||
// 10 78 80 B0 02 20 90 00 00 00 00 00 + UID + CRC
|
||||
PrintAndLogEx(SUCCESS, "Fudan FM1216-137");
|
||||
} else if (fKeyType == MF_KEY_BD && memcmp(fkey, k08, sizeof(fkey)) == 0
|
||||
&& card.sak == 0x88 && memcmp(blockdata + 5, "\x88\x04\x00\x43", 4) == 0) {
|
||||
PrintAndLogEx(SUCCESS, "Infineon SLE66R35");
|
||||
|
|
Loading…
Reference in a new issue