mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
Fixed phase 5 rules not being excludable.
This commit is contained in:
parent
433ecf3427
commit
31e3ada844
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
|||||||
02 Jan 2008 - 2.5.0-rc2
|
02 Jan 2008 - 2.5.0-rc2
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
* Phase 5 rules can now be removed via SecRuleRemoveBy* directives.
|
||||||
|
|
||||||
* Build is now 'configure' based (autotools).
|
* Build is now 'configure' based (autotools).
|
||||||
|
|
||||||
|
|
||||||
|
@ -1108,6 +1108,7 @@ int msre_ruleset_rule_remove_with_exception(msre_ruleset *ruleset, rule_exceptio
|
|||||||
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_request_body);
|
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_request_body);
|
||||||
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_response_headers);
|
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_response_headers);
|
||||||
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_response_body);
|
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_response_body);
|
||||||
|
count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_logging);
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user