Forked from ArturT/Fix OpenSSL Padding Oracle vulnerability (CVE-2016-2107) - Ubuntu 14.04
Created
October 12, 2016 08:09
-
-
Save sgmac/2bcc869039c2f88ba1a10c50c9d4c8ec to your computer and use it in GitHub Desktop.
Fix OpenSSL Padding Oracle vulnerability (CVE-2016-2107) - Ubuntu 14.04
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
# Based on http://fearby.com/article/update-openssl-on-a-digital-ocean-vm/ | |
$ sudo apt-get update | |
$ sudo apt-get dist-upgrade | |
$ wget ftp://ftp.openssl.org/source/openssl-1.0.2j.tar.gz # Check the last version | |
$ tar -xvzf openssl-1.0.2h.tar.gz | |
$ cd openssl-1.0.2h | |
$ ./config --prefix=/usr/ | |
$ make depend | |
$ sudo make install | |
$ openssl version | |
# OpenSSL 1.0.2h 3 May 2016 | |
# now restart your nginx or other server | |
$ sudo service nginx restart | |
# check your website here https://www.ssllabs.com/ssltest/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment