Fixed the tokenizer configuration in postgres hash parser

pull/1717/head
Jens Steube 6 years ago
parent f327f42ce8
commit 6afe989bed

@ -33,6 +33,7 @@
- Fixed detection of unique ESSID in WPA-PMKID-* parser
- Fixed speed/delay problem when quitting while the outfile folder is being scanned
- Fixed a race condition in status view leading to out-of-bound reads
- Fixed the tokenizer configuration in postgres hash parser
* changes v4.2.0 -> v4.2.1

@ -4870,7 +4870,7 @@ int postgresql_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE
token.attr[0] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_HEX;
token.len_min[1] = 32;
token.len_min[1] = 0;
token.len_max[1] = 32;
token.attr[1] = TOKEN_ATTR_VERIFY_LENGTH;

Loading…
Cancel
Save