projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
519c977
)
Fix CVE-2014-3470
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 29 May 2014 14:00:05 +0000
(15:00 +0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Tue, 3 Jun 2014 15:30:37 +0000
(16:30 +0100)
Check session_cert is not NULL before dereferencing it.
ssl/s3_clnt.c
patch
|
blob
|
history
diff --git
a/ssl/s3_clnt.c
b/ssl/s3_clnt.c
index 450d5592856c089832c4676b5046f6f1520d45cd..83d6ede3f7752e9f8018810696202100a5f9345a 100644
(file)
--- a/
ssl/s3_clnt.c
+++ b/
ssl/s3_clnt.c
@@
-2302,6
+2302,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?