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:
parent
1a076f5c53
commit
d382400805
@ -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
|
||||
|
||||
##
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user