Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux 系統 Bash 漏洞修復方法

Linux 系統 Bash 漏洞修復方法

日期:2017/2/7 14:29:26      編輯:Linux教程
 

Linux官方內置Bash中新發現一個非常嚴重安全漏洞(點擊查看漏洞參考),黑客可以利用該Bash漏洞完全控制目標系統並發起攻擊。建議各位Linux使用者盡快修復這個漏洞!

受影響的系統
•CentOS
•Debian
•Redhat
•Ubuntu

檢測方法

使用此命令:

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

解決方案

紅帽系

可通過更新 bash 並重啟系統來解決這個問題:

yum update bash
更新後需要重啟。

Ubuntu
apt-get update
apt-get install bash

Ubuntu 無需重啟。

Copyright © Windows教程網 All Rights Reserved