mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 19:59:34 +08:00
Fix smartcard commands visibility
This commit is contained in:
parent
6b2677c154
commit
a79c792d9f
1 changed files with 7 additions and 7 deletions
|
@ -1119,13 +1119,13 @@ static int CmdSmartBruteforceSFI(const char *Cmd) {
|
|||
|
||||
static command_t CommandTable[] = {
|
||||
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
||||
{"list", CmdSmartList, IfPm3Present, "List ISO 7816 history"},
|
||||
{"info", CmdSmartInfo, AlwaysAvailable, "Tag information"},
|
||||
{"reader", CmdSmartReader, AlwaysAvailable, "Act like an IS07816 reader"},
|
||||
{"raw", CmdSmartRaw, AlwaysAvailable, "Send raw hex data to tag"},
|
||||
{"upgrade", CmdSmartUpgrade, AlwaysAvailable, "Upgrade sim module firmware"},
|
||||
{"setclock", CmdSmartSetClock, AlwaysAvailable, "Set clock speed"},
|
||||
{"brute", CmdSmartBruteforceSFI, AlwaysAvailable, "Bruteforce SFI"},
|
||||
{"list", CmdSmartList, IfPm3Smartcard, "List ISO 7816 history"},
|
||||
{"info", CmdSmartInfo, IfPm3Smartcard, "Tag information"},
|
||||
{"reader", CmdSmartReader, IfPm3Smartcard, "Act like an IS07816 reader"},
|
||||
{"raw", CmdSmartRaw, IfPm3Smartcard, "Send raw hex data to tag"},
|
||||
{"upgrade", CmdSmartUpgrade, IfPm3Smartcard, "Upgrade sim module firmware"},
|
||||
{"setclock", CmdSmartSetClock, IfPm3Smartcard, "Set clock speed"},
|
||||
{"brute", CmdSmartBruteforceSFI, IfPm3Smartcard, "Bruteforce SFI"},
|
||||
{NULL, NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue