Neutralize Shellshock by patching Bash with Perl

The safest way to protect a system from Shellshock is to upgrade to a patched version of Bash. However if you’re like me, you may find that a hectic Linux distro release schedule has left your current distribution unsupported. Rather than run the risk of attack, you can patch Bash yourself. Unfortunately some versions of Bash have as many as 52 different patches that must be downloaded and applied. So I wrote a Perl called bashfix to automate it.

Requirements

Bashfix has a minimal set of requirements, so you should be able to run it on any Linux platform out of the box:

  • Perl 5.8 or higher and no extra modules required
  • Linux with Bash version 3.* or 4.*
  • The following C binaries: wget, curl, bison, byacc, gettext, patch, autoconf
  • An internet connection to download Bash and associated patches from GNU

Synopsis

Using bashfix is fairly straightforward:

$ git clone https://github.com/sillymoose/bashfix.git
$ cd bashfix
$ chmod +x bashfix.pl
$ ./bashfix.pl
Bash version 4.2.13 detected
Created working directory /tmp/PIRKRioxmM
Downloading Bash
Downloading Patches
Bash patched to level 52
Bash fully patched!
Configuring Bash ...
Building and testing Bash ...
Success. New Bash binary built!
Making backup copy of /usr/bin/bash at /usr/bin/bash.bak
Making backup copy of /bin/bash at /bin/bash.bak
Bash version 4.2.52 is now installed

Bashfix checks that you have Bash installed, and the necessary prerequisites. It then downloads the Bash source for the same Bash version that is already installed on the system (you can patch an old Bash version to be Shellshock-proof). Note that different versions of Bash have different numbers of patches: 4.2 has 52 patches, whilst 4.1 has only 16. After that, bashfix configures, builds and tests Bash, making a backup of your existing Bash binary, before installing the newly patched version.

Conclusion

I’ve tested bashfix on different versions of Fedora and CentOS, and expect that it works with any RHEL flavoured distro. With other Linux distros or Unix systems, your mileage may vary. If you encounter any issues - get in touch and let me know! Check out our recent article on Shellshock and Perl if you’d like to know more about the exploit.

Thanks to Steve Jenkins whose detailed blog post on patching Fedora Bash was the inspiration for this script.


This article was originally posted on PerlTricks.com.

Tags

David Farrell

David is a professional programmer who regularly tweets and blogs about code and the art of programming.

Browse their articles

Feedback

Something wrong with this article? Help us out by opening an issue or pull request on GitHub