bash-3.2-33.el5.1.x86_64.rpm丟失的用戶可以到騰牛網下載。大家可以根據以下信息修正你計算機中的漏洞情況,需要的趕緊到此下載吧。
bash-3.2-33.el5.1.x86_64.rpm 修正Bash 漏洞
該安裝包為centos 5 方便找不到源的用戶
下載后執行rpm -Uvh ./bash-3.2-33.el5.1.x86_64.rpm
測試方法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
其他系統修復
centos:(最終解決方案)
yum clean all
yum makecache
yum -y update bash
ubuntu:(最終解決方案)
apt-cache gencaches
apt-get -y install --only-upgrade bash
debian:(最終解決方案)
7.5 64bit && 32bit
apt-cache gencaches
apt-get -y install --only-upgrade bash



