Wedge
Public area => The Pub => Off-topic => Topic started by: Pandos on September 25th, 2014, 02:34 PM
-
It's possible to execute remote code through bash.
This is a major security vulnerability.
Please update your distros (if you are root). :)
e.g. Debian:
apt-get update
and then:
apt-get dist-upgrade
Full message:
http://www.openwall.com/lists/oss-security/2014/09/24/11
-
Thanks for the heads-up.
-
First released patches not good enough.
https://access.redhat.com/articles/1200223
-
You could check your system if it's vulnerable or not,from a command line, type:
env x='() { :;}; echo vulnerable' bash -c "echo this is a test"
If the system is vulnerable, the output will be:An unaffected (or patched) system will output:bash: warning: x: ignoring function definition attempt
bash: error importing function definition for `x'
this is a test