Message: Rule execution error - PCRE limits exceeded (-8): (null).

리눅스/Security|2015. 1. 27. 08:56
반응형

modsecurity.log  에 아래와 같은 오류 메세지가 뜰때

 
[증상]

Message: Rule execution error - PCRE limits exceeded (-8): (null).

 
[해결1]

mod_security 설치시 아래 옵션을 추가하여 설치를 합니다.

[root@sysdocu ~]# ./configure --enable-pcre-match-limit=90000 --enable-pcre-match-limit-recursion=90000
[root@sysdocu ~]# make && make install 

그리고 아래 명령으로 확인이 가능합니다.

[root@sysdocu ~]# php -i | egrep -i pcre 

 

[해결2]

php.ini 를 수정합니다.

[Pcre]
pcre.backtrack_limit=1000000
pcre.recursion_limit=1000000  
 

반응형

댓글()