diff --git a/docs/changes.txt b/docs/changes.txt index 3c606b47a..786338db9 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -36,6 +36,7 @@ - Increased the maximum size of edata2 in Kerberos 5 TGS-REP etype 23 - Make the masks parser more restrictive by rejecting a single '?' at the end of the mask (use ?? instead) - Removed duplicate words in the dictionary file example.dict +- Override --quiet and show final status screen in case --status is used - Work around some AMD OpenCL runtime segmentation faults - Work around some padding issues with host compilers and OpenCL JiT on 32 and 64-bit systems diff --git a/src/main.c b/src/main.c index 3d0dfe2e2..b4ff127bd 100644 --- a/src/main.c +++ b/src/main.c @@ -306,6 +306,10 @@ static void main_cracker_finished (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MAYB { status_display (hashcat_ctx); } + else if (user_options->status == true) + { + status_display (hashcat_ctx); + } else { if (user_options->quiet == false)