Skip to content

Instantly share code, notes, and snippets.

@suhastech
Created April 9, 2014 04:25
Show Gist options
  • Save suhastech/10225968 to your computer and use it in GitHub Desktop.
Save suhastech/10225968 to your computer and use it in GitHub Desktop.
Patch Ubuntu for Heartbleed OpenSSL vulnerability
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
@befrenzeNET
Copy link

Thanks! You made my day!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment