wget 취약점 (CVE_2016-4971) 이 있다는 소식에 내 wget 버전을 확인해보았고
1.14이길래 최신버전으로 업그레이드를 하기로했다.
yum groupinstall "Development Tools" -y
yum install gcc glibc glibc-common gd gd-devel openssl -y
yum install glibc-devel glibc-headers kernel-headers kernel-devel gnutls-devel -y
cd /opt
wget https://ftp.gnu.org/gnu/wget/wget-1.20.3.tar.gz
tar -xzf wget-1.20.3.tar.gz
cd wget-1.20.3/
./configure
make && make install
cd src/
cp wget /usr/bin/wget # 버전업이라 overwrite
cd ~/
wget --version | head -1
끝!
https://gist.github.com/M507/2846cc78914e955c6adb0d5483d3e8c4
https://www.linuxfromscratch.org/blfs/view/9.1/basicnet/wget.html
https://www.anillabs.com/2014/11/install-or-upgrade-wget-in-ubuntu-or-centos/
'main > Server' 카테고리의 다른 글
웹 서버의 SSL 인증서를 확인하고 싶을 때 (0) | 2023.04.09 |
---|---|
[CentOS7] letsencrypt 인증서 삭제하기, *.conf 에러 핸들링 (1) | 2022.09.16 |
[CentOS 7] Apache 서버 로그 관리 - httpd.conf (0) | 2022.02.10 |
[CentOS 7] Apache 기본 계정 보안 - httpd.conf (0) | 2022.02.09 |
[Apache] 유저 생성, 정보 확인, sudo 권한주기, 비밀번호 pass 하기 (0) | 2022.02.09 |