1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-14 03:39:09 +00:00

Merge pull request #128 from philsmd/pr-set-iter-for-dcc2

set default iteration count for -m 2100 = DCC2 to 10240
This commit is contained in:
Jens Steube 2016-01-14 09:02:13 +01:00
commit 24b5aa6226
2 changed files with 12 additions and 1 deletions

View File

@ -95,6 +95,10 @@ Type.: Bug
File.: Kernel
Desc.: Fix a bug in the implementation of GOST R 34.11-94, zero length passwords were not cracked
Type.: Bug
File.: Host
Desc.: Forced default iteration count for -m 2100 = DCC2 hashes to 10240
* changes v2.00 -> v2.01:
Type.: Bug

View File

@ -9868,7 +9868,14 @@ int dcc2_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf)
salt_t *salt = hash_buf->salt;
salt->salt_iter = atoi (iter_pos) - 1;
uint iter = atoi (iter_pos);
if (iter < 1)
{
iter = ROUNDS_DCC2;
}
salt->salt_iter = iter - 1;
char *salt_pos = strchr (iter_pos, '#');