mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 05:43:23 -07:00
small teaser)
This commit is contained in:
parent
ffb269196f
commit
8df4180f39
1 changed files with 24 additions and 0 deletions
|
@ -341,6 +341,26 @@ int CmdHFMFPCommitPerso(const char *cmd) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int CmdHFMFPAuth(const char *cmd) {
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdHFMFPRdbl(const char *cmd) {
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdHFMFPRdsc(const char *cmd) {
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int CmdHFMFPWrbl(const char *cmd) {
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static command_t CommandTable[] =
|
static command_t CommandTable[] =
|
||||||
{
|
{
|
||||||
{"help", CmdHelp, 1, "This help"},
|
{"help", CmdHelp, 1, "This help"},
|
||||||
|
@ -348,6 +368,10 @@ static command_t CommandTable[] =
|
||||||
{"wrp", CmdHFMFPWritePerso, 0, "Write Perso command"},
|
{"wrp", CmdHFMFPWritePerso, 0, "Write Perso command"},
|
||||||
{"initp", CmdHFMFPInitPerso, 0, "Fills all the card's keys"},
|
{"initp", CmdHFMFPInitPerso, 0, "Fills all the card's keys"},
|
||||||
{"commitp", CmdHFMFPCommitPerso, 0, "Move card to SL1 or SL3 mode"},
|
{"commitp", CmdHFMFPCommitPerso, 0, "Move card to SL1 or SL3 mode"},
|
||||||
|
// {"auth", CmdHFMFPAuth, 0, "Authentication in iso1443-4"},
|
||||||
|
// {"rdbl", CmdHFMFPRdbl, 0, "Read blocks"},
|
||||||
|
// {"rdsc", CmdHFMFPRdsc, 0, "Read sectors"},
|
||||||
|
// {"wrbl", CmdHFMFPWrbl, 0, "Write blocks"},
|
||||||
{NULL, NULL, 0, NULL}
|
{NULL, NULL, 0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue