From 5584410bbcdf225664ab4773d657defd94978653 Mon Sep 17 00:00:00 2001 From: spandox2 <31641448+spandox2@users.noreply.github.com> Date: Mon, 11 Sep 2023 11:56:45 -0400 Subject: [PATCH] Update cmdhfmf.c Problem: "hf mf autopwn" gave no response if no card was detected, leaving user confused. Solution: Change a DEBUG message to an ERR and give a hint that the card may be poorly positioned. Signed-off-by: spandox2 <31641448+spandox2@users.noreply.github.com> --- client/src/cmdhfmf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 46d24f602..4ae141cad 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -2508,7 +2508,7 @@ static int CmdHF14AMfAutoPWN(const char *Cmd) { uint64_t select_status = resp.oldarg[0]; if (select_status == 0) { - PrintAndLogEx(ERR, "iso14443a card select failed (Hint: check card possition)"); + PrintAndLogEx(ERR, "iso14443a card select failed (Hint: check card position)"); return PM3_ECARDEXCHANGE; }