Created
April 8, 2014 11:23
-
-
Save cillierburger/10111495 to your computer and use it in GitHub Desktop.
How to patch Ubuntu Lucid (10.04) against OpenSSL Heartbleed
This file contains hidden or 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
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