mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
--verbose now also prints the keys
This commit is contained in:
parent
1c07e9d1bb
commit
9d1e75a9b5
1 changed files with 15 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue