From: Dr. Stephen Henson Date: Thu, 29 May 2014 14:00:05 +0000 (+0100) Subject: Fix CVE-2014-3470 X-Git-Tag: OpenSSL_0_9_8za~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=141a5482fdd1944804cc342c1c443362eed8501b;p=openssl 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 af2960027c..06fb2754f0 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -2174,6 +2174,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?