Bash严重漏洞修复

2018-05-08 18:04:55 浏览数 (1)

检测:env x='() { :;}; echo vulnerable’ bash -c “echo this is a test”

UBuntu修复:

apt-get update

apt-get install bash

修复之后:

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

0 人点赞