1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 22:58:30 +00:00

Fix bug in -m 6800 where not all hashes are checked if they have the same salt

This commit is contained in:
Lars Sætaberget 2022-10-21 14:48:22 +02:00
parent f63ff289f7
commit b30e9ec4da

View File

@ -163,6 +163,9 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
const bool parse_rc = generic_salt_decode (hashconfig, salt_pos, salt_len, (u8 *) salt->salt_buf, (int *) &salt->salt_len);
// Add first word of ciphertext to salt struct to ensure correct grouping in the kernel _comp function
salt->salt_buf[63] = digest[0];
if (parse_rc == false) return (PARSER_SALT_LENGTH);
return (PARSER_OK);