Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] mbedtls: security bump to version 2.7.5
@ 2018-08-24 16:27 Peter Korsgaard
  2018-08-24 21:12 ` Thomas Petazzoni
  2018-08-26 21:15 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-08-24 16:27 UTC (permalink / raw)
  To: buildroot

Fixes the following security issues:

- CVE-2018-0497: Remote plaintext recovery on use of CBC based ciphersuites
  through a timing side-channel

- CVE-2018-0498: Plaintext recovery on use of CBC based ciphersuites through
  a cache based side-channel

For more info, see the advisory:
https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2018-02

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/mbedtls/mbedtls.hash | 6 +++---
 package/mbedtls/mbedtls.mk   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/mbedtls/mbedtls.hash b/package/mbedtls/mbedtls.hash
index cf347d299f..47e446dd07 100644
--- a/package/mbedtls/mbedtls.hash
+++ b/package/mbedtls/mbedtls.hash
@@ -1,5 +1,5 @@
-# From https://tls.mbed.org/tech-updates/releases/mbedtls-2.11.0-2.7.4-and-2.1.13-released
-sha1	20394e353050992c5f9699da7c9a336bd2ed2dea	mbedtls-2.7.4-apache.tgz
-sha256	34e164d49500e377970c5f6761a146078baae0e086ec88cdcfeb9c96878a38f5	mbedtls-2.7.4-apache.tgz
+# From https://tls.mbed.org/tech-updates/releases/mbedtls-2.12.0-2.7.5-and-2.1.14-released
+sha1	180ca49e2bb6df3826113781b793529a81427ce3	mbedtls-2.7.5-apache.tgz
+sha256	a1302ad9094aabb9880d2755927b466a6bac8e02b68e04dee77321f3859e9b40	mbedtls-2.7.5-apache.tgz
 # Locally calculated
 sha256	cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30	apache-2.0.txt
diff --git a/package/mbedtls/mbedtls.mk b/package/mbedtls/mbedtls.mk
index ab415dd0b8..e07cc3d71c 100644
--- a/package/mbedtls/mbedtls.mk
+++ b/package/mbedtls/mbedtls.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 MBEDTLS_SITE = https://tls.mbed.org/code/releases
-MBEDTLS_VERSION = 2.7.4
+MBEDTLS_VERSION = 2.7.5
 MBEDTLS_SOURCE = mbedtls-$(MBEDTLS_VERSION)-apache.tgz
 MBEDTLS_CONF_OPTS = \
 	-DENABLE_PROGRAMS=$(if $(BR2_PACKAGE_MBEDTLS_PROGRAMS),ON,OFF) \
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] mbedtls: security bump to version 2.7.5
  2018-08-24 16:27 [Buildroot] [PATCH] mbedtls: security bump to version 2.7.5 Peter Korsgaard
@ 2018-08-24 21:12 ` Thomas Petazzoni
  2018-08-26 21:15 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-08-24 21:12 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 24 Aug 2018 18:27:15 +0200, Peter Korsgaard wrote:
> Fixes the following security issues:
> 
> - CVE-2018-0497: Remote plaintext recovery on use of CBC based ciphersuites
>   through a timing side-channel
> 
> - CVE-2018-0498: Plaintext recovery on use of CBC based ciphersuites through
>   a cache based side-channel
> 
> For more info, see the advisory:
> https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2018-02
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  package/mbedtls/mbedtls.hash | 6 +++---
>  package/mbedtls/mbedtls.mk   | 2 +-
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] mbedtls: security bump to version 2.7.5
  2018-08-24 16:27 [Buildroot] [PATCH] mbedtls: security bump to version 2.7.5 Peter Korsgaard
  2018-08-24 21:12 ` Thomas Petazzoni
@ 2018-08-26 21:15 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-08-26 21:15 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes the following security issues:
 > - CVE-2018-0497: Remote plaintext recovery on use of CBC based ciphersuites
 >   through a timing side-channel

 > - CVE-2018-0498: Plaintext recovery on use of CBC based ciphersuites through
 >   a cache based side-channel

 > For more info, see the advisory:
 > https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2018-02

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2018.02.x and 2018.05.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-08-26 21:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-24 16:27 [Buildroot] [PATCH] mbedtls: security bump to version 2.7.5 Peter Korsgaard
2018-08-24 21:12 ` Thomas Petazzoni
2018-08-26 21:15 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox