check if selected hash-mode cannot crack multiple hashes with the same salt only if salt_type is SALT_TYPE_GENERIC or SALT_TYPE_EMBEDDED

pull/3728/head
Gabriele Gristina 1 year ago
parent 5780430176
commit 3f7b48218f

@ -2266,6 +2266,8 @@ int hashes_init_stage4 (hashcat_ctx_t *hashcat_ctx)
// https://github.com/hashcat/hashcat/issues/3641
if (hashconfig->salt_type == SALT_TYPE_GENERIC || hashconfig->salt_type == SALT_TYPE_EMBEDDED)
{
if ((hashconfig->opts_type & OPTS_TYPE_DEEP_COMP_KERNEL) == 0)
{
if (hashconfig->attack_exec == ATTACK_EXEC_OUTSIDE_KERNEL)
@ -2278,6 +2280,7 @@ int hashes_init_stage4 (hashcat_ctx_t *hashcat_ctx)
}
}
}
}
// test iteration count in association attack

Loading…
Cancel
Save