mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Replace WITH_LF by dynamic detection in client
This commit is contained in:
parent
3605809073
commit
32bb9511ec
24 changed files with 108 additions and 108 deletions
|
@ -492,11 +492,11 @@ static int CmdAWIDBrute(const char *Cmd) {
|
|||
|
||||
static command_t CommandTable[] = {
|
||||
{"help", CmdHelp, AlwaysAvailable, "this help"},
|
||||
{"demod", CmdAWIDDemod, IfPm3Present, "demodulate an AWID FSK tag from the GraphBuffer"},
|
||||
{"read", CmdAWIDRead, IfPm3Present, "attempt to read and extract tag data"},
|
||||
{"clone", CmdAWIDClone, IfPm3Present, "clone AWID to T55x7"},
|
||||
{"sim", CmdAWIDSim, IfPm3Present, "simulate AWID tag"},
|
||||
{"brute", CmdAWIDBrute, IfPm3Present, "Bruteforce card number against reader"},
|
||||
{"demod", CmdAWIDDemod, AlwaysAvailable, "demodulate an AWID FSK tag from the GraphBuffer"},
|
||||
{"read", CmdAWIDRead, IfPm3Lf, "attempt to read and extract tag data"},
|
||||
{"clone", CmdAWIDClone, IfPm3Lf, "clone AWID to T55x7"},
|
||||
{"sim", CmdAWIDSim, IfPm3Lf, "simulate AWID tag"},
|
||||
{"brute", CmdAWIDBrute, IfPm3Lf, "Bruteforce card number against reader"},
|
||||
{NULL, NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue