From 7905d79a28787c5bbea0125c1070d7a41c0132bd Mon Sep 17 00:00:00 2001 From: jsteube Date: Fri, 16 Jun 2017 23:17:56 +0200 Subject: [PATCH] Limit -m 2100 password length to 27 because if utf16 --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index 2bc8e8b27..a31b5f672 100644 --- a/src/interface.c +++ b/src/interface.c @@ -24393,7 +24393,7 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx) break; case 1800: hashconfig->pw_max = 16; break; - case 2100: hashconfig->pw_max = 32; + case 2100: hashconfig->pw_max = 27; break; case 3000: hashconfig->pw_max = 7; break;