From 3f794596894132c7c3eae44fc5123581f3817e4a Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 20 Mar 2025 20:47:40 +0100 Subject: [PATCH] hf mf info, added a hint for static encrypted nonce --- client/src/cmdhfmf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 0f23b7922..a49f46a46 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -9860,7 +9860,6 @@ static int CmdHF14AMfInfo(const char *Cmd) { PrintAndLogEx(SUCCESS, "Static nonce... " _YELLOW_("yes")); } - if (res == NONCE_NORMAL) { // not static res = detect_classic_prng(); @@ -9903,6 +9902,10 @@ static int CmdHF14AMfInfo(const char *Cmd) { } } + if (res == NONCE_STATIC_ENC) { + PrintAndLogEx(HINT, "try `" _YELLOW_("script run fm11rf08s_recovery.py") "`"); + } + if (setDeviceDebugLevel(dbg_curr, false) != PM3_SUCCESS) { return PM3_EFAILED; }