1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-10 15:51:10 +00:00

Added support to use --debug-mode in attack-mode 9 (Association Attack)

This commit is contained in:
Jens Steube 2021-12-12 10:18:05 +01:00
parent 8b9fa631ce
commit acc592e963
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,11 @@
* changes v6.2.5 -> v6.2.x
##
## Features
##
- Added support to use --debug-mode in attack-mode 9 (Association Attack)
##
## Bugs
##

View File

@ -1057,7 +1057,7 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
if (user_options->debug_mode > 0)
{
if (user_options->attack_mode != ATTACK_MODE_STRAIGHT)
if ((user_options->attack_mode != ATTACK_MODE_STRAIGHT) && (user_options->attack_mode != ATTACK_MODE_ASSOCIATION))
{
event_log_error (hashcat_ctx, "Parameter --debug-mode option is only allowed in attack mode 0 (straight).");