Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions SPECS/kubernetes/CVE-2026-73500.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
From 6a0374ad9665e4d174fb94ff933a92f786c06dc8 Mon Sep 17 00:00:00 2001
From: Benjamin Wang <benjamin.ahrtr@gmail.com>
Date: Tue, 21 Jul 2026 10:16:47 +0100
Subject: [PATCH] Set a tlsHandshakeTimeout for tlsListener

Signed-off-by: Benjamin Wang <benjamin.ahrtr@gmail.com>
Signed-off-by: Azure Linux Security Servicing Account <azurelinux-security@microsoft.com>
Upstream-reference: https://github.com/etcd-io/etcd/commit/8e4dd0679a2c6b095d2a32a749fda2521c7809a3.patch
---
.../etcd/client/pkg/v3/transport/listener_tls.go | 8 ++++++++
1 file changed, 8 insertions(+)

diff --git a/vendor/go.etcd.io/etcd/client/pkg/v3/transport/listener_tls.go b/vendor/go.etcd.io/etcd/client/pkg/v3/transport/listener_tls.go
index 6f160094..7e009f19 100644
--- a/vendor/go.etcd.io/etcd/client/pkg/v3/transport/listener_tls.go
+++ b/vendor/go.etcd.io/etcd/client/pkg/v3/transport/listener_tls.go
@@ -23,6 +23,12 @@ import (
"net"
"strings"
"sync"
+ "time"
+)
+
+const (
+ // tlsHandshakeTimeout bounds how long a single TLS handshake may block.
+ tlsHandshakeTimeout = 10 * time.Second
)

// tlsListener overrides a TLS listener so it will reject client
@@ -143,6 +149,7 @@ func (l *tlsListener) acceptLoop() {
}()

tlsConn := conn.(*tls.Conn)
+ _ = tlsConn.SetDeadline(time.Now().Add(tlsHandshakeTimeout))
herr := tlsConn.Handshake()
pendingMu.Lock()
delete(pending, conn)
@@ -152,6 +159,7 @@ func (l *tlsListener) acceptLoop() {
l.handshakeFailure(tlsConn, herr)
return
}
+ _ = tlsConn.SetDeadline(time.Time{})
if err := l.check(ctx, tlsConn); err != nil {
l.handshakeFailure(tlsConn, err)
return
--
2.45.4

6 changes: 5 additions & 1 deletion SPECS/kubernetes/kubernetes.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Summary: Microsoft Kubernetes
Name: kubernetes
Version: 1.30.10
Release: 27%{?dist}
Release: 28%{?dist}
License: ASL 2.0
Vendor: Microsoft Corporation
Distribution: Azure Linux
Expand Down Expand Up @@ -49,6 +49,7 @@ Patch27: CVE-2026-39835.patch
Patch28: CVE-2026-42502.patch
Patch29: CVE-2026-56852.patch
Patch30: CVE-2024-7598.patch
Patch31: CVE-2026-73500.patch

BuildRequires: flex-devel
BuildRequires: glibc-static >= 2.38-20%{?dist}
Expand Down Expand Up @@ -301,6 +302,9 @@ fi
%{_exec_prefix}/local/bin/pause

%changelog
* Fri Aug 14 2026 Azure Linux Security Servicing Account <azurelinux-security@microsoft.com> - 1.30.10-28
- Patch for CVE-2026-73500

* Mon Jul 27 2026 Azure Linux Security Servicing Account <azurelinux-security@microsoft.com> - 1.30.10-27
- Patch for CVE-2024-7598

Expand Down
Loading