mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
add lf securakey
still unknown - checksum and how FC relates to printed FC/Code also removed noralsy extra ST check (i was tired...)
This commit is contained in:
parent
199c74a47f
commit
c3caf0409c
5 changed files with 177 additions and 10 deletions
|
@ -42,6 +42,7 @@
|
|||
#include "cmdlfnexwatch.h"//for nexwatch menu
|
||||
#include "cmdlfjablotron.h" //for jablotron menu
|
||||
#include "cmdlfnoralsy.h"// for noralsy menu
|
||||
#include "cmdlfsecurakey.h"//for securakey menu
|
||||
|
||||
bool g_lf_threshold_set = false;
|
||||
static int CmdHelp(const char *Cmd);
|
||||
|
@ -1003,6 +1004,12 @@ int CmdLFfind(const char *Cmd)
|
|||
return CheckChipType(cmdp);
|
||||
}
|
||||
|
||||
ans=CmdSecurakeyDemod("");
|
||||
if (ans>0) {
|
||||
PrintAndLog("\nValid Securakey ID Found!");
|
||||
return CheckChipType(cmdp);
|
||||
}
|
||||
|
||||
ans=CmdVikingDemod("");
|
||||
if (ans>0) {
|
||||
PrintAndLog("\nValid Viking ID Found!");
|
||||
|
@ -1074,6 +1081,7 @@ static command_t CommandTable[] =
|
|||
{"presco", CmdLFPresco, 1, "{ Presco RFIDs... }"},
|
||||
{"pcf7931", CmdLFPCF7931, 1, "{ PCF7931 CHIPs... }"},
|
||||
{"pyramid", CmdLFPyramid, 1, "{ Farpointe/Pyramid RFIDs... }"},
|
||||
{"securakey", CmdLFSecurakey, 1, "{ Securakey RFIDs... }"},
|
||||
{"t55xx", CmdLFT55XX, 1, "{ T55xx CHIPs... }"},
|
||||
{"ti", CmdLFTI, 1, "{ TI CHIPs... }"},
|
||||
{"viking", CmdLFViking, 1, "{ Viking RFIDs... }"},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue