diff --git a/client/src/cmdhfmfu.c b/client/src/cmdhfmfu.c index ad614e897c..ad3cdea1b8 100644 --- a/client/src/cmdhfmfu.c +++ b/client/src/cmdhfmfu.c @@ -2678,6 +2678,11 @@ static int CmdHF14AMfUInfo(const char *Cmd) { PrintAndLogEx(INFO, "\nTag appears to be locked, try using a key to get more info"); PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`hf mfu pwdgen -r`") " to get see known pwd gen algo suggestions"); } + + if (tagtype & (MFU_TT_MAGIC_1A || MFU_TT_MAGIC_1B || MFU_TT_MAGIC_2)) { + PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`script run hf_mfu_setuid -h`") " to set UID"); + } + PrintAndLogEx(NORMAL, ""); return PM3_SUCCESS; }