Created
April 9, 2014 04:25
-
-
Save suhastech/10225968 to your computer and use it in GitHub Desktop.
Patch Ubuntu for Heartbleed OpenSSL vulnerability
This file contains 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
sudo apt-get update | |
sudo apt-get --reinstall install libssl1.0.0 openssl # Simply install didn't work for me | |
openssl version -a # Check that it reports build date >= 2014-04-07 | |
sudo lsof -n | grep ssl | grep DEL # You could check the services that needs to be restarted | |
sudo reboot # or be lazy | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! You made my day!