部署|SSL/TLS协议信息泄露漏洞(CVE-2016-2183)修复
SSL/TLS协议信息泄露漏洞(CVE-2016-2183)
- 详细描述
- 解决办法
1、OpenSSL Security Advisory [22 Sep 2016] 链接:https://www.openssl.org/news/secadv/20160922.txt 请在下列网页下载最新版本: https://www.openssl.org/source/
2、对于nginx、apache、lighttpd等服务器禁止使用DES加密算法 主要是修改conf文件 3、Windows系统可以参考如下链接: https://social.technet.microsoft.com/Forums/en-US/31b3ba6f-d0e6-417a-b6f1-d0103f054f8d/ssl-medium-strength-cipher-suites-supported-sweet32cve20162183?forum=ws2016
- 开始干活
- 先百度搜索一波找到思路,最终找到一个相对比较好的文章
参考文章: Nginx升级加固SSL/TLS协议信息泄露漏洞(CVE-2016-2183).
- 更新OpenSSL版本
- 此时发现和解决nginx安全漏洞: nginx安全漏洞(CVE-2021-23017)修复.操作步骤大体一致
- 先百度搜索一波找到思路,最终找到一个相对比较好的文章
将下载的OpenSSL上传到服务器,位置无要求,解压致/usr/local目录下
tar zxvf openssl-1.1.0k.tar.gz -C /usr/local
查看OpenSSL版本
[root@host sbin]# ./nginx -V
nginx version: nginx/1.18.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC)
built with OpenSSL 1.0.2k-fips26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module
切换到nginx目录下,执行命令。保险起见,我这里还是使用的是nginx-1.20.1的包下进行的操作
[root@host 下载]# cd nginx-1.20.1/[root@hos nginx-1.20.1]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-openssl=/usr/local/openssl-1.1.0k[root@host nginx-1.20.1]# make
拷贝nginx-1.20.1objs目录下面nginx的二进制文件到服务器原有的nginx目录下
[root@host objs]# cp nginx /usr/local/nginx/sbin/
cp:是否覆盖"/usr/local/nginx/sbin/nginx"? yes
[root@host objs]# cd /usr/local/nginx/sbin/
[root@host sbin]# ll
总用量 24264
-rwxr-xr-x. 1 root root 7769880 7月26 19:39 nginx
-rwxr-xr-x. 1 root root 6569816 6月23 15:58 nginx-1.18
-rwxr-xr-x. 1 root root 6649368 7月26 19:10 nginx-1.20
-rwxr-xr-x. 1 root root 3851680 6月23 15:55 nginx.old
最终的结果,最后你也可以在/usr/local/nginx/sbin下执行./nginx -s reload来画上一完美的计划
[root@host sbin]# ./nginx -V
nginx version: nginx/1.20.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC)
built with OpenSSL 1.1.0k28 May 2019
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-openssl=/usr/local/openssl
其实你会发现这这个问题和nginx安全漏洞(CVE-2021-23017)修复步骤类似,可综合这两篇进行步骤的简化。
推荐阅读
- Beego打包部署到Linux
- 私有化轻量级持续集成部署方案--03-部署web服务(下)
- Spring|Spring Boot部署到Resin遇到的问题
- 如何在阿里云linux上部署java项目
- 部署专题集合
- jar|springboot项目打成jar包和war包,并部署(快速打包部署)
- 一键编译部署Mysql
- 8月16日|8月16日 全网备份
- 改变企业沟通环境|改变企业沟通环境 从部署企业IM开始
- 【Tomcat源码阅读分享】—(5)Tomcat中的ClassLoader