Fix alternate chains certificate forgery issue
authorMatt Caswell <matt@openssl.org>
Wed, 24 Jun 2015 14:55:36 +0000 (15:55 +0100)
committerMatt Caswell <matt@openssl.org>
Tue, 7 Jul 2015 21:50:04 +0000 (22:50 +0100)
commit9a0db453ba017ebcaccbee933ee6511a9ae4d1c8
treedb727a66703b31d7b67d99d4e38c02aea4387f5c
parentcb6e0ed17a61ae3711d385f517d61be2b4c33a55
Fix alternate chains certificate forgery issue

During certificate verfification, OpenSSL will attempt to find an
alternative certificate chain if the first attempt to build such a chain
fails. An error in the implementation of this logic can mean that an
attacker could cause certain checks on untrusted certificates to be
bypassed, such as the CA flag, enabling them to use a valid leaf
certificate to act as a CA and "issue" an invalid certificate.

This occurs where at least one cert is added to the first chain from the
trust store, but that chain still ends up being untrusted. In that case
ctx->last_untrusted is decremented in error.

Patch provided by the BoringSSL project.

CVE-2015-1793

Reviewed-by: Stephen Henson <steve@openssl.org>
crypto/x509/x509_vfy.c