From 74da62269b6442da5989286d3c56cf77c6784991 Mon Sep 17 00:00:00 2001 From: LW Date: Wed, 18 Dec 2019 02:29:39 -0800 Subject: [PATCH] remove 'not vulnerable to nested' error message --- client/cmdhfmf.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/cmdhfmf.c b/client/cmdhfmf.c index 81b4816d..9ecf99fb 100644 --- a/client/cmdhfmf.c +++ b/client/cmdhfmf.c @@ -712,7 +712,6 @@ int CmdHF14AMfNested(const char *Cmd) case -1 : PrintAndLog("Error: No response from Proxmark.\n"); break; case -2 : PrintAndLog("Button pressed. Aborted.\n"); break; case -3 : PrintAndLog("Tag isn't vulnerable to Nested Attack (random numbers are not predictable).\n"); break; - case -4 : key64 = bytes_to_num(keyBlock, 4); PrintAndLog("Tag isn't vulnerable to Nested Attack (tag nonce:%08X is static).\n", key64); break; default : PrintAndLog("Unknown Error.\n"); } return 2; @@ -798,7 +797,6 @@ int CmdHF14AMfNested(const char *Cmd) case -1 : PrintAndLog("Error: No response from Proxmark.\n"); break; case -2 : PrintAndLog("Button pressed. Aborted.\n"); break; case -3 : PrintAndLog("Tag isn't vulnerable to Nested Attack (random numbers are not predictable).\n"); break; - case -4 : key64 = bytes_to_num(keyBlock, 4); PrintAndLog("Tag isn't vulnerable to Nested Attack (tag nonce:%08X is static).\n", key64); break; default : PrintAndLog("Unknown Error.\n"); } free(e_sector);