1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Fixed the ciphertext max length in Ansible Vault parser

This commit is contained in:
Michael Sprecher 2018-08-16 12:13:22 +02:00
parent fb2de3cb7c
commit e975612f82
No known key found for this signature in database
GPG Key ID: BB773AC8D5836ABD
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@
- Fixed a invalid scalar datatype return value in hc_bytealign() where it should be a vector datatype return value
- Fixed a problem with attack mode -a 7 together with stdout mode where the mask bytes were missing in the output
- Fixed a problem with tab completion where --self-test-disable did incorrecly expect a further parameter/value
- Fixed the ciphertext max length in Ansible Vault parser
* changes v4.2.0 -> v4.2.1

View File

@ -17824,7 +17824,7 @@ int ansible_vault_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MA
token.sep[4] = '*';
token.len_min[4] = 32;
token.len_max[4] = 8192;
token.len_max[4] = 32768;
token.attr[4] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_HEX;