From 461deb1e171ec6b72a3b1d64def73e2733ba711c Mon Sep 17 00:00:00 2001 From: philsmd <921533+philsmd@users.noreply.github.com> Date: Fri, 8 Nov 2019 11:39:03 +0100 Subject: [PATCH] fixes #2214: -m 15200 = Blockchain allow large data similar to -m 12700 with hash copy --- src/modules/module_15200.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/module_15200.c b/src/modules/module_15200.c index 2139e5cf7..a5b5e81e5 100644 --- a/src/modules/module_15200.c +++ b/src/modules/module_15200.c @@ -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;