fixes #2214: -m 15200 = Blockchain allow large data similar to -m 12700 with hash copy

pull/2216/head
philsmd 5 years ago committed by GitHub
parent b02fe8e076
commit 461deb1e17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -93,13 +93,13 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
token.sep[2] = '$';
token.len_min[2] = 1;
token.len_max[2] = 5;
token.len_max[2] = 6;
token.attr[2] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;
token.sep[3] = '$';
token.len_min[3] = 64;
token.len_max[3] = 20000;
token.len_max[3] = 999999;
token.attr[3] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_HEX;

Loading…
Cancel
Save