mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-24 07:28:10 +00:00
minor: do not use UINT_MAX as upper bound for the salt_len
This commit is contained in:
parent
4b85144cc2
commit
54915e4d7b
@ -11635,7 +11635,7 @@ int pbkdf2_md5_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE
|
|||||||
|
|
||||||
salt_len = parse_and_store_salt (salt_buf_ptr, salt_pos, salt_len, hashconfig);
|
salt_len = parse_and_store_salt (salt_buf_ptr, salt_pos, salt_len, hashconfig);
|
||||||
|
|
||||||
if (salt_len == UINT_MAX) return (PARSER_SALT_LENGTH);
|
if (salt_len > (64 - 4)) return (PARSER_SALT_LENGTH);
|
||||||
|
|
||||||
salt_buf_ptr[salt_len + 3] = 0x01;
|
salt_buf_ptr[salt_len + 3] = 0x01;
|
||||||
salt_buf_ptr[salt_len + 4] = 0x80;
|
salt_buf_ptr[salt_len + 4] = 0x80;
|
||||||
@ -11717,7 +11717,7 @@ int pbkdf2_sha1_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYB
|
|||||||
|
|
||||||
salt_len = parse_and_store_salt (salt_buf_ptr, salt_pos, salt_len, hashconfig);
|
salt_len = parse_and_store_salt (salt_buf_ptr, salt_pos, salt_len, hashconfig);
|
||||||
|
|
||||||
if (salt_len == UINT_MAX) return (PARSER_SALT_LENGTH);
|
if (salt_len > (64 - 4)) return (PARSER_SALT_LENGTH);
|
||||||
|
|
||||||
salt_buf_ptr[salt_len + 3] = 0x01;
|
salt_buf_ptr[salt_len + 3] = 0x01;
|
||||||
salt_buf_ptr[salt_len + 4] = 0x80;
|
salt_buf_ptr[salt_len + 4] = 0x80;
|
||||||
|
Loading…
Reference in New Issue
Block a user