[Linux] 아파치 서버 컴파일 설치 (httpd-2.4.52) 1. 관련 패키지 설치 CentOS 7에서 설치 진행했습니다. # yum update -y # yum install -y gcc gcc-c++ pcre-devel expat-devel 2. 관련 설치 파일 다운로드 Apache HTTP Server를 설치하기 위해서는 다음과 같은 파일의 설치가 필요합니다. pcre(Perl Compatible Regular Expressions) https://sourceforge.net/projects/pcre/files/pcre/ httpd apr(Apache Portable Runtime) apr-util https://downloads.apache.org 설치 파일 다운로드 wget을 이용하여 관련 파일을 특정 경로에 다운로드합니다. 경로 같은 경우엔 소스 파일은.. OS/Linux 3년 전
[Linux] Apache HTTP Server 취약점 조치 (CVE-2021-44224, CVE-2021-44790) 0. 조치 환경 CentOS Linux release 7.9.2009 (Core) 1. 취약점 내용 영향받는 버전: 2.4.51 및 이전 버전 Apache HTTP Server에서 널 포인터 역참조로 인해 발생하는 서비스 거부 취약점(CVE-2021-44224) Apache HTTP Server에서 입력값 검증이 미흡하여 발생하는 버퍼오버플로우 취약점(CVE-2021-44790) https://krcert.or.kr/data/secNoticeView.do?bulletin_writing_sequence=36399 2. 조치 방안 Apache HTTP Server 버전을 업데이트합니다. (2.4.52) 3. 업데이트 기존에 설치된 Apache HTTP Server를 지우고 시작합니다. 3.1. 관련 패키지 .. OS/Linux 3년 전