Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바스크립트비밀번호검증
- (using password: YES)" when trying to connect
- libxrender1
- 비밀번호정규식
- html pdf 변환
- 아파치 웹 서버의 정보 숨기기
- usb efi 시스템 파티션 삭제
- bootstrap modal
- 비밀번호검증정규식
- 세로 중앙 정렬
- PHP 구글 OTP 연동
- 구글 OTP 인증
- svn 충돌 해결 resolve
- magic bytes
- 부트스트랩4 세로 중앙 정렬
- group_concat 구분자
- modsecurity 설치
- svn 충돌 해결 resolved
- bootstrap
- php 특정 문자열 취환
- PHP 정규식 예제
- JQuery checkbox 컨트롤
- 우분투 mysql 비밀번호 없이 로그인 될때
- wkhtmltopdf 실행 오류
- mysql root 비밀번호 변경
- mysqldump: Got error: 1045
- apache mod rewrite
- PHP 구글 OTP 인증
- 파라미터 & 오류
- javascript
Archives
- Today
- Total
투덜이 개발자
우분투 모드시큐리트 modsecurity 설치 본문
반응형
우분투 모드시큐리트 설치 에러 발생
sudo apt install libapache2-mod-security2
이렇게 다시 설치
설치 확인
apachectl -M | grep security
ModSecurity 설정
cd /etc/modsecurity
cp /etc/modsecurity/modsecurity.conf-recommended /etc/modsecurity/modsecurity.conf
vi modsecurity.conf 파일을 열고 아래 추가
#SecRuleEngine DetectionOnly
SecRuleEngine On
룰셋다운받기 + 압축 풀기
sudo wget https://github.com/coreruleset/coreruleset/archive/v3.3.0.tar.gz
sudo wget https://github.com/coreruleset/coreruleset/archive/v3.3.4.tar.gz
tar xvfzp v3.3.4.tar.gz
규칙 세트를 저장한 디렉터리를 생성하고 규칙 세트 이동 + 경로 이동
mkdir /etc/apache2/modsecurity-crs
mv coreruleset-3.3.4 /etc/apache2/modsecurity-crs/.
cd /etc/apache2/modsecurity-crs/coreruleset-3.3.4
mv crs-setup.conf.example crs-setup.conf
규칙 룰셋 적용하기
vi /etc/apache2/mods-enabled/security2.conf
<IfModule security2_module>
# Default Debian dir for modsecurity's persistent data
SecDataDir /var/cache/modsecurity
# Include all the *.conf files in /etc/modsecurity.
# Keeping your local configuration in that directory
# will allow for an easy upgrade of THIS file and
# make your life easier
IncludeOptional /etc/modsecurity/*.conf
# Include OWASP ModSecurity CRS rules if installed
#IncludeOptional /usr/share/modsecurity-crs/*.load
IncludeOptional /etc/apache2/modsecurity-crs/coreruleset-3.3.4/crs-setup.conf
IncludeOptional /etc/apache2/modsecurity-crs/coreruleset-3.3.4/rules/*.conf
</IfModule>
아파치 재시작
웹에디터에서 이미지 첨부가 안된다.
로그 확인하여 보면 블럭 당했다.
그래서 해당 파일은 삭제 함
rm -f /etc/apache2/modsecurity-crs/coreruleset-3.3.4/rules/REQUEST-949-BLOCKING-EVALUATION.conf
첨부파일 업로드가 안된다
그래서
vi /etc/modsecurity/modsecurity.conf
주석 처리 함
SecRule MULTIPART_UNMATCHED_BOUNDARY "!@eq 0" \
"id:'200004',phase:2,t:none,log,deny,msg:'Multipart parser detected a possible unmatched boundary.'"
#SecRule MULTIPART_UNMATCHED_BOUNDARY "!@eq 0" \
#"id:'200004',phase:2,t:none,log,deny,msg:'Multipart parser detected a possible unmatched boundary.'"
https://liveyourit.tistory.com/171
https://blog.boxcorea.com/wp/archives/3236
# ModSecurity 삭제
sudo apt remove libapache2-mod-security2
반응형