mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-02 10:51:16 +00:00
Fixed display screen to show input queue when using custom charset or rules
This commit is contained in:
parent
b0ff13b496
commit
8a47c32537
@ -26,6 +26,7 @@
|
|||||||
- Fixed infinite loop when using --loopback in case all hashes have been cracked
|
- Fixed infinite loop when using --loopback in case all hashes have been cracked
|
||||||
- Fixed kernel loops in --increment mode leading to slower performance
|
- Fixed kernel loops in --increment mode leading to slower performance
|
||||||
- Fixed mask length check in hybrid attack-modes: Do not include hash-mode dependant mask length checks
|
- Fixed mask length check in hybrid attack-modes: Do not include hash-mode dependant mask length checks
|
||||||
|
- Fixed display screen to show input queue when using custom charset or rules
|
||||||
|
|
||||||
##
|
##
|
||||||
## Technical
|
## Technical
|
||||||
|
@ -899,6 +899,26 @@ void status_display (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case INPUT_MODE_STRAIGHT_FILE_RULES_FILE:
|
||||||
|
|
||||||
|
event_log_info (hashcat_ctx,
|
||||||
|
"Input.Queue......: %d/%d (%.02f%%)",
|
||||||
|
hashcat_status->input_base_offset,
|
||||||
|
hashcat_status->input_base_count,
|
||||||
|
hashcat_status->input_base_percent);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case INPUT_MODE_STRAIGHT_FILE_RULES_GEN:
|
||||||
|
|
||||||
|
event_log_info (hashcat_ctx,
|
||||||
|
"Input.Queue......: %d/%d (%.02f%%)",
|
||||||
|
hashcat_status->input_base_offset,
|
||||||
|
hashcat_status->input_base_count,
|
||||||
|
hashcat_status->input_base_percent);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
case INPUT_MODE_MASK:
|
case INPUT_MODE_MASK:
|
||||||
|
|
||||||
event_log_info (hashcat_ctx,
|
event_log_info (hashcat_ctx,
|
||||||
|
Loading…
Reference in New Issue
Block a user