1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-23 13:02:06 +00:00

Limit -m 2100 password length to 27 because if utf16

This commit is contained in:
jsteube 2017-06-16 23:17:56 +02:00
parent c9caca2b0c
commit 7905d79a28

View File

@ -24393,7 +24393,7 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
break; break;
case 1800: hashconfig->pw_max = 16; case 1800: hashconfig->pw_max = 16;
break; break;
case 2100: hashconfig->pw_max = 32; case 2100: hashconfig->pw_max = 27;
break; break;
case 3000: hashconfig->pw_max = 7; case 3000: hashconfig->pw_max = 7;
break; break;