mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-15 17:53:01 -07:00
clean up em410x output
This commit is contained in:
parent
90677ad99b
commit
c7d169ec02
1 changed files with 22 additions and 25 deletions
|
@ -280,14 +280,13 @@ void printEM410x(uint32_t hi, uint64_t id)
|
||||||
}
|
}
|
||||||
if (hi){
|
if (hi){
|
||||||
//output 88 bit em id
|
//output 88 bit em id
|
||||||
PrintAndLog("EM TAG ID : %06x%016llx", hi, id);
|
PrintAndLog("\nEM TAG ID : %06x%016llx", hi, id);
|
||||||
} else{
|
} else{
|
||||||
//output 40 bit em id
|
//output 40 bit em id
|
||||||
PrintAndLog("EM TAG ID : %010llx", id);
|
PrintAndLog("\nEM TAG ID : %010llx", id);
|
||||||
PrintAndLog("Unique TAG ID : %010llx", id2lo);
|
PrintAndLog("Unique TAG ID : %010llx", id2lo);
|
||||||
PrintAndLog("");
|
PrintAndLog("\nPossible de-scramble patterns");
|
||||||
PrintAndLog("Possible de-scramble patterns");
|
PrintAndLog("HoneyWell IdentKey {");
|
||||||
PrintAndLog("HoneyWell IdentKey");
|
|
||||||
PrintAndLog("DEZ 8 : %08lld",id & 0xFFFFFF);
|
PrintAndLog("DEZ 8 : %08lld",id & 0xFFFFFF);
|
||||||
PrintAndLog("DEZ 10 : %010lld",id & 0xFFFFFFFF);
|
PrintAndLog("DEZ 10 : %010lld",id & 0xFFFFFFFF);
|
||||||
PrintAndLog("DEZ 5.5 : %05lld.%05lld",(id>>16LL) & 0xFFFF,(id & 0xFFFF));
|
PrintAndLog("DEZ 5.5 : %05lld.%05lld",(id>>16LL) & 0xFFFF,(id & 0xFFFF));
|
||||||
|
@ -296,7 +295,6 @@ void printEM410x(uint32_t hi, uint64_t id)
|
||||||
PrintAndLog("DEZ 3.5C : %03lld.%05lld",(id & 0xFF0000) >> 16,(id & 0xFFFF));
|
PrintAndLog("DEZ 3.5C : %03lld.%05lld",(id & 0xFF0000) >> 16,(id & 0xFFFF));
|
||||||
PrintAndLog("DEZ 14/IK2 : %014lld",id);
|
PrintAndLog("DEZ 14/IK2 : %014lld",id);
|
||||||
PrintAndLog("DEZ 15/IK3 : %015lld",id2lo);
|
PrintAndLog("DEZ 15/IK3 : %015lld",id2lo);
|
||||||
PrintAndLog("Other : %05lld_%03lld_%08lld",(id&0xFFFF),((id>>16LL) & 0xFF),(id & 0xFFFFFF));
|
|
||||||
PrintAndLog("DEZ 20/ZK : %02lld%02lld%02lld%02lld%02lld%02lld%02lld%02lld%02lld%02lld",
|
PrintAndLog("DEZ 20/ZK : %02lld%02lld%02lld%02lld%02lld%02lld%02lld%02lld%02lld%02lld",
|
||||||
(id2lo & 0xf000000000) >> 36,
|
(id2lo & 0xf000000000) >> 36,
|
||||||
(id2lo & 0x0f00000000) >> 32,
|
(id2lo & 0x0f00000000) >> 32,
|
||||||
|
@ -309,9 +307,8 @@ void printEM410x(uint32_t hi, uint64_t id)
|
||||||
(id2lo & 0x00000000f0) >> 4,
|
(id2lo & 0x00000000f0) >> 4,
|
||||||
(id2lo & 0x000000000f)
|
(id2lo & 0x000000000f)
|
||||||
);
|
);
|
||||||
|
|
||||||
PrintAndLog("");
|
|
||||||
uint64_t paxton = (((id>>32) << 24) | (id & 0xffffff)) + 0x143e00;
|
uint64_t paxton = (((id>>32) << 24) | (id & 0xffffff)) + 0x143e00;
|
||||||
|
PrintAndLog("}\nOther : %05lld_%03lld_%08lld",(id&0xFFFF),((id>>16LL) & 0xFF),(id & 0xFFFFFF));
|
||||||
PrintAndLog("Pattern Paxton : %0d", paxton);
|
PrintAndLog("Pattern Paxton : %0d", paxton);
|
||||||
|
|
||||||
uint32_t p1id = (id & 0xFFFFFF);
|
uint32_t p1id = (id & 0xFFFFFF);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue