Shell Shock 취약점이 알려진 이후 데비안 서버를 업데이트했습니다.
업데이트하기 전에 나는 :
$ env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
vulnerable
this is a test
지금 나 한테있어:
$ env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
this is a test
나는 다음과 같이 기대했다.
bash: warning: x: ignoring function definition attempt
bash: error importing function definition for `x'
this is a test
업데이트로 인해 실제로 문제가 해결되었는지 궁금합니다.