mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
helptext
This commit is contained in:
parent
cb22004635
commit
cd9b26af17
1 changed files with 5 additions and 3 deletions
|
@ -4490,8 +4490,10 @@ static int CmdHF14AMfMAD(const char *Cmd) {
|
||||||
CLIParserContext *ctx;
|
CLIParserContext *ctx;
|
||||||
CLIParserInit(&ctx, "hf mf mad",
|
CLIParserInit(&ctx, "hf mf mad",
|
||||||
"Checks and prints Mifare Application Directory (MAD)",
|
"Checks and prints Mifare Application Directory (MAD)",
|
||||||
"Usage:\n\thf mf mad -> shows MAD if exists\n"
|
"Usage:\n"
|
||||||
"\thf mf mad -a 03e1 -k ffffffffffff -b -> shows NDEF data if exists. read card with custom key and key B\n");
|
"\thf mf mad -> shows MAD if exists\n"
|
||||||
|
"\thf mf mad -a 03e1 -k ffffffffffff -b -> shows NDEF data if exists. read card with custom key and key B\n"
|
||||||
|
"\thf mf mad -a 0004 -k ffffffffffff --dch -> decode CardHolder information\n");
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
|
@ -4518,7 +4520,7 @@ static int CmdHF14AMfMAD(const char *Cmd) {
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
if (aidlen != 2 && !decodeholder && keylen > 0) {
|
if (aidlen != 2 && !decodeholder && keylen > 0) {
|
||||||
PrintAndLogEx(WARNING, "do not need a key without aid/decode card holder");
|
PrintAndLogEx(WARNING, "Using default MAD keys instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t sector0[16 * 4] = {0};
|
uint8_t sector0[16 * 4] = {0};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue