Summary | Horde_Http: Fix disabling SSL certificate hostname check |
Queue | Horde Framework Packages |
Queue Version | Git master |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | jan (at) horde (dot) org |
Requester | thomas.jarosch (at) intra2net (dot) com |
Created | 01/21/2014 (4221 days ago) |
Due | |
Updated | 01/26/2016 (3486 days ago) |
Assigned | 06/30/2014 (4061 days ago) |
Resolved | 01/26/2016 (3486 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | Yes |
State ⇒ Resolved
commit b9628ad4855c2b5382988b9d919805ab3e74b7e5
Author: Jan Schneider <jan@horde.org>
Date: Tue Jan 26 12:15:12 2016 +0100
[jan] Fix disabling SSL certificate hostname check (Thomas
Jarosch <thomas.jarosch@intra2net.com>,
Bug #12929).framework/Http/package.xml | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/b9628ad4855c2b5382988b9d919805ab3e74b7e5
verification and host name verification is really two different
things. On the other hand, you probably want both if you intend less
strict SSL verification. Maybe introduce some "verifiyLoose"
setting...
before the curl update.
f.e., [mms] commited just the same thing for the Imap_Client:
https://github.com/horde/horde/commit/0dcd8ae25ef273240693f78a4e038088e0e569f5
Notice the
+ 'ssl' => array(
+ 'verify_peer' => false,
+ 'verify_peer_name' => false
+ )
in there.
State ⇒ Feedback
verification and host name verification is really two different
things. On the other hand, you probably want both if you intend less
strict SSL verification. Maybe introduce some "verifiyLoose" setting...
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Horde_Http: Fix disabling SSL certificate hostname check
Queue ⇒ Horde Framework Packages
Milestone ⇒
Patch ⇒ Yes
New Attachment: 0001-Fix-disabling-SSL-certificate-hostname-check.patch
State ⇒ Unconfirmed
we should disable the hostname checking, too.
The recent curl security update for CVE-2013-4545 fixed
a bug that erroneously disabled the hostname checking
if the certificate verification was disabled.
I triggered this issue because Horde_Http no longer connected
to "localhost" over SSL as the given cert hostname was "xxx.yyy.zzz".