mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-10-01 03:57:47 +03:00
Using the decoded uri in REQUEST_URI instead of the encoded one
This commit is contained in:
@@ -580,10 +580,11 @@ bool Rule::evaluate(Transaction *trasn) {
|
||||
#endif
|
||||
}
|
||||
} else if (!a->isDisruptive()) {
|
||||
// here
|
||||
if (a->m_name != "capture" && a->m_name != "setvar") {
|
||||
if (a->m_name != "capture" \
|
||||
&& a->m_name != "setvar") {
|
||||
#ifndef NO_LOGS
|
||||
trasn->debug(4, "Running [II] (_non_ disruptive) " \
|
||||
trasn->debug(4, "Running [II] " \
|
||||
"(_non_ disruptive) " \
|
||||
"action: " + a->m_name);
|
||||
#endif
|
||||
a->evaluate(this, trasn, ruleMessage);
|
||||
|
Reference in New Issue
Block a user