1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-10 15:51:10 +00:00

verify separator also with TOKEN_ATTR_FIXED_LENGTH

This commit is contained in:
Gabriele Gristina 2023-04-23 01:41:00 +02:00
parent 95bfc80378
commit 0d992a9ea3

View File

@ -1153,17 +1153,6 @@ int input_tokenizer (const u8 *input_buf, const int input_len, hc_token_t *token
int len = token->len[token_idx];
if (len_left < len) return (PARSER_TOKEN_LENGTH);
token->buf[token_idx + 1] = token->buf[token_idx] + len;
len_left -= len;
if (token->sep[token_idx] != 0)
{
token->buf[token_idx + 1]++; // +1 = separator
len_left--; // -1 = separator
}
}
else
{
@ -1182,6 +1171,7 @@ int input_tokenizer (const u8 *input_buf, const int input_len, hc_token_t *token
len_left -= len + 1; // +1 = separator
}
}
}
const u8 *next_pos = NULL;
@ -1204,7 +1194,6 @@ int input_tokenizer (const u8 *input_buf, const int input_len, hc_token_t *token
len_left -= len + 1; // +1 = separator
}
}
if (token->attr[token_idx] & TOKEN_ATTR_FIXED_LENGTH)
{