mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
Add ATS of other MFUL Gen2
This commit is contained in:
parent
22938f15dd
commit
9f33e52ae0
1 changed files with 5 additions and 0 deletions
|
@ -2298,6 +2298,11 @@ void MifareCIdent(void) {
|
|||
isGen = MAGIC_GEN_2;
|
||||
goto OUT;
|
||||
}
|
||||
// test for some other Ultralight magic gen2
|
||||
if (memcmp(buf, "\x85\x00\x00\xA0\x0A\x00\x0A\xB0\x00\x00\x00\x00\x00\x00\x00\x00\x18\x4D", 18) == 0) {
|
||||
isGen = MAGIC_GEN_2;
|
||||
goto OUT;
|
||||
}
|
||||
};
|
||||
|
||||
OUT:
|
||||
|
|
Loading…
Reference in a new issue