mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
fixed missing parameter
This commit is contained in:
parent
99b1093702
commit
6d10525c09
1 changed files with 2 additions and 0 deletions
|
@ -3890,9 +3890,11 @@ static int CmdHF14ADesEnumApplications(const char *Cmd) {
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
|
arg_lit0("b", "bruteforce", "Bruteforce AIDs if tag doesn't allow listing"),
|
||||||
arg_param_end
|
arg_param_end
|
||||||
};
|
};
|
||||||
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
||||||
|
bool bruteforce = arg_get_lit(ctx, 1);
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
DropFieldDesfire();
|
DropFieldDesfire();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue