This commit is contained in:
iceman1001 2019-09-15 01:13:52 +02:00
parent 61098c7716
commit 47724d0a1b

View file

@ -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}
};