1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-31 19:01:05 +00:00

Show Recovered.New status entry also if no potfile entry matched a hashlist entry

This commit is contained in:
jsteube 2022-08-16 13:55:42 +00:00
parent 05eff0d683
commit 8668694daf

View File

@ -2410,6 +2410,14 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
hashcat_status->salts_done,
hashcat_status->salts_cnt,
hashcat_status->salts_percent);
event_log_info (hashcat_ctx,
"Recovered.New....: %u/%u (%.2f%%) Digests, %u/%u (%.2f%%) Salts",
hashcat_status->digests_done,
hashcat_status->digests_cnt,
hashcat_status->digests_percent,
hashcat_status->salts_done,
hashcat_status->salts_cnt,
hashcat_status->salts_percent);
}
else
{
@ -2418,6 +2426,11 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
hashcat_status->digests_done,
hashcat_status->digests_cnt,
hashcat_status->digests_percent);
event_log_info (hashcat_ctx,
"Recovered.New....: %u/%u (%.2f%%) Digests",
hashcat_status->digests_done,
hashcat_status->digests_cnt,
hashcat_status->digests_percent);
}
}
if (hashcat_status->digests_cnt > 1000)