簡體 | Eng
          收藏夾
          -> -> -> - >
          [解決方案]主題: Linux Bash非常嚴重的安 ...   發布者: itman
          09/26/2014
          Visit:158 ,Today:1

          Linux Bash非常嚴重的安全漏洞修復緊急通知 - 9月25日

          日前Linux官方內置Bash中新發現一個非常嚴重安全漏洞(漏洞參https://access.redhat.com/security/cve/CVE-2014-6271),嗨客可以利用該Bash漏洞完全控制目標系統并發起攻擊,為了避免您Linux服務器受影響,建議您盡快完成漏洞修補,修復方法如下,請了解!

          Bash Code Injection Vulnerability (CVE-2014-6271)

          (Published September 24 2014 at 5:34 PM

          Red Hat Product Security has been made aware of a vulnerability affecting all versions of the bash package shipped with Red Hat Enterprise Linux. Since many of Red Hat's products run on a base installation of Red Hat Enteprise Linux, there is a risk of other products being impacted by this vulnerability as well.

          The bash code injection vulnerability CVE-2014-6271 could allow for arbitrary code execution, allowing an attacker to bypass imposed environment restrictions. Certain services and applications allow remote unauthenticated attackers to exploit this vulnerability by providing environment variables. As the Bash shell is the most commonly used shell today, the risk of impact from this vulnerability if left unchecked could be severe.

          To learn more about affected products, remediation steps, and testing your Bash version for vulnerabilities, see https://access.redhat.com/articles/1200223 in the Red Hat Customer Portal.

          If you have questions or concerns, please contact Red Hat Technical Support.

          特別提醒:目前解決辦法是Linux官方提供的解決辦法,針對此漏洞Linux官方解決辦法仍然有可能會被繞過,后續我們會提供較為徹底的解決辦法。

          【已確認被成功利用的軟件及系統】

          所有安裝GNU bash 版本小于或者等于4.3的Linux操作系統。

          【漏洞描述】

          該漏洞源于你調用的bash shell之前創建的特殊的環境變量,這些變量可以包含代碼,同時會被bash執行。

          【漏洞檢測方法】

          漏洞檢測命令:env x='() { :;}; echo vulnerable' bash -c "echo this is a test"

          修復前

          輸出:

          vulnerable

          this is a test

          使用修補方案修復后

          bash: warning: x: ignoring function definition attempt

          bash: error importing function definition for `x'

          this is a test

          特別提示:該修復不會有任何影響,如果您的腳本使用以上方式定義環境變量,修復后您的腳本執行會報錯。

          【建議修補方案 】

          請您根據Linux版本選擇您需要修復的命令, 為了防止意外情況發生,建議您執行命令前先對Linux服務器系統盤打個快照,

          如果萬一出現升級影響您服務器使用情況,可以通過回滾系統盤快照解決。

          centos: 

          yum -y update bash

          ubuntu:

          14.04 64bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.3-7ubuntu1.1_amd64.deb && dpkg -i bash_4.3-7ubuntu1.1_amd64.deb

          14.04 32bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.3-7ubuntu1.1_i386.deb && dpkg -i bash_4.3-7ubuntu1.1_i386.deb

          12.04 64bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.2-2ubuntu2.2_amd64.deb && dpkg -i bash_4.2-2ubuntu2.2_amd64.deb

          12.04 32bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.2-2ubuntu2.2_i386.deb && dpkg -i bash_4.2-2ubuntu2.2_i386.deb

          10.× 64bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.1-2ubuntu3.1_amd64.deb && dpkg -i bash_4.1-2ubuntu3.1_amd64.deb

          10.× 32bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.1-2ubuntu3.1_i386.deb && dpkg -i bash_4.1-2ubuntu3.1_i386.deb

          debian:

          7.5 64bit && 32bit

          apt-get -y install --only-upgrade bash

          6.0.x 64bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.1-3+deb6u1_amd64.deb && dpkg -i bash_4.1-3+deb6u1_amd64.deb

          6.0.x 32bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash_4.1-3+deb6u1_i386.deb && dpkg -i bash_4.1-3+deb6u1_i386.deb

          opensuse

          13.1 64bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash-4.2-68.4.1.x86_64.rpm && rpm -Uvh bash-4.2-68.4.1.x86_64.rpm

          13.1 32bit

          wget http://donate.wx.51idc.com:8000/hotfix/bash-4.2-68.4.1.i586.rpm && rpm -Uvh bash-4.2-68.4.1.i586.rpm

          您好,9月25日消息,繼“心臟流血”漏洞之后,由紅帽Linux官方內置Bash中新發現一個非常嚴重的安全漏洞(漏洞參考https://access.redhat.com/security/cve/CVE-2014-6271),嗨客可以利用該Bash漏洞完全控制目標系統并發起攻擊,為了避免您Linux服務器受影響,建議您盡快完成漏洞修補,詳細修復方法如下!

          【已確認被成功利用的軟件及系統】

          所有安裝GNU bash 版本小于或者等于4.3的Linux操作系統。

          bash版本檢測命令:bash -version

          【漏洞描述】

          該漏洞源于你調用的bash shell之前創建的特殊的環境變量,這些變量可以包含代碼,同時會被bash執行。

          【漏洞檢測方法】

          漏洞檢測命令:env x='() { :;}; echo vulnerable' bash -c 'echo this is a test'

          如果返回以下內容,則請盡快升級:

          vulnerable

          this is a test。

          請您根據我們所提供的Linux版本選擇您需要修復的命令,為了防止意外情況發生,建議您執行命令前先對Linux服務器系統盤做好快照備份,如果出現升級影響您服務器使用情況,可以通過回滾系統盤快照解決。

          【Centos升級方法】

          運行yum update -y bash 進行bash版本升級

          【Ubuntu升級方法】

          12.04 64bit

          wget http://mirrors.aliyun.com/fix_stuff/bash_4.2-2ubuntu2.2_amd64.deb && dpkg -i bash_4.2-2ubuntu2.2_amd64.deb

          12.04 32bit

          wget http://mirrors.aliyun.com/fix_stuff/bash_4.2-2ubuntu2.2_i386.deb && dpkg -i bash_4.2-2ubuntu2.2_i386.deb

          修復漏洞后執行漏洞檢測命令,如果出現以下提示則表示升級完成:

          bash: warning: x: ignoring function definition attempt

          bash: error importing function definition for `x'

          this is a test

          目前解決辦法是Linux官方提供的解決辦法,針對此漏洞Linux官方解決辦法仍然有可能會被繞過,后續我們會提供較為徹底的解決辦法。

           
          最后更新: 2014-09-26 20:05:58
          • 評判這條信息 - 歡迎發表意見/建議 : Linux Bash非常嚴重的安全漏洞修復緊急通知 - 9月25日

            * 必須填寫的信息

            優秀信息 分類錯誤 違禁信息 垃圾信息 過期 其它

            姓名: *
            詳細內容: *
            聯系電話:
            詳細地址:
            郵政編碼:
            電子信箱:
            網址URL:
            管理密碼:*
            * 刪除/修改
            驗證碼:*
            passcode

          搜索相關: 電腦、軟件 - 計算機 - 服務器、工作站 - 網絡設備、配件 - 網絡工程 - 消耗品 - 主機配件 - 軟件設計 - 其他 - 二手設備 - 軟件 - 信息技術合作 - 安全、病毒防治 - 電腦外設 - UPS與電源 - 郵箱、網盤 - 插卡類 - IC卡 - 域名、虛擬主機 - MP3 - 網站建設

          ©2025 孫悟空
          主站蜘蛛池模板: 中文字幕av一区| 国产一区二区在线| 国产精品日韩欧美一区二区三区| 无码一区18禁3D| 久久精品无码一区二区三区| 高清无码一区二区在线观看吞精| 亚洲AV日韩AV天堂一区二区三区| 亚洲国产成人精品久久久国产成人一区二区三区综 | 精品视频在线观看一区二区三区| 3d动漫精品啪啪一区二区中| 精品一区二区三区在线视频| 精品乱子伦一区二区三区| 精品一区二区三区视频在线观看| 中文字幕AV一区二区三区| 99在线精品一区二区三区| 久久se精品动漫一区二区三区| 中文字幕在线观看一区二区三区| 立川理惠在线播放一区| 精品视频一区二区观看| 在线一区二区三区| 精品女同一区二区三区免费播放| 在线视频一区二区日韩国产| 成人无号精品一区二区三区| 曰韩人妻无码一区二区三区综合部 | 国产婷婷色一区二区三区深爱网 | 亚洲日本中文字幕一区二区三区| 日韩精品一区二区三区国语自制| 精品国产精品久久一区免费式| 精品无码国产一区二区三区51安 | 大伊香蕉精品一区视频在线| 一区二区三区影院| 亚洲AV午夜福利精品一区二区| 午夜天堂一区人妻| 亚洲AV成人一区二区三区在线看| 亚洲一区二区三区高清在线观看 | 国模视频一区二区| 痴汉中文字幕视频一区| 日韩人妻无码一区二区三区 | 亚洲日韩AV一区二区三区中文| 国产精品99精品一区二区三区| 日韩精品一区二三区中文|