mirror of
https://github.com/hashcat/hashcat
synced 2024-11-24 14:27:14 +01:00
verify separator also with TOKEN_ATTR_FIXED_LENGTH
This commit is contained in:
parent
95bfc80378
commit
0d992a9ea3
53
src/shared.c
53
src/shared.c
@ -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,28 +1171,28 @@ 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;
|
||||
|
||||
if (token->attr[token_idx] & TOKEN_ATTR_SEPARATOR_FARTHEST)
|
||||
{
|
||||
next_pos = hc_strchr_last (token->buf[token_idx], len_left, token->sep[token_idx]);
|
||||
}
|
||||
else
|
||||
{
|
||||
next_pos = hc_strchr_next (token->buf[token_idx], len_left, token->sep[token_idx]);
|
||||
}
|
||||
|
||||
if (next_pos == NULL) return (PARSER_SEPARATOR_UNMATCHED);
|
||||
|
||||
const int len = next_pos - token->buf[token_idx];
|
||||
|
||||
token->len[token_idx] = len;
|
||||
|
||||
token->buf[token_idx + 1] = next_pos + 1; // +1 = separator
|
||||
|
||||
len_left -= len + 1; // +1 = separator
|
||||
}
|
||||
|
||||
const u8 *next_pos = NULL;
|
||||
|
||||
if (token->attr[token_idx] & TOKEN_ATTR_SEPARATOR_FARTHEST)
|
||||
{
|
||||
next_pos = hc_strchr_last (token->buf[token_idx], len_left, token->sep[token_idx]);
|
||||
}
|
||||
else
|
||||
{
|
||||
next_pos = hc_strchr_next (token->buf[token_idx], len_left, token->sep[token_idx]);
|
||||
}
|
||||
|
||||
if (next_pos == NULL) return (PARSER_SEPARATOR_UNMATCHED);
|
||||
|
||||
const int len = next_pos - token->buf[token_idx];
|
||||
|
||||
token->len[token_idx] = len;
|
||||
|
||||
token->buf[token_idx + 1] = next_pos + 1; // +1 = separator
|
||||
|
||||
len_left -= len + 1; // +1 = separator
|
||||
}
|
||||
|
||||
if (token->attr[token_idx] & TOKEN_ATTR_FIXED_LENGTH)
|
||||
|
Loading…
Reference in New Issue
Block a user