1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00

Status: Do not show Recovered/Time when cracking < 1000 hashes

This commit is contained in:
jsteube 2016-11-30 11:12:30 +01:00
parent 60bc53311c
commit 813911788a
2 changed files with 7 additions and 3 deletions

View File

@ -163,6 +163,7 @@ The CLI (hashcat.bin or hashcat.exe) works as before but from a technical perspe
- Rules: Refactored macros to real functions
- Status: Added Input.Queue.Base and Input.Queue.Mod to help the user better understand this concept
- Status: Do not wait for the progress mutex to read and store speed timer
- Status: Do not show Recovered/Time when cracking < 1000 hashes
- Tests: Removed rules_test/ subproject: Would require total rewrite but not used in a long time
- Threads: Replaced all calls to getpwuid() with getpwuid_r() to ensure thread safety
- Threads: Replaced all calls to gmtime() with gmtime_r() to ensure thread safety

View File

@ -963,9 +963,12 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
hashcat_status->salts_cnt,
hashcat_status->salts_percent);
event_log_info (hashcat_ctx,
"Recovered/Time...: %s",
hashcat_status->cpt);
if (hashcat_status->digests_cnt > 1000)
{
event_log_info (hashcat_ctx,
"Recovered/Time...: %s",
hashcat_status->cpt);
}
switch (hashcat_status->progress_mode)
{