mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Fixed config cards segmentation fault
Fixed segmentation fault error from commit 6264b1df9a
when trying to generate config cards.
This commit is contained in:
parent
ffc185cc9e
commit
dfa5d0c341
1 changed files with 3 additions and 1 deletions
|
@ -4921,7 +4921,9 @@ static int CmdHFiClassConfigCard(const char *Cmd) {
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
arg_int0(NULL, "ci", "<dec>", "use config slot at index"),
|
arg_int0(NULL, "ci", "<dec>", "use config slot at index"),
|
||||||
arg_int0(NULL, "ki", "<dec>", "Key index to select key from memory 'hf iclass managekeys'"),
|
arg_int0(NULL, "ki", "<dec>", "Card Key - index to select key from memory 'hf iclass managekeys'"),
|
||||||
|
arg_int0(NULL, "krki", "<dec>", "Elite Keyroll Key - index to select key from memory 'hf iclass managekeys'"),
|
||||||
|
arg_lit0(NULL, "elite", "Use elite key for the the Card Key ki"),
|
||||||
arg_lit0("g", NULL, "generate card dump file"),
|
arg_lit0("g", NULL, "generate card dump file"),
|
||||||
arg_lit0("l", NULL, "load available cards"),
|
arg_lit0("l", NULL, "load available cards"),
|
||||||
arg_lit0("p", NULL, "print available cards"),
|
arg_lit0("p", NULL, "print available cards"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue