mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
hf {14a,mf} sim: v is for verbose
This commit is contained in:
parent
dfdbfa0702
commit
32beef538e
2 changed files with 12 additions and 12 deletions
|
@ -143,7 +143,7 @@ int usage_hf_14a_sim(void) {
|
||||||
// PrintAndLog(" u : 4, 7 or 10 byte UID");
|
// PrintAndLog(" u : 4, 7 or 10 byte UID");
|
||||||
PrintAndLog(" u : 4, 7 byte UID");
|
PrintAndLog(" u : 4, 7 byte UID");
|
||||||
PrintAndLog(" x : (Optional) performs the 'reader attack', nr/ar attack against a legitimate reader");
|
PrintAndLog(" x : (Optional) performs the 'reader attack', nr/ar attack against a legitimate reader");
|
||||||
PrintAndLog(" m : (Optional) Show maths used for cracking reader. Useful for debugging.");
|
PrintAndLog(" v : (Optional) show maths used for cracking reader. Useful for debugging.");
|
||||||
PrintAndLog("\n sample : hf 14a sim t 1 u 11223344 x");
|
PrintAndLog("\n sample : hf 14a sim t 1 u 11223344 x");
|
||||||
PrintAndLog(" : hf 14a sim t 1 u 11223344");
|
PrintAndLog(" : hf 14a sim t 1 u 11223344");
|
||||||
PrintAndLog(" : hf 14a sim t 1 u 11223344556677");
|
PrintAndLog(" : hf 14a sim t 1 u 11223344556677");
|
||||||
|
@ -455,11 +455,6 @@ int CmdHF14ASim(const char *Cmd) {
|
||||||
case 'h':
|
case 'h':
|
||||||
case 'H':
|
case 'H':
|
||||||
return usage_hf_14a_sim();
|
return usage_hf_14a_sim();
|
||||||
case 'm':
|
|
||||||
case 'M':
|
|
||||||
showMaths = true;
|
|
||||||
cmdp++;
|
|
||||||
break;
|
|
||||||
case 't':
|
case 't':
|
||||||
case 'T':
|
case 'T':
|
||||||
// Retrieve the tag type
|
// Retrieve the tag type
|
||||||
|
@ -484,6 +479,11 @@ int CmdHF14ASim(const char *Cmd) {
|
||||||
}
|
}
|
||||||
cmdp += 2;
|
cmdp += 2;
|
||||||
break;
|
break;
|
||||||
|
case 'v':
|
||||||
|
case 'V':
|
||||||
|
showMaths = true;
|
||||||
|
cmdp++;
|
||||||
|
break;
|
||||||
case 'x':
|
case 'x':
|
||||||
case 'X':
|
case 'X':
|
||||||
flags |= FLAG_NR_AR_ATTACK;
|
flags |= FLAG_NR_AR_ATTACK;
|
||||||
|
|
|
@ -32,7 +32,7 @@ int usage_hf14_mf1ksim(void){
|
||||||
PrintAndLog(" i (Optional) Interactive, means that console will not be returned until simulation finishes or is aborted");
|
PrintAndLog(" i (Optional) Interactive, means that console will not be returned until simulation finishes or is aborted");
|
||||||
PrintAndLog(" x (Optional) Crack, performs the 'reader attack', nr/ar attack against a legitimate reader, fishes out the key(s)");
|
PrintAndLog(" x (Optional) Crack, performs the 'reader attack', nr/ar attack against a legitimate reader, fishes out the key(s)");
|
||||||
PrintAndLog(" e (Optional) Fill simulator keys from what we crack");
|
PrintAndLog(" e (Optional) Fill simulator keys from what we crack");
|
||||||
PrintAndLog(" m (Optional) Show maths used for cracking reader. Useful for debugging.");
|
PrintAndLog(" v (Optional) Show maths used for cracking reader. Useful for debugging.");
|
||||||
PrintAndLog("samples:");
|
PrintAndLog("samples:");
|
||||||
PrintAndLog(" hf mf sim u 0a0a0a0a");
|
PrintAndLog(" hf mf sim u 0a0a0a0a");
|
||||||
PrintAndLog(" hf mf sim u 11223344556677");
|
PrintAndLog(" hf mf sim u 11223344556677");
|
||||||
|
@ -1473,11 +1473,6 @@ int CmdHF14AMf1kSim(const char *Cmd) {
|
||||||
flags |= FLAG_INTERACTIVE;
|
flags |= FLAG_INTERACTIVE;
|
||||||
cmdp++;
|
cmdp++;
|
||||||
break;
|
break;
|
||||||
case 'm':
|
|
||||||
case 'M':
|
|
||||||
showMaths = true;
|
|
||||||
cmdp++;
|
|
||||||
break;
|
|
||||||
case 'n':
|
case 'n':
|
||||||
case 'N':
|
case 'N':
|
||||||
exitAfterNReads = param_get8(Cmd, cmdp+1);
|
exitAfterNReads = param_get8(Cmd, cmdp+1);
|
||||||
|
@ -1494,6 +1489,11 @@ int CmdHF14AMf1kSim(const char *Cmd) {
|
||||||
}
|
}
|
||||||
cmdp +=2;
|
cmdp +=2;
|
||||||
break;
|
break;
|
||||||
|
case 'v':
|
||||||
|
case 'V':
|
||||||
|
showMaths = true;
|
||||||
|
cmdp++;
|
||||||
|
break;
|
||||||
case 'x':
|
case 'x':
|
||||||
case 'X':
|
case 'X':
|
||||||
flags |= FLAG_NR_AR_ATTACK;
|
flags |= FLAG_NR_AR_ATTACK;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue