diff --git a/client/cmdlfsecurakey.c b/client/cmdlfsecurakey.c index 0ee22524f..c916478da 100644 --- a/client/cmdlfsecurakey.c +++ b/client/cmdlfsecurakey.c @@ -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} };