Page 2 of 2

Re: Bug in OpenSSL

PostPosted: Mon Apr 14, 2014 1:12 pm
by S3KshuN8
BBOSAK: I looked at that file but I did not see where a change needed to be made, so I left it alone.

Pam: I tried those two commands but it made no difference. It still thinks 1.0.1c is the newest.

Re: Bug in OpenSSL

PostPosted: Mon Apr 14, 2014 1:23 pm
by pam
Open terminal and type:
Code: Select all
curl https://www.openssl.org/source/openssl-1.0.1g.tar.gz | tar xz && cd openssl-1.0.1g && sudo ./config && sudo make && sudo make install

Note: The above command will download the new openssl source package and compile it from scratch.


Next replace the old binary file...
Code: Select all
sudo ln -sf /usr/local/ssl/bin/openssl `which openssl`

Then check whether its upgraded...
Code: Select all
dpkg -l | grep "openssl"


Sourced from: http://askubuntu.com/questions/444702/h ... in-openssl

Re: Bug in OpenSSL

PostPosted: Mon Apr 14, 2014 3:17 pm
by S3KshuN8
Thanks pam, that got it! :D

I had already tried downloading the source but didn't do everything with "sudo" and I didn't know about the command to replace the binary. Now it reports 1.0.1g as it should. Cheers.

<BREW>