当前位置:首页 > linux教程 > 列表

linux系统中bash漏洞修复教程

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-28 16:07:11 浏览: 评论:0 

今天一打开电脑,就发现群里再说bash漏洞的事情,马上搜了下,发现居然比心血漏洞还要严重,好吧,看来今天又有事情要做了.

系统:centos5.x

1.检测你服务器是否需要修复

env x='() { :;}; echo vulnerable' bash -c "echo this is a test"

如果输出是vulnerable就要升级bash了.

2.升级bash

yum -y update bash

如果是centos6的服务器,yum完后请先执行/sbin/ldconfig,然后不行再重启服务器.

3.验证

env x='() { :;}; echo vulnerable' bash -c "echo this is a test"

如果报下面几行,就表示你的bash没有漏洞了:

  1. bash: warning: x: ignoring function definition attempt 
  2. bash: error importing function definition for `x' 
  3. this is a test  //phpfensi.com 

好了,各位要不要升级就要看你们的上面那位是否批准了.

Tags: linux系统 bash漏洞修复

分享到: