mirror of
https://github.com/hashcat/hashcat
synced 2024-12-09 02:13:10 +01:00
Allow keepass iteration count to be larger than 999999
This commit is contained in:
parent
adb1686b9a
commit
99709a32a3
@ -29,6 +29,7 @@
|
||||
- Added a tracker for salts, amplifier and iterations to the status screen
|
||||
- Added option --markov-hcstat2 to make it clear that the new hcstat2 format (compressed hcstat2gen output) must be used
|
||||
- Allow bitcoin master key lengths other than 96 bytes (but they must be always multiples of 16)
|
||||
- Allow keepass iteration count to be larger than 999999
|
||||
- Allow hashfile for -m 16800 to be used with -m 16801
|
||||
- Do not allocate memory segments for bitmap tables if we don't need it - for example, in benchmark mode
|
||||
- Got rid of OPTS_TYPE_HASH_COPY for Ansible Vault
|
||||
|
@ -14283,7 +14283,7 @@ int keepass_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE_UN
|
||||
|
||||
token.sep[2] = '*';
|
||||
token.len_min[2] = 1;
|
||||
token.len_max[2] = 6;
|
||||
token.len_max[2] = 8;
|
||||
token.attr[2] = TOKEN_ATTR_VERIFY_LENGTH
|
||||
| TOKEN_ATTR_VERIFY_DIGIT;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user