mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
CHG: updated some helptext, moved commands
This commit is contained in:
parent
3384999c83
commit
a4dd4eb5b5
1 changed files with 7 additions and 7 deletions
|
@ -17,13 +17,13 @@ static int CmdHelp(const char *Cmd);
|
|||
|
||||
int usage_lf_visa2k_clone(void){
|
||||
PrintAndLog("clone a Visa2000 tag to a T55x7 tag.");
|
||||
PrintAndLog("Usage: lf visa2k clone [h] <card ID> <Q5>");
|
||||
PrintAndLog("Usage: lf visa2000 clone [h] <card ID> <Q5>");
|
||||
PrintAndLog("Options:");
|
||||
PrintAndLog(" h : This help");
|
||||
PrintAndLog(" <card ID> : Visa2k card ID");
|
||||
PrintAndLog(" <Q5> : specify write to Q5 (t5555 instead of t55x7)");
|
||||
PrintAndLog("");
|
||||
PrintAndLog("Sample: lf visa2k clone 112233");
|
||||
PrintAndLog("Sample: lf visa2000 clone 112233");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -31,12 +31,12 @@ int usage_lf_visa2k_sim(void) {
|
|||
PrintAndLog("Enables simulation of visa2k card with specified card number.");
|
||||
PrintAndLog("Simulation runs until the button is pressed or another USB command is issued.");
|
||||
PrintAndLog("");
|
||||
PrintAndLog("Usage: lf visa2k sim [h] <card ID>");
|
||||
PrintAndLog("Usage: lf visa2000 sim [h] <card ID>");
|
||||
PrintAndLog("Options:");
|
||||
PrintAndLog(" h : This help");
|
||||
PrintAndLog(" <card ID> : Visa2k card ID");
|
||||
PrintAndLog("");
|
||||
PrintAndLog("Sample: lf visa2k sim 112233");
|
||||
PrintAndLog("Sample: lf visa2000 sim 112233");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -228,10 +228,10 @@ int CmdVisa2kSim(const char *Cmd) {
|
|||
|
||||
static command_t CommandTable[] = {
|
||||
{"help", CmdHelp, 1, "This help"},
|
||||
{"demod", CmdVisa2kDemod, 1, "Demodulate an VISA2000 tag from the GraphBuffer"},
|
||||
{"read", CmdVisa2kRead, 0, "Attempt to read and extract tag data from the antenna"},
|
||||
{"sim", CmdVisa2kSim, 0, "Visa2000 tag simulator"},
|
||||
{"demod", CmdVisa2kDemod, 1, "demodulate an VISA2000 tag from the GraphBuffer"},
|
||||
{"read", CmdVisa2kRead, 0, "attempt to read and extract tag data from the antenna"},
|
||||
{"clone", CmdVisa2kClone, 0, "clone Visa2000 to t55x7"},
|
||||
{"sim", CmdVisa2kSim, 0, "simulate Visa2000 tag"},
|
||||
{NULL, NULL, 0, NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue