mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
textual
This commit is contained in:
parent
61098c7716
commit
47724d0a1b
1 changed files with 12 additions and 2 deletions
|
@ -111,12 +111,22 @@ static int CmdSecurakeyRead(const char *Cmd) {
|
|||
return CmdSecurakeyDemod(Cmd);
|
||||
}
|
||||
|
||||
static int CmdSecuraClone(const char *Cmd) {
|
||||
PrintAndLogEx(INFO, " To be implemented, feel free to contribute!");
|
||||
return PM3_SUCCESS;
|
||||
}
|
||||
|
||||
static int CmdSecureSim(const char *Cmd) {
|
||||
PrintAndLogEx(INFO, " To be implemented, feel free to contribute!");
|
||||
return PM3_SUCCESS;
|
||||
}
|
||||
|
||||
static command_t CommandTable[] = {
|
||||
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
||||
{"demod", CmdSecurakeyDemod, AlwaysAvailable, "Demodulate an Securakey tag from the GraphBuffer"},
|
||||
{"read", CmdSecurakeyRead, IfPm3Lf, "Attempt to read and extract tag data from the antenna"},
|
||||
//{"clone", CmdSecurakeyClone, IfPm3Lf, "clone Securakey tag"},
|
||||
//{"sim", CmdSecurakeydSim, IfPm3Lf, "simulate Securakey tag"},
|
||||
{"clone", CmdSecurakeyClone, IfPm3Lf, "clone Securakey tag"},
|
||||
{"sim", CmdSecurakeydSim, IfPm3Lf, "simulate Securakey tag"},
|
||||
{NULL, NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue