From cb0d0132133cf5126903cc6d513fe62c5b806b2f Mon Sep 17 00:00:00 2001 From: Dima Zakharov Date: Sat, 25 Apr 2026 16:19:37 +0100 Subject: [PATCH] works for my fob --- client/src/cmdlfhid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdlfhid.c b/client/src/cmdlfhid.c index c0454b5f0..1b3b105b0 100644 --- a/client/src/cmdlfhid.c +++ b/client/src/cmdlfhid.c @@ -76,8 +76,8 @@ static int lf_hid_validate_packed_transport(const wiegand_input_t *input, const return PM3_SUCCESS; } - if (input->packed.Length > 37) { - PrintAndLogEx(ERR, "%s supports only packed credentials up to 37 bits", command_name); + if (input->packed.Length > 48) { + PrintAndLogEx(ERR, "%s supports only packed credentials up to 48 bits", command_name); return PM3_EINVARG; }