mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
some gen2 identification (@mceloff)
This commit is contained in:
parent
a1b37179ca
commit
007fc0893d
2 changed files with 13 additions and 0 deletions
|
@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Mikron JSC Russia Ultralight EV1 41 pages tag type support (@McEloff)
|
||||||
|
- Add test for Ultralight gen2 magic 'hf search' (@McEloff)
|
||||||
|
- Add test for Ultralight EV1 gen2 magic 'hf search' (@McEloff)
|
||||||
- Added `hf mf gen3*`magic gen 3 card operations (@McEloff)
|
- Added `hf mf gen3*`magic gen 3 card operations (@McEloff)
|
||||||
- Readded verichip command which seems missing (@iceman1001)
|
- Readded verichip command which seems missing (@iceman1001)
|
||||||
- Fix missing t55x7 config block detection (@iceman1001)
|
- Fix missing t55x7 config block detection (@iceman1001)
|
||||||
|
|
|
@ -2248,6 +2248,16 @@ void MifareCIdent(void) {
|
||||||
if (memcmp(buf, "\x0D\x78\x00\x71\x02\x88\x49\xA1\x30\x20\x15\x06\x08\x56\x3D", 15) == 0) {
|
if (memcmp(buf, "\x0D\x78\x00\x71\x02\x88\x49\xA1\x30\x20\x15\x06\x08\x56\x3D", 15) == 0) {
|
||||||
isGen = MAGIC_GEN_2;
|
isGen = MAGIC_GEN_2;
|
||||||
}
|
}
|
||||||
|
// test for Ultralight magic gen2
|
||||||
|
if (memcmp(buf, "\x0A\x78\x00\x81\x02\xDB\xA0\xC1\x19\x40\x2A\xB5", 12) == 0) {
|
||||||
|
isGen = MAGIC_GEN_2;
|
||||||
|
goto OUT;
|
||||||
|
}
|
||||||
|
// test for Ultralight EV1 magic gen2
|
||||||
|
if (memcmp(buf, "\x85\x00\x00\xA0\x00\x00\x0A\xC3\x00\x04\x03\x01\x01\x00\x0B\x03\x41\xDF", 18) == 0) {
|
||||||
|
isGen = MAGIC_GEN_2;
|
||||||
|
goto OUT;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
OUT:
|
OUT:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue