From d7a3d178198aa1ee995b541b166ccc9aef1d66bc Mon Sep 17 00:00:00 2001 From: LW Date: Mon, 23 Dec 2019 06:40:15 -0800 Subject: [PATCH] More column tweaks for 'N keys left' message --- client/mifare/mifarehost.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/mifare/mifarehost.c b/client/mifare/mifarehost.c index cbccc599..3a961ef7 100644 --- a/client/mifare/mifarehost.c +++ b/client/mifare/mifarehost.c @@ -479,7 +479,7 @@ int mfnested(uint8_t blockNo, uint8_t keyType, uint8_t *key, uint8_t trgBlockNo, brute_force_per_second = ((float)i) / (((float)(msclock() - start_time)) / 1000.0); brute_force_time = ((float)(statelists[0].len - i)) / brute_force_per_second; next_print_time = msclock() + 10 * 1000; - PrintAndLog("| %6d keys left | %5.1f keys/sec | worst case %6.1f seconds remaining |", statelists[0].len - i, brute_force_per_second, brute_force_time); + PrintAndLog(" %8d keys left | %5.1f keys/sec | worst case %6.1f seconds remaining", statelists[0].len - i, brute_force_per_second, brute_force_time); } if ((i+max_keys) >= statelists[0].len) @@ -506,7 +506,7 @@ int mfnested(uint8_t blockNo, uint8_t keyType, uint8_t *key, uint8_t trgBlockNo, } } - if (!isOK && statelists[0].len != 1) + if (isOK == 0 && statelists[0].len != 1) PrintAndLog("Key found in %0.2f seconds after checking %d keys\n", ((float)(msclock() - start_time)) / 1000.0, i+max_keys); free(statelists[0].head.slhead);