1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-24 07:28:10 +00:00

Merge pull request #1097 from philsmd/master

max esalt_buf for sip fixed: we also need to append 0x80
This commit is contained in:
Jens Steube 2017-02-14 21:48:12 +01:00 committed by GitHub
commit 4b85144cc2

View File

@ -11122,6 +11122,8 @@ int sip_auth_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE_U
tmp_digest[3]);
}
if (esalt_len >= 152) return (PARSER_SALT_LENGTH);
// add 0x80 to esalt
esalt_buf_ptr[esalt_len] = 0x80;