chg: 'lf pyramid clone' - add verification

This commit is contained in:
iceman1001 2019-09-15 01:33:54 +02:00
commit 06809babbb
3 changed files with 31 additions and 20 deletions

View file

@ -111,12 +111,12 @@ static int CmdSecurakeyRead(const char *Cmd) {
return CmdSecurakeyDemod(Cmd);
}
static int CmdSecuraClone(const char *Cmd) {
static int CmdSecurakeyClone(const char *Cmd) {
PrintAndLogEx(INFO, " To be implemented, feel free to contribute!");
return PM3_SUCCESS;
}
static int CmdSecureSim(const char *Cmd) {
static int CmdSecurakeySim(const char *Cmd) {
PrintAndLogEx(INFO, " To be implemented, feel free to contribute!");
return PM3_SUCCESS;
}
@ -126,7 +126,7 @@ static command_t CommandTable[] = {
{"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"},
{"sim", CmdSecurakeySim, IfPm3Lf, "simulate Securakey tag"},
{NULL, NULL, NULL, NULL}
};