SSL/TLS协议信息泄露漏洞(CVE-2016-2183)
TLS是安全传输层协议,用于在两个通信应用程序之间提供保密性和数据完整性。 TLS, SSH, IPSec协商及其他产品中使用的DES及Triple DES密码存在大约四十亿块的生日界,这可使远程攻击者通过Sweet32攻击,获取纯文本数据。
建议:避免使用DES算法
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
将下载的OpenSSL上传到服务器,位置无要求,解压致/usr/local目录下
tar zxvf openssl-1.1.0k.tar.gz -C /usr/local
查看OpenSSL版本
[root@host sbin]
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-fips 26 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 下载]
[root@hos nginx-1.20.1]
[root@host nginx-1.20.1]
拷贝nginx-1.20.1objs目录下面nginx的二进制文件到服务器原有的nginx目录下
[root@host objs]
cp:是否覆盖"/usr/local/nginx/sbin/nginx"? yes
[root@host objs]
[root@host sbin]
总用量 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.0k 28 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)步骤类似,可综合这两篇进行步骤的简化。
|