Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cillierburger/10111495 to your computer and use it in GitHub Desktop.
Save cillierburger/10111495 to your computer and use it in GitHub Desktop.
How to patch Ubuntu Lucid (10.04) against OpenSSL Heartbleed
Add this to /etc/apt/sources.list
<snip>
deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse
</snip>
# apt-get update
# apt-get install apt-get install libssl1.0.0 openssl
# openssl version -a ( Check that it reports build date >= 2014-04-07)
# sudo lsof -n | grep ssl | grep DEL and restart all listed services.
Adapted from https://gist.github.com/coderanger/10084033
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment