hf mf info, added a hint for static encrypted nonce

This commit is contained in:
iceman1001 2025-03-20 20:47:40 +01:00
commit 3f79459689

View file

@ -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;
}