From d6a7ac7f440a76bf7c23a736ae61f7959334ab03 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 16 Feb 2024 17:38:56 +0100 Subject: [PATCH] loop the other keys --- client/src/cmdhfmfu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdhfmfu.c b/client/src/cmdhfmfu.c index 91919c829..4c49dec98 100644 --- a/client/src/cmdhfmfu.c +++ b/client/src/cmdhfmfu.c @@ -463,7 +463,7 @@ static int try_default_aes_keys(void) { PrintAndLogEx(INFO, ""); PrintAndLogEx(SUCCESS, "--- " _CYAN_("Known UL-AES keys")); -// for (uint8_t i = 0; i < ARRAYLEN(default_aes_keys); ++i) { + for (uint8_t i = 0; i < ARRAYLEN(default_aes_keys); ++i) { uint8_t *key = default_aes_keys[0]; for (uint8_t keyno = 0; keyno < 1; keyno++) { @@ -493,7 +493,7 @@ static int try_default_aes_keys(void) { res = PM3_SUCCESS; } } -// } + } // setDeviceDebugLevel(dbg_curr, false); return res;