You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I compiled ModSecurity v2.9.0 with no options (ie ./configure) and found that later I was having PCRE match issues, so I increased the values in modsecurity.conf (httpd/conf.d/ folder) and found that it was have 0 effect. After troubleshooting for a few hours, I recompiled with higher values and that resolved the issue (ie ./configure --enable-pcre-match-limit=200000 --enable-pcre-match-limit-recursion=200000).
So the bug is that the conf file options dont work.
The text was updated successfully, but these errors were encountered:
The values in modsecurity.conf is part of the RegEx DoS rule, like:
SecPcreMatchLimit 10000
SecPcreMatchLimitRecursion 10000
SecRule TX:/^MSC_/ "!@Streq 0"
"id:'200004',phase:2,t:none,deny,msg:'ModSecurity internal error flagged:
%{MATCHED_VAR_NAME}'"
I compiled ModSecurity v2.9.0 with no options (ie ./configure) and found that later I was having PCRE match issues, so I increased the values in modsecurity.conf (httpd/conf.d/ folder) and found that it was have 0 effect. After troubleshooting for a few hours, I recompiled with higher values and that resolved the issue (ie ./configure --enable-pcre-match-limit=200000 --enable-pcre-match-limit-recursion=200000).
So the bug is that the conf file options dont work.
The text was updated successfully, but these errors were encountered: