Last active
August 29, 2015 14:06
-
-
Save dashr/7b66f6485a3ca65074f1 to your computer and use it in GitHub Desktop.
shellshock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#test on command line | |
$ env VAR='() { :;}; echo Bash is vulnerable!' bash -c "echo Bash Test" | |
#Fix on ubuntu (debian based) | |
$ sudo apt-get update && sudo apt-get install --only-upgrade bash | |
#Fix on CentOS/ Cpanel | |
$ sudo yum update bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment