mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
FIX: call the wrong usage_hf_mfu method.
CHG: minor help text changes.
This commit is contained in:
parent
fff69a1e34
commit
f605970307
1 changed files with 3 additions and 2 deletions
|
@ -928,7 +928,7 @@ int CmdHF14AMfUWrBl(const char *Cmd){
|
||||||
if(errors) return usage_hf_mfu_wrbl();
|
if(errors) return usage_hf_mfu_wrbl();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( blockNo == -1 ) return usage_hf_mfu_rdbl();
|
if ( blockNo == -1 ) return usage_hf_mfu_wrbl();
|
||||||
|
|
||||||
// Swap endianness
|
// Swap endianness
|
||||||
if (swapEndian && hasAuthKey) keyPtr = SwapEndian64(authenticationkey, 16, 8);
|
if (swapEndian && hasAuthKey) keyPtr = SwapEndian64(authenticationkey, 16, 8);
|
||||||
|
@ -1134,7 +1134,8 @@ int usage_hf_mfu_rdbl(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int usage_hf_mfu_wrbl(void) {
|
int usage_hf_mfu_wrbl(void) {
|
||||||
PrintAndLog("Usage: hf mfu wrbl <block number> <block data (8 hex symbols)> [w]");
|
PrintAndLog("Write a block. It autodetects card type.\n");
|
||||||
|
PrintAndLog("Usage: hf mfu wrbl b <block number> d <data> k <key> l\n");
|
||||||
PrintAndLog(" Options:");
|
PrintAndLog(" Options:");
|
||||||
PrintAndLog(" h : this help");
|
PrintAndLog(" h : this help");
|
||||||
PrintAndLog(" b <no> : block to write");
|
PrintAndLog(" b <no> : block to write");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue