Forked from cillierburger/How to patch Ubuntu Lucid (10.04) against OpenSSL Heartbleed
Created
October 7, 2015 09:52
-
-
Save vladon/455e88a62471f92f0fa9 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