mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-05 03:50:17 +08:00
chg: 'hf mf fchk' - better handling when no keys was found.
This commit is contained in:
parent
7e601e5285
commit
cacba04959
1 changed files with 51 additions and 35 deletions
|
@ -1649,6 +1649,21 @@ out:
|
||||||
t1 = msclock() - t1;
|
t1 = msclock() - t1;
|
||||||
PrintAndLogEx(SUCCESS, "Time in checkkeys (fast): %.1fs\n", (float)(t1/1000.0));
|
PrintAndLogEx(SUCCESS, "Time in checkkeys (fast): %.1fs\n", (float)(t1/1000.0));
|
||||||
|
|
||||||
|
// check..
|
||||||
|
uint8_t found_keys = 0;
|
||||||
|
for (uint8_t i = 0; i < sectorsCnt; ++i) {
|
||||||
|
|
||||||
|
if ( e_sector[i].foundKey[0] )
|
||||||
|
found_keys++;
|
||||||
|
|
||||||
|
if ( e_sector[i].foundKey[1] )
|
||||||
|
found_keys++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( found_keys == 0 ) {
|
||||||
|
PrintAndLogEx(WARNING, "No keys found");
|
||||||
|
} else {
|
||||||
|
|
||||||
printKeyTable( sectorsCnt, e_sector );
|
printKeyTable( sectorsCnt, e_sector );
|
||||||
|
|
||||||
if (transferToEml) {
|
if (transferToEml) {
|
||||||
|
@ -1691,6 +1706,7 @@ out:
|
||||||
fclose(fkeys);
|
fclose(fkeys);
|
||||||
PrintAndLogEx(NORMAL, "Found keys have been dumped to %s --> 0xffffffffffff has been inserted for unknown keys.", fptr);
|
PrintAndLogEx(NORMAL, "Found keys have been dumped to %s --> 0xffffffffffff has been inserted for unknown keys.", fptr);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
free(keyBlock);
|
free(keyBlock);
|
||||||
free(e_sector);
|
free(e_sector);
|
||||||
|
|
Loading…
Add table
Reference in a new issue