I'm trying to patch my server against the Shellshock vulnerability issue. However, I'm unable to update Bash to a safe version, these are the results I'm getting:
# yum update bash
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
Skipping security plugin, no data
Setting up Update Process
No Packages marked for Update
I'm running CentOS 5.10, and the command yum repolist all shows that the update repo is enabled.
The current installed version of Bash is 3.2-32.el5_9.1.
This command shows that my server is vulnerable to Shellshock:
# env x='() { :;}; echo vulnerable' bash -c 'echo hello'
vulnerable
hello