Linuxbash安全漏洞及centos/ubuntu/debian修复方法
作者: Mr.Xuan
分类: 技术交流
发布时间: 2014-10-04 00:16
ė
Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/users/HA292220/WEB/wp-content/themes/TangStyle-master/single.php on line 11
136,180 views 6 没有评论
Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/users/HA292220/WEB/wp-content/themes/TangStyle-master/single.php on line 11
136,180 views 6 没有评论
这是一个比较重要的安全漏洞,虽然针对入侵环境有很高的要求,但仍旧建议朋友们修复一下。linux bash安全漏洞修复,命令方面与大家略有不同,但基本原理差不多,就是升级bash到最新的版本,支持常见的centos、ubuntu和debian等系统。
Linux bash存在安全漏洞及修复方法
检测命令:
1 env x='() { :;}; echo Server is vulnerable' bash -c "echo"
存在漏洞则返回
1 Server is vulnerable
不存在漏洞则返回
12 bash: warning: x: ignoring function definition attemptbash: error importing function definition for `x'
修复方法
1)CentOS / Fedora / RedHat / CloudLinux
1 yum -y update bash
2)Ubuntu / Debian
1 apt-get update && apt-get install bash
3)OpenSUSE
12 zypper patch --cve=CVE-2014-6217zypper patch --cve=CVE-2014-7169
本文出自Mr.Xuan,转载时请注明出处及相应链接。
本文永久链接: https://xuanlove.cn/jishujiaoliu/557.html