From ea7f7909f4205edf2f289f1a2f31add76a21c433 Mon Sep 17 00:00:00 2001 From: realSnoopy <65402930+realSnoopy@users.noreply.github.com> Date: Wed, 19 May 2021 19:31:27 +0200 Subject: [PATCH] update in module_13400.c changed token.len_max[2] = 8; -> token.len_max[2] = 10; max lenght of an u32 is 10, use case: for manually user tuned keepass iterations above 99999999 see thread https://hashcat.net/forum/thread-10116-post-52700.html#pid52700 --- src/modules/module_13400.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module_13400.c b/src/modules/module_13400.c index e119c7639..10260eef1 100644 --- a/src/modules/module_13400.c +++ b/src/modules/module_13400.c @@ -128,7 +128,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE token.sep[2] = '*'; token.len_min[2] = 1; - token.len_max[2] = 8; + token.len_max[2] = 10; token.attr[2] = TOKEN_ATTR_VERIFY_LENGTH | TOKEN_ATTR_VERIFY_DIGIT;