Last active
February 26, 2021 18:42
-
-
Save dhrrgn/10125477 to your computer and use it in GitHub Desktop.
Upgrade Ubuntu OpenSSL to patch 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
sudo apt-get update | |
sudo apt-get install -y libssl1.0.0 openssl | |
# Confirm Build Date is at least Aril 7th 2014 | |
openssl version -a | |
# Restart all services listed by this command: | |
sudo lsof -n | grep ssl | grep DEL |
works for me.... thanks
Perfect.
thanks
Not working for me. Still saying Mar 2012. I've rebooted the server also.
you need to check the second line
openssl version -a
OpenSSL 1.0.1 14 Mar 2012
built on: Mon Apr 7 20:33:29 UTC 2014
Works for me!
No work me. Says built on Jan 8 2014. apt-get install says it's already newest version...
Thanks a lot.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!