mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-29 22:20:30 +00:00
Merge remote-tracking branch 'upstream-public/pr/1439' into development-proposed
This commit is contained in:
commit
95ad522ecc
@ -19,6 +19,8 @@ Security
|
|||||||
resumption of the session).
|
resumption of the session).
|
||||||
* Verify results of RSA private key operations to defend
|
* Verify results of RSA private key operations to defend
|
||||||
against Bellcore glitch attack.
|
against Bellcore glitch attack.
|
||||||
|
* Fix a buffer overread in ssl_parse_server_key_exchange() that could cause
|
||||||
|
a crash on invalid input.
|
||||||
|
|
||||||
Features
|
Features
|
||||||
* Extend PKCS#8 interface by introducing support for the entire SHA
|
* Extend PKCS#8 interface by introducing support for the entire SHA
|
||||||
@ -55,6 +57,8 @@ Bugfix
|
|||||||
* Log correct number of ciphersuites used in Client Hello message. #918
|
* Log correct number of ciphersuites used in Client Hello message. #918
|
||||||
* Fix X509 CRT parsing that would potentially accept an invalid tag when
|
* Fix X509 CRT parsing that would potentially accept an invalid tag when
|
||||||
parsing the subject alternative names.
|
parsing the subject alternative names.
|
||||||
|
* Fix a possible arithmetic overflow in ssl_parse_server_key_exchange()
|
||||||
|
that could cause a key exchange to fail on valid data.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Fix tag lengths and value ranges in the documentation of CCM encryption.
|
* Fix tag lengths and value ranges in the documentation of CCM encryption.
|
||||||
|
@ -2479,10 +2479,18 @@ static int ssl_parse_server_key_exchange( mbedtls_ssl_context *ssl )
|
|||||||
/*
|
/*
|
||||||
* Read signature
|
* Read signature
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if( p > end - 2 )
|
||||||
|
{
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad server key exchange message" ) );
|
||||||
|
mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
|
||||||
|
MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR );
|
||||||
|
return( MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE );
|
||||||
|
}
|
||||||
sig_len = ( p[0] << 8 ) | p[1];
|
sig_len = ( p[0] << 8 ) | p[1];
|
||||||
p += 2;
|
p += 2;
|
||||||
|
|
||||||
if( end != p + sig_len )
|
if( p != end - sig_len )
|
||||||
{
|
{
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad server key exchange message" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad server key exchange message" ) );
|
||||||
mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
|
mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user