Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done
tipc_aead_decrypt() goes straight from tipc_bearer_hold(b) to
crypto_aead_decrypt(req) without taking a reference on the netns, unlike
the encrypt path. When crypto_aead_decrypt() is offloaded asynchronously
(e.g. the SIMD aead wrapper queuing to cryptd), the cryptd worker runs
tipc_aead_decrypt_done() later. If the bearer's netns is torn down in the
meantime, cleanup_net() -> tipc_exit_net() -> tipc_crypto_stop() frees the
per-netns tipc_crypto, and the completion then reads it:
tipc_aead_decrypt_done() dereferences aead->crypto->stats and
aead->crypto->net, and tipc_crypto_rcv_complete() dereferences
aead->crypto->aead[] and the node table -- reading freed memory.
Decoded KASAN splat (v7.1-rc7, CONFIG_KASAN_INLINE + TIPC + TIPC_CRYPTO):
BUG: KASAN: slab-use-after-free in tipc_aead_decrypt_done (net/tipc/crypto.c:999)
Read of size 8 at addr ffff8881056258a8 by task kworker/u16:2/51
Workqueue: events_unbound
Call Trace:
tipc_aead_decrypt_done (net/tipc/crypto.c:999)
process_one_work (kernel/workqueue.c:3314)
worker_thread (kernel/workqueue.c:3397 kernel/workqueue.c:3478)
kthread (kernel/kthread.c:436)
ret_from_fork (arch/x86/kernel/process.c:158)
ret_from_fork_asm (arch/x86/entry/entry_64.S:245)
Allocated by task 169:
__kasan_kmalloc (mm/kasan/common.c:398 mm/kasan/common.c:415)
tipc_crypto_start (net/tipc/crypto.c:1502)
tipc_init_net (net/tipc/core.c:72)
ops_init (net/core/net_namespace.c:137)
setup_net (net/core/net_namespace.c:446)
copy_net_ns (net/core/net_namespace.c:579)
create_new_namespaces (kernel/nsproxy.c:132)
__x64_sys_unshare (kernel/fork.c:3316)
do_syscall_64 (arch/x86/entry/syscall_64.c:63)
entry_SYSCALL_64_after_hwframe (arch/x86/entry/entry_64.S:121)
Freed by task 8:
kfree (mm/slub.c:6566)
tipc_exit_net (net/tipc/core.c:119)
cleanup_net (net/core/net_namespace.c:704)
process_one_work (kernel/workqueue.c:3314)
kthread (kernel/kthread.c:436)
This is the same class of bug that commit e279024617134 ("net/tipc: fix
slab-use-after-free Read in tipc_aead_encrypt_done") fixed for the encrypt
side. The encrypt path takes maybe_get_net(aead->crypto->net) before
crypto_aead_encrypt() and drops it with put_net() on the synchronous
return paths and in tipc_aead_encrypt_done(); the -EINPROGRESS/-EBUSY
return keeps the reference for the async callback to release. The decrypt
path was left without the equivalent guard.
Mirror the encrypt-side fix on the decrypt path: take a net reference
before crypto_aead_decrypt() (failing with -ENODEV and the matching
bearer put if it cannot be acquired), keep it across the
-EINPROGRESS/-EBUSY async return, and drop it with put_net() on the
synchronous success/error return and at the end of
tipc_aead_decrypt_done().
Reproduced under KASAN on v7.1-rc7: a UDP bearer with a cluster key is
flooded with crafted encrypted frames from an unknown peer (driving the
cluster-key decrypt path) while the bearer's netns is repeatedly torn
down. The completion must run asynchronously to outlive
tipc_crypto_stop(); on x86 the stock aesni gcm(aes) now decrypts
synchronously, so the async path was exercised via cryptd offload. The
unguarded aead->crypto dereference in tipc_aead_decrypt_done() is the
unpatched upstream path; tipc_aead_decrypt() still lacks
maybe_get_net(aead->crypto->net), so the completion can outlive the free
on any config where crypto_aead_decrypt() goes async.
Found by 0sec automated security-research tooling (https://0sec.ai).
SUSE information
Overall state of this security issue: Pending
This issue is currently rated as having moderate severity.
| CVSS detail | CNA (NVD) | Linux Kernel CNA | SUSE |
|---|---|---|---|
| Base Score | 8.8 | 8.8 | 6.3 |
| Vector | CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H | CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H | CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:H |
| Attack Vector | Network | Network | Local |
| Attack Complexity | Low | Low | High |
| Privileges Required | Low | Low | Low |
| User Interaction | None | None | None |
| Scope | Unchanged | Unchanged | Unchanged |
| Confidentiality Impact | High | High | High |
| Integrity Impact | High | High | None |
| Availability Impact | High | High | High |
| CVSSv3 Version | 3.1 | 3.1 | 3.1 |
| CVSS detail | SUSE |
|---|---|
| Base Score | 5.8 |
| Vector | CVSS:4.0/AV:L/AC:H/AT:P/PR:L/UI:N/VC:H/VI:N/VA:H/SC:N/SI:N/SA:N |
| Attack Vector | Local |
| Attack Complexity | High |
| Attack Requirements | Present |
| Privileges Required | Low |
| User Interaction | None |
| Vulnerable System Confidentiality Impact | High |
| Vulnerable System Integrity Impact | None |
| Vulnerable System Availability Impact | High |
| Subsequent System Confidentiality Impact | None |
| Subsequent System Integrity Impact | None |
| Subsequent System Availability Impact | None |
| CVSSv4 Version | 4.0 |
Note from the SUSE Security Team on the kernel-default package
SUSE will no longer fix all CVEs in the Linux Kernel anymore, but declare some bug classes as won't fix. Please refer to TID 21496 for more details. SUSE Bugzilla entry: 1272230 [IN_PROGRESS]SUSE Security Advisories:
- RHSA-2026:66325, published Sat Sep 12 15:07:46 UTC 2026
- RHSA-2026:67150, published Wed Sep 16 15:07:49 UTC 2026
- SUSE-SU-2026:23477-1, published 2026-09-08T11:04:19Z
- SUSE-SU-2026:23481-1, published 2026-09-08T11:39:42Z
- SUSE-SU-2026:23490-1, published 2026-09-08T13:00:49Z
- SUSE-SU-2026:23491-1, published 2026-09-08T11:04:19Z
- SUSE-SU-2026:23510-1, published 2026-09-08T13:00:49Z
- SUSE-SU-2026:23528-1, published 2026-09-08T12:54:32Z
- SUSE-SU-2026:23529-1, published 2026-09-08T13:00:49Z
- SUSE-SU-2026:4120-1, published 2026-09-10T09:31:36Z
- SUSE-SU-2026:4254-1, published Thu Sep 17 23:02:26 CEST 2026
- SUSE-SU-2026:4279-1, published Tue Sep 22 19:04:40 CEST 2026
- SUSE-SU-2026:4284-1, published Tue Sep 22 23:03:42 CEST 2026
- SUSE-SU-2026:4347-1, published Thu Sep 24 23:03:01 CEST 2026
List of released packages
| Product(s) | Fixed package version(s) | References |
|---|---|---|
| Container bci/bci-sle15-kernel-module-devel:15.7-61.21 |
| |
| Container suse/hpc/warewulf4-x86_64/sle-hpc-node:15.7.20.8.168 Image SLES15-SP7-BYOS-Azure Image SLES15-SP7-BYOS-EC2 Image SLES15-SP7-BYOS-GCE Image SLES15-SP7-EC2 Image SLES15-SP7-EC2-ECS-HVM Image SLES15-SP7-GCE Image SLES15-SP7-HPC-Azure Image SLES15-SP7-HPC-BYOS-Azure Image SLES15-SP7-HPC-BYOS-EC2 Image SLES15-SP7-SAPCAL-Azure Image SLES15-SP7-SAPCAL-EC2 Image SLES15-SP7-SAPCAL-GCE |
| |
| Container suse/sl-micro/6.0/base-os-container:2.1.3-7.208 Container suse/sl-micro/6.1/base-os-container:2.2.1-5.184 Image SL-Micro-Azure Image SL-Micro-BYOS-Azure Image SL-Micro-BYOS-EC2 Image SL-Micro-BYOS-GCE Image SL-Micro-EC2 Image SLE-Micro Image SLE-Micro-Azure Image SLE-Micro-BYOS Image SLE-Micro-BYOS-Azure Image SLE-Micro-BYOS-EC2 Image SLE-Micro-BYOS-GCE Image SLE-Micro-EC2 Image SLE-Micro-GCE Image SUSE-Multi-Linux-Manager-Proxy-BYOS-Azure Image SUSE-Multi-Linux-Manager-Proxy-BYOS-EC2 Image SUSE-Multi-Linux-Manager-Proxy-BYOS-GCE Image SUSE-Multi-Linux-Manager-Server-BYOS-Azure Image SUSE-Multi-Linux-Manager-Server-BYOS-EC2 Image SUSE-Multi-Linux-Manager-Server-BYOS-GCE Image SUSE-Multi-Linux-Manager-Server-EC2-llc Image SUSE-Multi-Linux-Manager-Server-EC2-ltd |
| |
| Container suse/sl-micro/6.0/kvm-os-container:2.1.3-6.218 Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.186 |
| |
| Container suse/sl-micro/6.0/rt-os-container:2.1.3-7.237 Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.180 |
| |
| Container suse/sle-micro-rancher/5.3:latest Container suse/sle-micro-rancher/5.4:5.4.4.5.191 Image SLES15-SP4-Micro-5-4 Image SLES15-SP4-Micro-5-4-BYOS Image SLES15-SP4-Micro-5-4-BYOS-Azure Image SLES15-SP4-Micro-5-4-BYOS-EC2 Image SLES15-SP4-Micro-5-4-BYOS-GCE Image SLES15-SP4-Micro-5-4-EC2 Image SLES15-SP4-Micro-5-4-GCE |
| |
| Container suse/sle-micro/rt-5.5:2.0.4-4.5.730 |
| |
| Image SLES15-SP7-Azure-3P Image SLES15-SP7-Azure-Standard |
| |
| Image SLES15-SP7-SAP-Azure Image SLES15-SP7-SAP-Azure-3P Image SLES15-SP7-SAP-BYOS-Azure Image SLES15-SP7-SAP-BYOS-EC2 Image SLES15-SP7-SAP-BYOS-GCE Image SLES15-SP7-SAP-EC2 Image SLES15-SP7-SAP-GCE Image SLES15-SP7-SAP-GCE-3P |
| |
| SUSE Liberty Linux 8 |
| Patchnames: RHSA-2026:66325 (x86_64) |
| SUSE Liberty Linux 9 |
| Patchnames: RHSA-2026:67150 (x86_64) |
| SUSE Linux Enterprise Desktop 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) SUSE-SLE-Module-Development-Tools-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) SUSE-SLE-Product-WE-15-SP7-2026-4254 (x86_64) |
| SUSE Linux Enterprise High Availability Extension 15 SP4 |
| Patchnames: SUSE-SLE-Product-HA-15-SP4-2026-4284 (aarch64,ppc64le,s390x,x86_64) |
| SUSE Linux Enterprise High Availability Extension 15 SP7 |
| Patchnames: SUSE-SLE-Product-HA-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-ESPOS-2026-4284 (aarch64,x86_64) |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-LTSS-2026-4284 (aarch64,x86_64) |
| SUSE Linux Enterprise Micro 5.3 |
| Patchnames: SUSE-SLE-Micro-5.3-2026-4279 (x86_64) SUSE-SLE-Micro-5.3-2026-4284 (aarch64,s390x,x86_64) |
| SUSE Linux Enterprise Micro 5.4 |
| Patchnames: SUSE-SLE-Micro-5.4-2026-4279 (x86_64) SUSE-SLE-Micro-5.4-2026-4284 (aarch64,s390x,x86_64) |
| SUSE Linux Enterprise Micro 5.5 |
| Patchnames: SUSE-SLE-Micro-5.5-2026-4347 (x86_64) |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) |
| SUSE Linux Enterprise Module for Legacy 15 SP7 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP7-2026-4254 (aarch64,x86_64) |
| SUSE Linux Enterprise Real Time 15 SP7 SUSE Real Time Module 15 SP7 |
| Patchnames: SUSE-SLE-Module-RT-15-SP7-2026-4120 (x86_64) |
| SUSE Linux Enterprise Server 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP4-LTSS-2026-4284 (aarch64,ppc64le,s390x,x86_64) |
| SUSE Linux Enterprise Server 15 SP7 SUSE Linux Enterprise Server for SAP Applications 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) SUSE-SLE-Module-Development-Tools-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) SUSE-SLE-Module-Legacy-15-SP7-2026-4254 (aarch64,ppc64le,s390x,x86_64) SUSE-SLE-Module-Public-Cloud-15-SP7-2026-4254 (aarch64,x86_64) SUSE-SLE-Product-WE-15-SP7-2026-4254 (x86_64) |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP4-2026-4284 (ppc64le,x86_64) |
| SUSE Linux Enterprise Workstation Extension 15 SP7 |
| Patchnames: SUSE-SLE-Product-WE-15-SP7-2026-4254 (x86_64) |
| SUSE Linux Micro 6.0 |
| Patchnames: SUSE-SLE-Micro-6.0-kernel-601 (aarch64,s390x,x86_64) SUSE-SLE-Micro-6.0-kernel-603 (x86_64) |
| SUSE Linux Micro 6.1 |
| Patchnames: SUSE-SLE-Micro-6.1-kernel-601 (aarch64,ppc64le,s390x,x86_64) SUSE-SLE-Micro-6.1-kernel-603 (aarch64,x86_64) |
| openSUSE Leap 16.0 |
| Patchnames: openSUSE-Leap-16.0-1738 |
| openSUSE Tumbleweed |
| Patchnames: openSUSE-Tumbleweed-2026-11339 |
List of packages in QA
| Product(s) | Package(s) |
|---|---|
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS |
|
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS |
|
| SUSE Linux Enterprise Micro 5.5 |
|
| SUSE Linux Enterprise Server 15 SP5-LTSS |
|
| SUSE Linux Enterprise Server 15 SP5-LTSS |
|
| SUSE Linux Enterprise Server 15 SP6-LTSS |
|
| SUSE Linux Enterprise Server 15 SP6-LTSS |
|
| SUSE Linux Enterprise Server 16.0 |
|
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 |
|
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 |
|
| SUSE Linux Enterprise Server for SAP applications 16.0 |
|
| SUSE Linux Micro 6.2 |
|
| SUSE Linux Micro Extras 6.2 |
|
First public cloud image revisions this CVE is fixed in:
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260914-arm64
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260914-x86_64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260914-arm64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260914-x86_64
- amazon/suse-multi-linux-manager-server-5-1-v20260914-arm64-llc
- amazon/suse-multi-linux-manager-server-5-1-v20260914-arm64-ltd
- amazon/suse-multi-linux-manager-server-5-1-v20260914-x86_64-llc
- amazon/suse-multi-linux-manager-server-5-1-v20260914-x86_64-ltd
- amazon/suse-sle-hpc-15-sp7-byos-v20260922-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-4-byos-v20260923-hvm-ssd-arm64
- amazon/suse-sle-micro-5-4-byos-v20260923-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-4-v20260923-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-5-4-v20260923-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-5-4-v20260923-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-5-4-v20260923-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-6-0-v20260916-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-0-v20260916-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-0-v20260916-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-0-v20260916-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-6-1-byos-v20260914-hvm-ssd-arm64
- amazon/suse-sle-micro-6-1-byos-v20260914-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-1-v20260914-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-1-v20260914-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-1-v20260914-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-1-v20260914-hvm-ssd-x86_64-ltd
- amazon/suse-sles-15-sp7-byos-v20260922-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-byos-v20260922-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-sapcal-v20260922-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260918-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-v20260918-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260922-ecs-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp7-byos-v20260921-hvm-ssd-x86_64
- google/sle-micro-5-4-byos-v20260923-arm64
- google/sle-micro-5-4-byos-v20260923-x86-64
- google/sle-micro-6-1-byos-v20260914-arm64
- google/sle-micro-6-1-byos-v20260914-x86-64
- google/sles-15-sp7-byos-v20260918-arm64
- google/sles-15-sp7-byos-v20260918-x86-64
- google/sles-15-sp7-sapcal-v20260922-x86-64
- google/sles-15-sp7-v20260918-arm64
- google/sles-15-sp7-v20260918-x86-64
- google/sles-sap-15-sp7-byos-v20260921-x86-64
- google/sles-sap-15-sp7-v20260921-x86-64
- google/suse-multi-linux-mgr-proxy-5-1-byos-v20260914-arm64
- google/suse-multi-linux-mgr-proxy-5-1-byos-v20260914-x86-64
- google/suse-multi-linux-mgr-server-5-1-byos-v20260914-arm64
- google/suse-multi-linux-mgr-server-5-1-byos-v20260914-x86-64
- microsoft/suse-multi-linux-manager-proxy-5-1-byos-v20260914-arm64
- microsoft/suse-multi-linux-manager-proxy-5-1-byos-v20260914-x86_64
- microsoft/suse-multi-linux-manager-server-5-1-byos-v20260914-arm64
- microsoft/suse-multi-linux-manager-server-5-1-byos-v20260914-x86_64
- microsoft/suse-sle-hpc-15-sp7-byos-v20260922-x86_64
- microsoft/suse-sle-micro-5-4-byos-v20260923-arm64
- microsoft/suse-sle-micro-5-4-byos-v20260923-x86_64
- microsoft/suse-sle-micro-6-0-v20260916-arm64-llc
- microsoft/suse-sle-micro-6-0-v20260916-arm64-ltd
- microsoft/suse-sle-micro-6-0-v20260916-x86_64-llc
- microsoft/suse-sle-micro-6-0-v20260916-x86_64-ltd
- microsoft/suse-sle-micro-6-1-byos-v20260914-arm64
- microsoft/suse-sle-micro-6-1-byos-v20260914-x86_64
- microsoft/suse-sle-micro-6-1-v20260914-arm64-llc
- microsoft/suse-sle-micro-6-1-v20260914-arm64-ltd
- microsoft/suse-sle-micro-6-1-v20260914-x86_64-llc
- microsoft/suse-sle-micro-6-1-v20260914-x86_64-ltd
- microsoft/suse-sles-15-sp7-byos-v20260918-arm64
- microsoft/suse-sles-15-sp7-byos-v20260922-x86_64
- microsoft/suse-sles-15-sp7-sapcal-v20260922-x86_64
- microsoft/suse-sles-15-sp7-v20260918-arm64
- microsoft/suse-sles-15-sp7-v20260918-arm64-llc
- microsoft/suse-sles-15-sp7-v20260918-arm64-ltd
- microsoft/suse-sles-15-sp7-v20260918-x86_64
- microsoft/suse-sles-15-sp7-v20260918-x86_64-ltd
- microsoft/suse-sles-sap-15-sp7-byos-v20260921-x86_64
- microsoft/suse-sles-sap-15-sp7-v20260921-x86_64
- microsoft/suse-sles-sap-15-sp7-v20260921-x86_64-ltd
Status of this issue by product and package
Please note that this evaluation state might be work in progress, incomplete or outdated. Also information for service packs in the LTSS phase is only included for issues meeting the LTSS criteria. If in doubt, feel free to contact us for clarification. The updates are grouped by state of their lifecycle. SUSE product lifecycles are documented on the lifecycle page.
| Product(s) | Source package | State |
|---|---|---|
| Products under general support and receiving all security fixes. | ||
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Desktop 15 SP7 | kernel-zfcpdump | Released |
| SUSE Linux Enterprise High Availability Extension 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise High Availability Extension 15 SP7 | kernel-source | Affected |
| SUSE Linux Enterprise High Availability Extension 16.0 | kernel-default | Affected |
| SUSE Linux Enterprise High Availability Extension 16.0 | kernel-source | Affected |
| SUSE Linux Enterprise High Availability Extension 16.1 | kernel-default | Affected |
| SUSE Linux Enterprise High Availability Extension 16.1 | kernel-source | Affected |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-default | Affected |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-source | Affected |
| SUSE Linux Enterprise Micro 5.3 | kernel-default | Released |
| SUSE Linux Enterprise Micro 5.3 | kernel-default-base | Released |
| SUSE Linux Enterprise Micro 5.3 | kernel-rt | Released |
| SUSE Linux Enterprise Micro 5.3 | kernel-source | Released |
| SUSE Linux Enterprise Micro 5.3 | kernel-source-rt | Released |
| SUSE Linux Enterprise Micro 5.4 | kernel-default | Released |
| SUSE Linux Enterprise Micro 5.4 | kernel-default-base | Released |
| SUSE Linux Enterprise Micro 5.4 | kernel-rt | Released |
| SUSE Linux Enterprise Micro 5.4 | kernel-source | Released |
| SUSE Linux Enterprise Micro 5.4 | kernel-source-rt | Released |
| SUSE Linux Enterprise Micro 5.5 | kernel-default | In progress |
| SUSE Linux Enterprise Micro 5.5 | kernel-default-base | In progress |
| SUSE Linux Enterprise Micro 5.5 | kernel-rt | Released |
| SUSE Linux Enterprise Micro 5.5 | kernel-source | In progress |
| SUSE Linux Enterprise Micro 5.5 | kernel-source-rt | Released |
| SUSE Linux Enterprise Micro for Rancher 5.3 | kernel-default | Released |
| SUSE Linux Enterprise Micro for Rancher 5.3 | kernel-source | Released |
| SUSE Linux Enterprise Micro for Rancher 5.3 | kernel-source-rt | Released |
| SUSE Linux Enterprise Micro for Rancher 5.4 | kernel-default | Released |
| SUSE Linux Enterprise Micro for Rancher 5.4 | kernel-source | Released |
| SUSE Linux Enterprise Micro for Rancher 5.4 | kernel-source-rt | Released |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Module for Legacy 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Module for Legacy 15 SP7 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-default | Affected |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-source | Affected |
| SUSE Linux Enterprise Real Time 15 SP7 | kernel-rt | Released |
| SUSE Linux Enterprise Real Time 15 SP7 | kernel-source-rt | Released |
| SUSE Linux Enterprise Real Time 15 SP7 | kernel-syms-rt | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Server 16.0 | kernel-64kb | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-azure | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-default | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-default-base | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-docs | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-kvmsmall | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-obs-qa | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-source | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-syms | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-zfcpdump | In progress |
| SUSE Linux Enterprise Server 16.1 | kernel-default | Affected |
| SUSE Linux Enterprise Server 16.1 | kernel-source | Affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-64kb | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-azure | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-default | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-default-base | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-docs | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-kvmsmall | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-obs-qa | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-source | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-syms | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-zfcpdump | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.1 | kernel-default | Affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | kernel-source | Affected |
| SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-source | Affected |
| SUSE Linux Micro 6.0 | kernel-default | Released |
| SUSE Linux Micro 6.0 | kernel-default-base | Released |
| SUSE Linux Micro 6.0 | kernel-kvmsmall | Released |
| SUSE Linux Micro 6.0 | kernel-rt | Released |
| SUSE Linux Micro 6.0 | kernel-source | Released |
| SUSE Linux Micro 6.0 | kernel-source-rt | Released |
| SUSE Linux Micro 6.1 | kernel-default | Released |
| SUSE Linux Micro 6.1 | kernel-default-base | Released |
| SUSE Linux Micro 6.1 | kernel-kvmsmall | Released |
| SUSE Linux Micro 6.1 | kernel-rt | Released |
| SUSE Linux Micro 6.1 | kernel-source | Released |
| SUSE Linux Micro 6.1 | kernel-source-rt | Released |
| SUSE Linux Micro 6.2 | kernel-64kb | In progress |
| SUSE Linux Micro 6.2 | kernel-default | In progress |
| SUSE Linux Micro 6.2 | kernel-default-base | In progress |
| SUSE Linux Micro 6.2 | kernel-rt | In progress |
| SUSE Linux Micro 6.2 | kernel-source | In progress |
| SUSE Linux Micro Extras 6.0 | kernel-default | Released |
| SUSE Linux Micro Extras 6.0 | kernel-source | Released |
| SUSE Linux Micro Extras 6.0 | kernel-source-rt | Released |
| SUSE Linux Micro Extras 6.1 | kernel-default | Released |
| SUSE Linux Micro Extras 6.1 | kernel-source | Released |
| SUSE Linux Micro Extras 6.2 | kernel-obs-build | In progress |
| SUSE Linux Micro Extras 6.2 | kernel-syms | In progress |
| SUSE Real Time Module 15 SP7 | kernel-rt | Released |
| SUSE Real Time Module 15 SP7 | kernel-source-rt | Released |
| SUSE Real Time Module 15 SP7 | kernel-syms-rt | Released |
| openSUSE Leap 16.0 | kernel-source | Affected |
| Products under Long Term Service Pack support and receiving important and critical security fixes. | ||
| SUSE Linux Enterprise High Availability Extension 15 SP4 | kernel-default | Released |
| SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-64kb | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-default | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-default-base | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-docs | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-obs-build | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-source | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS | kernel-syms | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-64kb | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-default | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-default-base | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-docs | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-obs-build | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-source | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-syms | In progress |
| SUSE Linux Enterprise Live Patching 12 SP5 | kernel-default | Not affected |
| SUSE Linux Enterprise Live Patching 12 SP5 | kernel-source | Not affected |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Affected |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-default | Affected |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-default | Not affected |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP5 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-64kb | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-default | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-default-base | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-docs | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-obs-build | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-source | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-syms | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Server 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-64kb | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-default | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-default-base | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-docs | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-obs-build | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-source | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-syms | In progress |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-zfcpdump | In progress |
| SUSE Linux Enterprise Server 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-64kb | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-default | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-default-base | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-docs | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-obs-build | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-source | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-syms | In progress |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-zfcpdump | In progress |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-default | Not affected |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-default | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-default-base | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-docs | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-obs-build | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-source | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-syms | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default-base | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-docs | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-obs-build | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-syms | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default-base | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-docs | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-obs-build | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-source | In progress |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-syms | In progress |
| Products past their end of life and not receiving proactive updates anymore. | ||
| SUSE CaaS Platform 4.0 | kernel-source | Not affected |
| SUSE Enterprise Storage 6 | kernel-source | Not affected |
| SUSE Enterprise Storage 7 | kernel-source | Not affected |
| SUSE Enterprise Storage 7.1 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP3 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Desktop 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Desktop 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3 | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-64kb | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-default | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-default-base | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-docs | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-obs-build | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-source | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS | kernel-syms | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-64kb | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-default | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-default-base | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-docs | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-obs-build | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-source | In progress |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-syms | In progress |
| SUSE Linux Enterprise Micro 5.0 | kernel-default | Not affected |
| SUSE Linux Enterprise Micro 5.1 | kernel-default | Not affected |
| SUSE Linux Enterprise Micro 5.2 | kernel-default | Not affected |
| SUSE Linux Enterprise Micro 5.2 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP3 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP3 | kernel-source | Not affected |
| SUSE Linux Enterprise Real Time 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Real Time 15 SP3 | kernel-source | Not affected |
| SUSE Linux Enterprise Real Time 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Real Time 15 SP4 | kernel-source-rt | Affected |
| SUSE Linux Enterprise Real Time 15 SP5 | kernel-source-rt | Affected |
| SUSE Linux Enterprise Server 11 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP1-BCL | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP3 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP3-BCL | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-source | Not affected |
| SUSE Manager Proxy 4.0 | kernel-source | Not affected |
| SUSE Manager Proxy 4.1 | kernel-source | Not affected |
| SUSE Manager Proxy 4.2 | kernel-source | Not affected |
| SUSE Manager Proxy 4.3 | kernel-source | Affected |
| SUSE Manager Proxy LTS 4.3 | kernel-source | Affected |
| SUSE Manager Retail Branch Server 4.0 | kernel-source | Not affected |
| SUSE Manager Retail Branch Server 4.1 | kernel-source | Not affected |
| SUSE Manager Retail Branch Server 4.2 | kernel-source | Not affected |
| SUSE Manager Retail Branch Server 4.3 | kernel-source | Affected |
| SUSE Manager Retail Branch Server LTS 4.3 | kernel-source | Affected |
| SUSE Manager Server 4.0 | kernel-source | Not affected |
| SUSE Manager Server 4.1 | kernel-source | Not affected |
| SUSE Manager Server 4.2 | kernel-source | Not affected |
| SUSE Manager Server 4.3 | kernel-source | Affected |
| SUSE Manager Server LTS 4.3 | kernel-source | Affected |
| SUSE Real Time Module 15 SP4 | kernel-source-rt | Affected |
| SUSE Real Time Module 15 SP5 | kernel-source-rt | Affected |
| openSUSE Leap 15.3 | kernel-source | Not affected |
| openSUSE Leap 15.4 | kernel-default | Released |
| openSUSE Leap 15.4 | kernel-source | Released |
| openSUSE Leap 15.4 | kernel-source-rt | Affected |
| openSUSE Leap 15.5 | kernel-source | Affected |
| openSUSE Leap 15.5 | kernel-source-rt | Released |
| openSUSE Leap 15.6 | kernel-source | Affected |
SUSE Timeline for this CVE
CVE page created: Sun Jul 19 17:30:51 2026CVE page last modified: Fri Sep 25 12:50:23 2026