From: Emilia Käsper Date: Thu, 24 Jul 2014 20:15:29 +0000 (+0200) Subject: Fix DTLS anonymous EC(DH) denial of service X-Git-Tag: master-post-reformat~544 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=17160033765480453be0a41335fa6b833691c049;p=oweals%2Fopenssl.git Fix DTLS anonymous EC(DH) denial of service CVE-2014-3510 Reviewed-by: Dr. Stephen Henson --- diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c index 9a94de00d8..0a006a7534 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -2385,6 +2385,13 @@ int ssl3_send_client_key_exchange(SSL *s) RSA *rsa; unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH]; + if (s->session->sess_cert == NULL) + { + /* We should always have a server certificate with SSL_kRSA. */ + SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR); + goto err; + } + if (s->session->sess_cert->peer_rsa_tmp != NULL) rsa=s->session->sess_cert->peer_rsa_tmp; else