mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-26 09:03:11 +08:00
make style
This commit is contained in:
parent
cf8256979d
commit
8760068a03
2 changed files with 2 additions and 1 deletions
|
@ -4021,7 +4021,7 @@ static int CmdHF14ADesBruteApps(const char *Cmd) {
|
|||
PrintAndLogEx(INFO, "Enumerating through all AIDs manually, this will take a while!");
|
||||
for (uint32_t id = idStart; id <= idEnd && id >= idStart; id += idIncrement) {
|
||||
if (kbd_enter_pressed()) break;
|
||||
int progress = ((id - idStart)*100) / ((idEnd - idStart));
|
||||
int progress = ((id - idStart) * 100) / ((idEnd - idStart));
|
||||
PrintAndLogEx(INPLACE, "Progress: %d %%, current AID: %06X", progress, id);
|
||||
uint8_t appId[3] = {0};
|
||||
htole24(id, appId);
|
||||
|
|
|
@ -433,6 +433,7 @@ Check column "offline" for their availability.
|
|||
|`hf mfdes getuid `|N |`Get random uid`
|
||||
|`hf mfdes info `|N |`Tag information`
|
||||
|`hf mfdes list `|Y |`List DESFire (ISO 14443A) history`
|
||||
|`hf mfdes bruteaid `|N |`Recover AIDs by bruteforce`
|
||||
|`hf mfdes createaid `|N |`Create Application ID`
|
||||
|`hf mfdes deleteaid `|N |`Delete Application ID`
|
||||
|`hf mfdes selectaid `|N |`Select Application ID`
|
||||
|
|
Loading…
Reference in a new issue