1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-02 02:41:35 +00:00

fixes #2973: allow longer size fields for -m 11600 = 7-Zip

This commit is contained in:
philsmd 2021-09-10 17:47:09 +02:00 committed by GitHub
parent 3cfb5790f9
commit afa2330e6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -488,13 +488,13 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
token.sep[8] = '$';
token.len_min[8] = 1;
token.len_max[8] = 6;
token.len_max[8] = 8;
token.attr[8] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;
token.sep[9] = '$';
token.len_min[9] = 1;
token.len_max[9] = 6;
token.len_max[9] = 8;
token.attr[9] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;