1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Override --quiet and show final status screen in case --status is used

Fixes #1720
This commit is contained in:
Jens Steube 2018-10-21 11:50:44 +02:00
parent 4359f61f84
commit adb1686b9a
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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)