--verbose now also prints the keys

This commit is contained in:
iceman1001 2022-03-27 10:48:18 +02:00
commit 9d1e75a9b5

View file

@ -4181,6 +4181,10 @@ static int CmdHF14AMfEView(const char *Cmd) {
}
mf_print_blocks(block_cnt, dump, verbose);
if (verbose) {
mf_print_keys(block_cnt, dump);
}
free(dump);
return PM3_SUCCESS;
}
@ -5067,6 +5071,11 @@ static int CmdHF14AMfCView(const char *Cmd) {
PrintAndLogEx(NORMAL, "");
mf_print_blocks(block_cnt, dump, verbose);
if (verbose) {
mf_print_keys(block_cnt, dump);
}
free(dump);
return PM3_SUCCESS;
}
@ -6309,6 +6318,11 @@ static int CmdHF14AGen4View(const char *Cmd) {
PrintAndLogEx(NORMAL, "");
mf_print_blocks(block_cnt, dump, verbose);
if (verbose) {
mf_print_keys(block_cnt, dump);
}
free(dump);
return PM3_SUCCESS;
}