6
2
I've tried the following, but I can't get a build date later than:
Tue, Aug 21 05:18:46 UTC 2012
I have done the following:
apt-get dist-upgrade
apt-get update
apt-get upgrade openssl
and
apt-get purge openssl
apt-get install openssl
and
apt-get purge libcrypto1.0.0
apt-get install libcrypto1.0.0
Everything seems to work fine, but the build date remains as above. And the http://filippo.io/Heartbleed/ test is still failing.
I know I'm not crazy, because I was able to update my identical server Wednesday. (Identical in EVERY way except hardware).
EDIT:
I compared the /etc/apt/sources.list files on both machines and they appear to be identical. How did one server update and the other won't?
EDIT:
Did as suggested:
apt-get purge openssl
reboot
apt-get install openssl
reboot
to no avail.
Tried same commands on libssl1.0.0, still same version as listed above.
This one's got me stumped.
Any suggestions?
EDIT
As soon as I get enough street cred (15), I will +1 the viable workarounds
EDIT
As suggested, I ran apt-get with --reinstall --print-uris and got back:
http://us.archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_1.0.1-4ubuntu5.12_amd64.deb
Then rebooted, same version as listed above. Still failing heartbleed.
Did you reboot? Old/vulnerable copies will remain in use/memory so long as the processes using them do. – Maxx Daymon – 2014-04-12T22:41:20.963
try rebooting. and try getting the
deb
s off of the ubuntu packages site or something like that. Also, you can upvote on your own questions, and leave comments too, even below the points barrier. – Wyatt8740 – 2014-04-13T02:37:06.060What is reported for
dpkg-query --list libssl1.0.0
next, what is "Filename:" fromapt-cache show libssl1.0.0
next, does that match the file you get when youapt-get download libssl1.0.0
? – Maxx Daymon – 2014-04-13T08:57:43.127Also helpful,
apt-get clean
to clear your download cache, thenapt-get install openssl libssl1.0.0 --reinstall --print-uris
and check the download URIs. Download the packages manually to inspect. – Maxx Daymon – 2014-04-13T09:11:36.957Thanks Maxx, I ran the dpkg-query and apt-get download, and the versions match. I then ran apt-get clean, downloaded the packages and inspected their content, which matched the dpkg-query versions. Does that mean the repository is broken? – user1182988 – 2014-04-13T13:42:18.837
@user1182988 The repository looks good from here. I downloaded and verified the packages and they were correct. You can manually download the libssl and openssl deb packages and install them, but it looks like apt is selecting and installing the patch. Does your sha1sum for
/usr/bin/openssl
match22297ff89bbdfd4befb6f66f79e41210768aa81a
and/lib/x86_64-linux-gnu/libssl.so.1.0.0
match4fbb25a3e82d3d835c68421a6c4647afe534b393
? What server(s) are you using, and is there a chance you have a statically linked libssl in it/them? – Maxx Daymon – 2014-04-13T20:53:54.537@user1182988 Another test you can do is to download the .deb package and run
debsums libssl1.0.0_1.0.1-4ubuntu5.12_amd64.deb
to verify that the files you have installed match the sums from the known good package. Do adpkg -i filename.deb
to install manually. OpenSSL should returnOpenSSL 1.0.1 14 Mar 2012, built on: Mon Apr 7 20:33:29 UTC 2014
Your build date implies that the package is not getting installed. Check dpkg and apt logs for errors? – Maxx Daymon – 2014-04-13T21:14:38.397@MaxxDaymon, Thanks for helping. I ran sha1sum on openssl, and the checksum matches the one you provided, however the libssl.so.1.1.0 did not match. I compared to my "identical" server, and both checksums matched. I searched my dpkg and apt logs, but saw nothing that looked like an error. The servers are typical LAMP with postfix and dovecot, and associated spam/security apps. I was about to remove libssl1.0.0, but it told me that there were too many things relying on it, and that I should reconsider unless I "Really know what I'm doing", so I reconsidered. will a dpkg-reconfigure fix it? – user1182988 – 2014-04-13T22:45:53.973
@user1182988 Can you do a
apt-cache policy libssl1.0.0
and tell me what your Installed: and Candidate: lines are? – Maxx Daymon – 2014-04-13T23:11:27.790@user1182988 I think I would recommend a
wget http://us.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.12_amd64.deb
followed by adpkg --force-all --remove libssl1.0.0
and then adpkg --force-overwrite -i libssl1.0.0_1.0.1-4ubuntu5.12_amd64.deb
(You could also do a plainapt-get install libssl1.0.0
instead, eliminating the need to download the deb) I just tried both approaches on a 12.04 test server and they both worked. – Maxx Daymon – 2014-04-13T23:16:26.817@MaxxDaymon, you nailed it. I ran
dpkg --force-all --remove libssl1.0.0
followed byapt-get install libssl1.0.0
, and now my build is 4/7/14. I learned that dpkg will remove a package without removing all of the stuff that depends on it (right?). Thanks Maxx. Make an answer out of this and I will check it. – user1182988 – 2014-04-14T00:34:56.913@user1182988 Fantastic! I'm stepping out for a few hours, I'll write it up in the form of an answer when I return. Glad to hear you're back in business! – Maxx Daymon – 2014-04-14T01:38:44.763
@user1182988 I posted an answer. It was a bit wall-of-text, so I reduced it to the essentials since we've got a lot of the diagnostics steps in the question now. – Maxx Daymon – 2014-04-14T06:22:32.183