From 6fef5775cc1b70729e1526086c72c8fbaf584002 Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Wed, 4 Sep 2024 21:49:17 +0200 Subject: [PATCH] openssl_3: 3.0.14 -> 3.0.15 Contains two CVE fixes. * Fixed possible denial of service in X.509 name checks. (CVE-2024-6119) * Fixed possible buffer overread in SSL_select_next_proto(). (CVE-2024-5535) Changelog: https://github.com/openssl/openssl/blob/openssl-3.0/CHANGES.md#changes-between-3014-and-3015-3-sep-2024 Signed-off-by: Markus Theil --- pkgs/development/libraries/openssl/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 0975b8149653..9bf58ff4889f 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -286,8 +286,8 @@ in { }; openssl_3 = common { - version = "3.0.14"; - hash = "sha256-7soDXU3U6E/CWEbZUtpil0hK+gZQpvhMaC453zpBI8o="; + version = "3.0.15"; + hash = "sha256-I8Zm0O3yDxQkmz2PA2isrumrWFsJ4d6CEHxm4fPslTM="; patches = [ ./3.0/nix-ssl-cert-file.patch @@ -296,8 +296,6 @@ in { # This patch disables build-time detection. ./3.0/openssl-disable-kernel-detection.patch - ./3.3/CVE-2024-5535.patch - (if stdenv.hostPlatform.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch)