mirror of
https://github.com/hashcat/hashcat.git
synced 2025-06-24 00:48:48 +00:00
Fix Input.Queue.Mod in hybrid mode
This commit is contained in:
parent
bc26cae58c
commit
cad9120a48
@ -631,13 +631,13 @@ int status_get_input_mod_count (const hashcat_ctx_t *hashcat_ctx)
|
|||||||
{
|
{
|
||||||
const mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
const mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
||||||
|
|
||||||
return mask_ctx->masks_cnt + 1;
|
return mask_ctx->masks_cnt;
|
||||||
}
|
}
|
||||||
else if (user_options->attack_mode == ATTACK_MODE_HYBRID2)
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID2)
|
||||||
{
|
{
|
||||||
const mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
const mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
||||||
|
|
||||||
return mask_ctx->masks_cnt + 1;
|
return mask_ctx->masks_cnt;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user