码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Bash安全漏洞修复

时间:2014-09-25 17:24:19      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:linux bash安全漏洞修复

1.影响的系统包括

Centos

Debian

Redhat

Ubuntu

 

2.检查系统是否要修复

[root@mysql ~]# env x=‘() { :;}; echo vulnerable‘ bash -c "echo this is a test"
vulnerable
this is a test
[root@mysql ~]#

如果输出以上结果表示需要修复bash漏洞

 

3.修复漏洞

[root@mysql ~]# yum update bash -y

 

4.重新检查漏洞是否修复

[root@mysql ~]# env x=‘() { :;}; echo vulnerable‘ bash -c "echo this is a test"
bash: warning: x: ignoring function definition attempt
bash: error importing function definition for `x‘
this is a test
[root@mysql ~]#

 

本文出自 “一起走过的日子” 博客,谢绝转载!

Linux Bash安全漏洞修复

标签:linux bash安全漏洞修复

原文地址:http://tongcheng.blog.51cto.com/6214144/1558087

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!