1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-24 13:22:13 +00:00

Fix module_hash_binary_parse() in -m 14600 module

This commit is contained in:
jsteube 2019-02-20 20:35:28 +01:00
parent ae360d8dca
commit 13b99d5825

View File

@ -235,10 +235,7 @@ int module_hash_binary_parse (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE
const int parser_status = module_hash_decode (hashconfig, hash->digest, hash->salt, hash->esalt, hash->hook_salt, hash->hash_info, hashes->hashfile, strlen (hashes->hashfile)); const int parser_status = module_hash_decode (hashconfig, hash->digest, hash->salt, hash->esalt, hash->hook_salt, hash->hash_info, hashes->hashfile, strlen (hashes->hashfile));
if (parser_status != PARSER_OK) if (parser_status != PARSER_OK) continue;
{
if (parser_status != PARSER_LUKS_KEY_DISABLED) continue;
}
hashes_cnt++; hashes_cnt++;
} }