1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 15:18:16 +00:00

fixes #1450: allow longer crc32 data length field for -m 11600

This commit is contained in:
philsmd 2017-11-18 12:59:21 +01:00
parent 1a076f5c53
commit d382400805
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
##
- Fixed a hash parsing problem when using --show/--left together with hashes with long salts that require pure kernels
- Fixed a hash parsing problem for 7-Zip hashes: allow a longer crc32 data length field within the hash format
- Fixed the output of --show if $HEX[] passwords are present within the potfile
##

View File

@ -12226,7 +12226,7 @@ int seven_zip_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE_
if (is_compressed == true)
{
if (crc_len_len > 5) return (PARSER_SALT_VALUE);
if (crc_len_len > 6) return (PARSER_SALT_VALUE);
if (coder_attributes_len > 10) return (PARSER_SALT_VALUE);