From e1902ffa9668e0dc51d3c32a0648efdf0308cc87 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 18 Jan 2023 03:47:14 +0100 Subject: [PATCH] The Hack ID by Unicorn Team EM4100 emulator uses a VD/ID format in decimal --- client/src/cmdlfem410x.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/cmdlfem410x.c b/client/src/cmdlfem410x.c index ea502fc07..29ad61bc9 100644 --- a/client/src/cmdlfem410x.c +++ b/client/src/cmdlfem410x.c @@ -229,6 +229,8 @@ void printEM410x(uint32_t hi, uint64_t id, bool verbose, int type) { uint8_t sebury2 = (id >> 16) & 0x7F; uint32_t sebury3 = id & 0x7FFFFF; PrintAndLogEx(SUCCESS, "Pattern Sebury : %d %d %d [0x%X 0x%X 0x%X]", sebury1, sebury2, sebury3, sebury1, sebury2, sebury3); + PrintAndLogEx(SUCCESS, "VD / ID : %03" PRIu64 " / %010" PRIu64, (id >> 32LL) & 0xFFFF, (id & 0xFFFFFFFF)); + PrintAndLogEx(INFO, "------------------------------------------------"); } }