From 47724d0a1b5f98dfc4b402f5964a3bae9f41f743 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 15 Sep 2019 01:13:52 +0200 Subject: [PATCH] textual --- client/cmdlfsecurakey.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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} };