From: Dr. Stephen Henson Date: Thu, 29 May 2014 14:00:05 +0000 (+0100) Subject: Fix CVE-2014-3470 X-Git-Tag: OpenSSL_1_0_1h~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8011cd56e39a433b1837465259a9bd24a38727fb;p=oweals%2Fopenssl.git Fix CVE-2014-3470 Check session_cert is not NULL before dereferencing it. --- diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c index c99a4c495e..0457af8789 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -2512,6 +2512,13 @@ int ssl3_send_client_key_exchange(SSL *s) int ecdh_clnt_cert = 0; int field_size = 0; + if (s->session->sess_cert == NULL) + { + ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE); + SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_UNEXPECTED_MESSAGE); + goto err; + } + /* Did we send out the client's * ECDH share for use in premaster * computation as part of client certificate?