1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-05 22:32:35 +00:00

Mode 17230: Remove lower bound restriction for hash count

This commit is contained in:
Dávid Bolvanský 2023-08-27 17:08:17 +02:00
parent 20682e55b1
commit 847ed73bfc

View File

@ -220,7 +220,6 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
// check here that the hash_count is valid for the attack type
if (pkzip->hash_count > 8) return PARSER_HASH_VALUE;
if (pkzip->hash_count < 3) return PARSER_HASH_VALUE;
p = strtok_r (NULL, "*", &saveptr);
if (p == NULL) return PARSER_HASH_LENGTH;