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

pull/3489/head
Lars Sætaberget 2 years ago
parent f63ff289f7
commit b30e9ec4da

@ -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);

Loading…
Cancel
Save