mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-17 01:52:06 +00:00
Override --quiet and show final status screen in case --status is used
Fixes #1720
This commit is contained in:
parent
4359f61f84
commit
adb1686b9a
@ -36,6 +36,7 @@
|
|||||||
- Increased the maximum size of edata2 in Kerberos 5 TGS-REP etype 23
|
- 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)
|
- 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
|
- 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 AMD OpenCL runtime segmentation faults
|
||||||
- Work around some padding issues with host compilers and OpenCL JiT on 32 and 64-bit systems
|
- Work around some padding issues with host compilers and OpenCL JiT on 32 and 64-bit systems
|
||||||
|
|
||||||
|
@ -306,6 +306,10 @@ static void main_cracker_finished (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, MAYB
|
|||||||
{
|
{
|
||||||
status_display (hashcat_ctx);
|
status_display (hashcat_ctx);
|
||||||
}
|
}
|
||||||
|
else if (user_options->status == true)
|
||||||
|
{
|
||||||
|
status_display (hashcat_ctx);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (user_options->quiet == false)
|
if (user_options->quiet == false)
|
||||||
|
Loading…
Reference in New Issue
Block a user