About the Shellshock vulnerability, you can read here.
Run this command:
1 2 | [mythcat@localhost ~]$ env x='() { :;}; echo vulnerable' bash -c 'echo hello' hello |
If you see this:
1 2 | vulnerable hello |
You have a Shellshock vulnerability, to fix use this:
1 | [mythcat@localhost ~]$ sudo yum update |
Thank’s.