Skip to content

Instantly share code, notes, and snippets.

@vekexasia
Last active August 29, 2015 14:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vekexasia/555eaed178bc6e016232 to your computer and use it in GitHub Desktop.
Save vekexasia/555eaed178bc6e016232 to your computer and use it in GitHub Desktop.
Fix Bash Bug 'Shell Shock' ubuntu
sudo apt-get -y install build-essential
mkdir src
cd src
wget http://ftp.gnu.org/gnu/bash/bash-4.3.tar.gz
#download all patches
for i in $(seq -f "%03g" 0 25); do wget http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-$i; done
tar zxvf bash-4.3.tar.gz
cd bash-4.3
#apply all patches
for i in $(seq -f "%03g" 0 25);do patch -p0 < ../bash43-$i; done
#build and install
./configure && make && sudo make install
cd ..
cd ..
rm -r src
@rubo77
Copy link

rubo77 commented Oct 6, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment