mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 03:34:29 +03:00
Fix logical disjunction and conjunction issues
This commit is contained in:
@@ -774,7 +774,7 @@ static size_t parse_qstring_core(sfilter * sf, int offset)
|
||||
}
|
||||
|
||||
ch = cs[pos + 2];
|
||||
if (ch < 33 && ch > 127) {
|
||||
if (ch < 33 || ch > 127) {
|
||||
return parse_word(sf);
|
||||
}
|
||||
switch (ch) {
|
||||
|
Reference in New Issue
Block a user