mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 11:44:32 +03:00
3
CHANGES
3
CHANGES
@@ -1,6 +1,7 @@
|
|||||||
DD MMM YYYY - 2.9.3 - To be released
|
DD MMM YYYY - 2.9.3 - To be released
|
||||||
------------------------------------
|
------------------------------------
|
||||||
|
* potential off by one in parse_arguments
|
||||||
|
[Issue #1799 - @tinselcity, @zimmerle]
|
||||||
* Fix utf-8 character encoding conversion
|
* Fix utf-8 character encoding conversion
|
||||||
[Issue #1794 - @tinselcity, @zimmerle]
|
[Issue #1794 - @tinselcity, @zimmerle]
|
||||||
* Fix ip tree lookup on netmask content
|
* Fix ip tree lookup on netmask content
|
||||||
|
@@ -266,7 +266,7 @@ int parse_arguments(modsec_rec *msr, const char *s, apr_size_t inputlength,
|
|||||||
if (status == 0) {
|
if (status == 0) {
|
||||||
/* parameter name */
|
/* parameter name */
|
||||||
arg->name_origin_offset = i;
|
arg->name_origin_offset = i;
|
||||||
while ((s[i] != '=') && (s[i] != argument_separator) && (i < inputlength)) {
|
while ((i < inputlength) && (s[i] != '=') && (s[i] != argument_separator)) {
|
||||||
buf[j] = s[i];
|
buf[j] = s[i];
|
||||||
j++;
|
j++;
|
||||||
i++;
|
i++;
|
||||||
|
Reference in New Issue
Block a user