Message: Rule execution error - PCRE limits exceeded (-8): (null).
리눅스/Security2015. 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
반응형
'리눅스 > Security' 카테고리의 다른 글
modsecurity 2.5.12 / 2.7.0 / 2.9.1 설치 (0) | 2015.01.27 |
---|---|
mod_security 화이트IP 등록 (0) | 2015.01.27 |
mod_security 아파치용 웹방화벽 설치 (2.5.13) (0) | 2015.01.26 |
ModSecurity Reference Manual - Version 2.1.7 / (April 2, 2008) (0) | 2015.01.26 |
ModSecurity 를 활용한 아파치 웹서버 보안 강화 안내서 - KrCERT (0) | 2015.01.26 |
댓글()