ModSecurity & Horde issues

ModSecurity is a very powerful Web application firewall, you hardly want to miss on a weserver - but the filter-rules also causes problems with some software. For our Horde-installation we fixed the issuses by excluding the following rules. This applies to the ModSecurity Core Rules Set with version 2.2.5 and the recent Horde Groupware.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
SecRuleRemoveById 981173
<LocationMatch "/services/ajax.php">
SecRuleEngine Off
</LocationMatch>
<LocationMatch "/admin/config/config.php">
SecRuleRemoveById 950010
SecRuleRemoveById 981317
SecRuleRemoveById 950001
SecRuleRemoveById 920007
SecRuleRemoveById 959073
SecRuleRemoveById 981257
SecRuleRemoveById 981245
SecRuleRemoveById 981243
</LocationMatch>
|