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 ~]#
本文出自 “一起走过的日子” 博客,谢绝转载!
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。