Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:mm/slub: add missing TID updates on slab deactivation
The fastpath in slab_alloc_node() assumes that c->slab is stable as long as
the TID stays the same. However, two places in __slab_alloc() currently
don't update the TID when deactivating the CPU slab.
If multiple operations race the right way, this could lead to an object
getting lost; or, in an even more unlikely situation, it could even lead to
an object being freed onto the wrong slab's freelist, messing up the
`inuse` counter and eventually causing a page to be freed to the page
allocator while it still contains slab objects.
(I haven't actually tested these cases though, this is just based on
looking at the code. Writing testcases for this stuff seems like it'd be
a pain...)
The race leading to state inconsistency is (all operations on the same CPU
and kmem_cache):
- task A: begin do_slab_free():
- read TID
- read pcpu freelist (==NULL)
- check `slab == c->slab` (true)
- [PREEMPT A->B]
- task B: begin slab_alloc_node():
- fastpath fails (`c->freelist` is NULL)
- enter __slab_alloc()
- slub_get_cpu_ptr() (disables preemption)
- enter ___slab_alloc()
- take local_lock_irqsave()
- read c->freelist as NULL
- get_freelist() returns NULL
- write `c->slab = NULL`
- drop local_unlock_irqrestore()
- goto new_slab
- slub_percpu_partial() is NULL
- get_partial() returns NULL
- slub_put_cpu_ptr() (enables preemption)
- [PREEMPT B->A]
- task A: finish do_slab_free():
- this_cpu_cmpxchg_double() succeeds()
- [CORRUPT STATE: c->slab==NULL, c->freelist!=NULL]
From there, the object on c->freelist will get lost if task B is allowed to
continue from here: It will proceed to the retry_load_slab label,
set c->slab, then jump to load_freelist, which clobbers c->freelist.
But if we instead continue as follows, we get worse corruption:
- task A: run __slab_free() on object from other struct slab:
- CPU_PARTIAL_FREE case (slab was on no list, is now on pcpu partial)
- task A: run slab_alloc_node() with NUMA node constraint:
- fastpath fails (c->slab is NULL)
- call __slab_alloc()
- slub_get_cpu_ptr() (disables preemption)
- enter ___slab_alloc()
- c->slab is NULL: goto new_slab
- slub_percpu_partial() is non-NULL
- set c->slab to slub_percpu_partial(c)
- [CORRUPT STATE: c->slab points to slab-1, c->freelist has objects
from slab-2]
- goto redo
- node_match() fails
- goto deactivate_slab
- existing c->freelist is passed into deactivate_slab()
- inuse count of slab-1 is decremented to account for object from
slab-2
At this point, the inuse count of slab-1 is 1 lower than it should be.
This means that if we free all allocated objects in slab-1 except for one,
SLUB will think that slab-1 is completely unused, and may free its page,
leading to use-after-free.
SUSE information
Overall state of this security issue: Pending
This issue is currently rated as having moderate severity.
CNA (CISA-ADP) | SUSE | |
---|---|---|
Base Score | 7.8 | 5.5 |
Vector | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H |
Attack Vector | Local | Local |
Attack Complexity | Low | Low |
Privileges Required | Low | Low |
User Interaction | None | None |
Scope | Unchanged | Unchanged |
Confidentiality Impact | High | None |
Integrity Impact | High | None |
Availability Impact | High | High |
CVSSv3 Version | 3.1 | 3.1 |
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: 1238249 [IN_PROGRESS]SUSE Security Advisories:
- SUSE-SU-2025:1027-1, published 2025-03-26T12:12:07Z
- SUSE-SU-2025:1176-1, published
- SUSE-SU-2025:1183-1, published 2025-04-09T13:57:54Z
- SUSE-SU-2025:1194-1, published 2025-04-10T13:46:40Z
- SUSE-SU-2025:1241-1, published 2025-04-14T10:37:24Z
- SUSE-SU-2025:1263-1, published 2025-04-15T08:23:33Z
List of released packages
Product(s) | Fixed package version(s) | References |
---|---|---|
Container suse/sle-micro-rancher/5.2:latest Image SLES15-SP3-BYOS-Azure Image SLES15-SP3-HPC-BYOS-Azure Image SLES15-SP3-Micro-5-2-BYOS-Azure Image SLES15-SP3-Micro-5-2-BYOS-EC2-HVM Image SLES15-SP3-Micro-5-2-BYOS-GCE Image SLES15-SP3-SAPCAL-Azure |
| |
Container suse/sle-micro-rancher/5.3:latest Container suse/sle-micro-rancher/5.4:latest Image SLES15-SP4-BYOS Image SLES15-SP4-BYOS-Azure Image SLES15-SP4-BYOS-EC2 Image SLES15-SP4-BYOS-GCE Image SLES15-SP4-HPC-BYOS Image SLES15-SP4-HPC-BYOS-Azure Image SLES15-SP4-HPC-BYOS-EC2 Image SLES15-SP4-HPC-BYOS-GCE Image SLES15-SP4-HPC-EC2 Image SLES15-SP4-HPC-GCE Image SLES15-SP4-Hardened-BYOS Image SLES15-SP4-Hardened-BYOS-Azure Image SLES15-SP4-Hardened-BYOS-EC2 Image SLES15-SP4-Hardened-BYOS-GCE Image SLES15-SP4-Manager-Proxy-4-3-BYOS Image SLES15-SP4-Manager-Proxy-4-3-BYOS-Azure Image SLES15-SP4-Manager-Proxy-4-3-BYOS-EC2 Image SLES15-SP4-Manager-Proxy-4-3-BYOS-GCE Image SLES15-SP4-Manager-Server-4-3-BYOS Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2 Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE Image SLES15-SP4-Micro-5-3 Image SLES15-SP4-Micro-5-3-BYOS Image SLES15-SP4-Micro-5-3-BYOS-Azure Image SLES15-SP4-Micro-5-3-BYOS-EC2 Image SLES15-SP4-Micro-5-3-BYOS-GCE Image SLES15-SP4-Micro-5-3-EC2 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 Image SLES15-SP4-SAP Image SLES15-SP4-SAP-Azure Image SLES15-SP4-SAP-EC2 Image SLES15-SP4-SAP-GCE Image SLES15-SP4-SAPCAL Image SLES15-SP4-SAPCAL-Azure Image SLES15-SP4-SAPCAL-EC2 Image SLES15-SP4-SAPCAL-GCE |
| |
Container suse/sle-micro/base-5.5:2.0.4-5.8.160 Image SLES15-SP5-BYOS-Azure Image SLES15-SP5-BYOS-GCE Image SLES15-SP5-CHOST-BYOS-Aliyun Image SLES15-SP5-CHOST-BYOS-Azure Image SLES15-SP5-CHOST-BYOS-EC2 Image SLES15-SP5-CHOST-BYOS-GCE Image SLES15-SP5-CHOST-BYOS-GDC Image SLES15-SP5-CHOST-BYOS-SAP-CCloud Image SLES15-SP5-EC2 Image SLES15-SP5-GCE Image SLES15-SP5-HPC-BYOS-Azure Image SLES15-SP5-HPC-BYOS-GCE Image SLES15-SP5-Hardened-BYOS-EC2 Image SLES15-SP5-Hardened-BYOS-GCE Image SLES15-SP5-Manager-Proxy-5-0-BYOS Image SLES15-SP5-Manager-Proxy-5-0-BYOS-Azure Image SLES15-SP5-Manager-Proxy-5-0-BYOS-EC2 Image SLES15-SP5-Manager-Proxy-5-0-BYOS-GCE Image SLES15-SP5-Manager-Server-5-0 Image SLES15-SP5-Manager-Server-5-0-Azure-llc Image SLES15-SP5-Manager-Server-5-0-Azure-ltd Image SLES15-SP5-Manager-Server-5-0-BYOS Image SLES15-SP5-Manager-Server-5-0-BYOS-Azure Image SLES15-SP5-Manager-Server-5-0-BYOS-EC2 Image SLES15-SP5-Manager-Server-5-0-BYOS-GCE Image SLES15-SP5-Micro-5-5 Image SLES15-SP5-Micro-5-5-Azure Image SLES15-SP5-Micro-5-5-BYOS Image SLES15-SP5-Micro-5-5-BYOS-Azure Image SLES15-SP5-Micro-5-5-BYOS-EC2 Image SLES15-SP5-Micro-5-5-BYOS-GCE Image SLES15-SP5-Micro-5-5-EC2 Image SLES15-SP5-Micro-5-5-GCE Image SLES15-SP5-SAPCAL-Azure Image SLES15-SP5-SAPCAL-GCE |
| |
Container suse/sle-micro/kvm-5.5:2.0.4-3.5.304 |
| |
Container suse/sle-micro/rt-5.5:2.0.4-4.5.352 |
| |
Image SLES15-SP3-SAP-Azure-LI-BYOS-Production Image SLES15-SP3-SAP-Azure-VLI-BYOS-Production |
| |
Image SLES15-SP4-SAP-Azure-LI-BYOS Image SLES15-SP4-SAP-Azure-LI-BYOS-Production Image SLES15-SP4-SAP-Azure-VLI-BYOS Image SLES15-SP4-SAP-Azure-VLI-BYOS-Production Image SLES15-SP4-SAP-BYOS Image SLES15-SP4-SAP-BYOS-Azure Image SLES15-SP4-SAP-BYOS-EC2 Image SLES15-SP4-SAP-BYOS-GCE Image SLES15-SP4-SAP-Hardened Image SLES15-SP4-SAP-Hardened-Azure Image SLES15-SP4-SAP-Hardened-BYOS Image SLES15-SP4-SAP-Hardened-BYOS-Azure Image SLES15-SP4-SAP-Hardened-BYOS-EC2 Image SLES15-SP4-SAP-Hardened-BYOS-GCE Image SLES15-SP4-SAP-Hardened-GCE |
| |
Image SLES15-SP5-SAP-Azure-3P Image SLES15-SP5-SAP-Azure-LI-BYOS Image SLES15-SP5-SAP-Azure-LI-BYOS-Production Image SLES15-SP5-SAP-Azure-VLI-BYOS Image SLES15-SP5-SAP-Azure-VLI-BYOS-Production Image SLES15-SP5-SAP-BYOS-Azure Image SLES15-SP5-SAP-BYOS-EC2 Image SLES15-SP5-SAP-BYOS-GCE Image SLES15-SP5-SAP-Hardened-Azure Image SLES15-SP5-SAP-Hardened-BYOS-Azure Image SLES15-SP5-SAP-Hardened-BYOS-EC2 Image SLES15-SP5-SAP-Hardened-BYOS-GCE Image SLES15-SP5-SAP-Hardened-GCE |
| |
SUSE Enterprise Storage 7.1 |
| Patchnames: SUSE-Storage-7.1-2025-1263 |
SUSE Linux Enterprise High Availability Extension 15 SP3 |
| Patchnames: SUSE-SLE-Product-HA-15-SP3-2025-1263 |
SUSE Linux Enterprise High Availability Extension 15 SP4 |
| Patchnames: SUSE-SLE-Product-HA-15-SP4-2025-1027 |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP3-LTSS-2025-1263 |
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-ESPOS-2025-1027 |
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-LTSS-2025-1027 |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP5-ESPOS-2025-1241 |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP5-LTSS-2025-1241 |
SUSE Linux Enterprise Live Patching 15 SP3 | Patchnames: SUSE-SLE-Module-Live-Patching-15-SP3-2025-1263 | |
SUSE Linux Enterprise Live Patching 15 SP4 | Patchnames: SUSE-SLE-Module-Live-Patching-15-SP4-2025-1027 | |
SUSE Linux Enterprise Live Patching 15 SP5 | Patchnames: SUSE-SLE-Module-Live-Patching-15-SP5-2025-1241 | |
SUSE Linux Enterprise Micro 5.1 |
| Patchnames: SUSE-SUSE-MicroOS-5.1-2025-1194 SUSE-SUSE-MicroOS-5.1-2025-1263 |
SUSE Linux Enterprise Micro 5.2 |
| Patchnames: SUSE-SUSE-MicroOS-5.2-2025-1194 SUSE-SUSE-MicroOS-5.2-2025-1263 |
SUSE Linux Enterprise Micro 5.3 |
| Patchnames: SUSE-SLE-Micro-5.3-2025-1027 SUSE-SLE-Micro-5.3-2025-1183 |
SUSE Linux Enterprise Micro 5.4 |
| Patchnames: SUSE-SLE-Micro-5.4-2025-1027 SUSE-SLE-Micro-5.4-2025-1183 |
SUSE Linux Enterprise Micro 5.5 |
| Patchnames: SUSE-SLE-Micro-5.5-2025-1176 SUSE-SLE-Micro-5.5-2025-1241 |
SUSE Linux Enterprise Server 15 SP3-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP3-LTSS-2025-1263 |
SUSE Linux Enterprise Server 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP4-LTSS-2025-1027 |
SUSE Linux Enterprise Server 15 SP5-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP5-LTSS-2025-1241 |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP3-2025-1263 |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP4-2025-1027 |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP5-2025-1241 |
SUSE Manager Proxy 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Proxy-4.3-2025-1027 |
SUSE Manager Retail Branch Server 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-2025-1027 |
SUSE Manager Server 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Server-4.3-2025-1027 |
First public cloud image revisions this CVE is fixed in:
- alibaba/sles-15-sp5-chost-byos-v20250512
- amazon/suse-manager-proxy-4-3-byos-v20250506-hvm-ssd-x86_64
- amazon/suse-manager-proxy-5-0-byos-v20250626-hvm-ssd-arm64
- amazon/suse-manager-proxy-5-0-byos-v20250626-hvm-ssd-x86_64
- amazon/suse-manager-server-4-3-byos-v20250501-hvm-ssd-x86_64
- amazon/suse-manager-server-5-0-byos-v20250626-hvm-ssd-arm64
- amazon/suse-manager-server-5-0-byos-v20250626-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp4-byos-v20250411-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-2-byos-v20250709-hvm-ssd-arm64
- amazon/suse-sle-micro-5-2-byos-v20250709-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-3-byos-v20250408-hvm-ssd-arm64
- amazon/suse-sle-micro-5-3-byos-v20250622-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-3-v20250408-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-5-3-v20250408-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-5-3-v20250622-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-5-3-v20250622-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-5-4-byos-v20250408-hvm-ssd-arm64
- amazon/suse-sle-micro-5-4-byos-v20250622-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-4-v20250408-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-5-4-v20250408-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-5-4-v20250622-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-5-4-v20250622-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-5-5-byos-v20250709-hvm-ssd-arm64
- amazon/suse-sle-micro-5-5-byos-v20250709-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-5-v20250709-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-5-5-v20250709-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-5-5-v20250709-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-5-5-v20250709-hvm-ssd-x86_64-ltd
- amazon/suse-sles-15-sp4-byos-v20250410-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-byos-v20250410-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-hardened-byos-v20250411-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-sapcal-v20250410-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-byos-v20250712-hvm-ssd-arm64
- amazon/suse-sles-15-sp5-chost-byos-v20250512-hvm-ssd-arm64
- amazon/suse-sles-15-sp5-chost-byos-v20250512-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-hardened-byos-v20250712-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-v20250712-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-byos-v20250425-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-hardened-byos-v20250611-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp5-byos-v20250709-hvm-ssd-x86_64
- google/sle-hpc-15-sp4-byos-v20250410-x86-64
- google/sle-hpc-15-sp4-byos-v20250610-x86-64
- google/sle-hpc-15-sp5-byos-v20250610-x86-64
- google/sle-micro-5-2-byos-v20250709-x86-64
- google/sle-micro-5-3-byos-v20250414-arm64
- google/sle-micro-5-3-byos-v20250501-x86-64
- google/sle-micro-5-4-byos-v20250408-arm64
- google/sle-micro-5-4-byos-v20250501-x86-64
- google/sle-micro-5-5-byos-v20250709-arm64
- google/sle-micro-5-5-byos-v20250709-x86-64
- google/sles-15-sp4-byos-v20250411-arm64
- google/sles-15-sp4-byos-v20250527-x86-64
- google/sles-15-sp4-byos-v20250610-x86-64
- google/sles-15-sp4-hardened-byos-v20250527-x86-64
- google/sles-15-sp4-sap-byos-v20250522-x86-64
- google/sles-15-sp4-sap-v20250522-x86-64
- google/sles-15-sp4-sapcal-v20250410-x86-64
- google/sles-15-sp4-sapcal-v20250610-x86-64
- google/sles-15-sp5-byos-v20250527-x86-64
- google/sles-15-sp5-byos-v20250610-arm64
- google/sles-15-sp5-chost-byos-v20250512-arm64
- google/sles-15-sp5-chost-byos-v20250512-x86-64
- google/sles-15-sp5-hardened-byos-v20250527-x86-64
- google/sles-15-sp5-sap-byos-v20250610-x86-64
- google/sles-15-sp5-sap-v20250610-x86-64
- google/sles-15-sp5-sapcal-v20250610-x86-64
- google/sles-15-sp5-v20250527-x86-64
- google/sles-sap-15-sp4-hardened-byos-v20250410-x86-64
- google/sles-sap-15-sp4-hardened-v20250411-x86-64
- google/sles-sap-15-sp5-hardened-byos-v20250610-x86-64
- google/sles-sap-15-sp5-hardened-v20250610-x86-64
- google/suse-manager-proxy-4-3-byos-v20250501-x86-64
- google/suse-manager-proxy-5-0-byos-v20250626-arm64
- google/suse-manager-proxy-5-0-byos-v20250626-x86-64
- google/suse-manager-server-4-3-byos-v20250501-x86-64
- google/suse-manager-server-5-0-byos-v20250626-arm64
- google/suse-manager-server-5-0-byos-v20250626-x86-64
- microsoft/suse-manager-proxy-4-3-byos-v20250501-x86_64
- microsoft/suse-manager-proxy-5-0-byos-v20250607-arm64
- microsoft/suse-manager-proxy-5-0-byos-v20250607-x86_64
- microsoft/suse-manager-server-4-3-byos-v20250501-x86_64
- microsoft/suse-manager-server-5-0-byos-v20250607-arm64
- microsoft/suse-manager-server-5-0-byos-v20250607-x86_64
- microsoft/suse-manager-server-5-0-v20250607-x86_64-llc
- microsoft/suse-manager-server-5-0-v20250607-x86_64-ltd
- microsoft/suse-sle-hpc-15-sp3-byos-v20250417-x86_64
- microsoft/suse-sle-hpc-15-sp4-byos-v20250417-x86_64
- microsoft/suse-sle-hpc-15-sp5-byos-v20250417-x86_64
- microsoft/suse-sle-micro-5-2-byos-v20250709-x86_64
- microsoft/suse-sle-micro-5-3-byos-v20250414-arm64
- microsoft/suse-sle-micro-5-3-byos-v20250501-x86_64
- microsoft/suse-sle-micro-5-4-byos-v20250408-arm64
- microsoft/suse-sle-micro-5-4-byos-v20250501-x86_64
- microsoft/suse-sle-micro-5-5-byos-v20250709-arm64
- microsoft/suse-sle-micro-5-5-byos-v20250709-x86_64
- microsoft/suse-sle-micro-5-5-v20250428-x86_64-ltd
- microsoft/suse-sle-micro-5-5-v20250709-arm64-llc
- microsoft/suse-sle-micro-5-5-v20250709-arm64-ltd
- microsoft/suse-sles-15-sp3-byos-v20250417-x86_64
- microsoft/suse-sles-15-sp3-sapcal-v20250417-x86_64
- microsoft/suse-sles-15-sp4-byos-v20250417-arm64
- microsoft/suse-sles-15-sp4-byos-v20250417-x86_64
- microsoft/suse-sles-15-sp4-hardened-byos-v20250417-x86_64
- microsoft/suse-sles-15-sp4-sapcal-v20250417-x86_64
- microsoft/suse-sles-15-sp5-byos-v20250417-arm64
- microsoft/suse-sles-15-sp5-byos-v20250417-x86_64
- microsoft/suse-sles-15-sp5-chost-byos-v20250512-arm64
- microsoft/suse-sles-15-sp5-chost-byos-v20250512-x86_64
- microsoft/suse-sles-15-sp5-sapcal-v20250417-x86_64
- microsoft/suse-sles-15-sp5-v20250417-arm64
- microsoft/suse-sles-15-sp5-v20250528-arm64-llc
- microsoft/suse-sles-sap-15-sp4-byos-v20250417-x86_64
- microsoft/suse-sles-sap-15-sp4-hardened-byos-v20250417-x86_64
- microsoft/suse-sles-sap-15-sp4-hardened-v20250417-x86_64
- microsoft/suse-sles-sap-15-sp4-v20250417-x86_64
- microsoft/suse-sles-sap-15-sp5-byos-v20250709-x86_64
- microsoft/suse-sles-sap-15-sp5-hardened-byos-v20250709-x86_64
- microsoft/suse-sles-sap-15-sp5-hardened-v20250709-x86_64
- microsoft/suse-sles-sap-15-sp5-v20250709-x86_64
- microsoft/suse-sles-sap-15-sp5-v20250709-x86_64-llc
- microsoft/suse-sles-sap-15-sp5-v20250709-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 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Desktop 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise High Availability Extension 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise High Availability Extension 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-source-azure | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Live Patching 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.1 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.1 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-source | Not affected |
SUSE Linux Enterprise Micro 5.2 | kernel-source-rt | Released |
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 | Not affected |
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 | Not affected |
SUSE Linux Enterprise Micro 5.4 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-source | Released |
SUSE Linux Enterprise Micro 5.5 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro for Rancher 5.2 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro for Rancher 5.3 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro for Rancher 5.4 | kernel-source-rt | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Legacy 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Module for Legacy 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-source-rt | Not affected |
SUSE Linux Enterprise Server 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP6 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Server 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise Server 15 SP7 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-source | Not affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-source-azure | Not affected |
SUSE Linux Enterprise Workstation Extension 15 SP6 | kernel-default | Not affected |
SUSE Linux Enterprise Workstation Extension 15 SP6 | kernel-source | Not affected |
SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-default | Not affected |
SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-source | Not affected |
SUSE Linux Micro 6.0 | kernel-default | Not affected |
SUSE Linux Micro 6.0 | kernel-source | Not affected |
SUSE Linux Micro 6.0 | kernel-source-rt | Not affected |
SUSE Linux Micro 6.1 | kernel-default | Not affected |
SUSE Linux Micro 6.1 | kernel-source | Not affected |
SUSE Linux Micro 6.1 | kernel-source-rt | Not affected |
SUSE Real Time Module 15 SP6 | kernel-source-rt | Not affected |
openSUSE Leap 15.6 | kernel-default | Not affected |
openSUSE Leap 15.6 | kernel-source | Not affected |
openSUSE Leap 15.6 | kernel-source-azure | Not affected |
openSUSE Leap 15.6 | kernel-source-rt | Not affected |
Products under Long Term Service Pack support and receiving important and critical security fixes. | ||
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-default | Affected |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-source | Affected |
SUSE Linux Enterprise High Availability Extension 15 SP3 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 15 SP4 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 15 SP5 | kernel-default | Not affected |
SUSE Linux Enterprise High Availability Extension 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise High Performance Computing 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-preempt | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP4 | 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 | kernel-source-azure | Unsupported |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS | kernel-syms | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kernel-default | Affected |
SUSE Linux Enterprise Live Patching 12 SP5 | kernel-source | Affected |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_56 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_38 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_25 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-source | Affected |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-source-azure | Unsupported |
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 | Affected |
SUSE Linux Enterprise Server 12 SP5 | kernel-source-azure | Affected |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source-azure | Affected |
SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-64kb | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-preempt | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server 15 SP4 | kernel-source | Not 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 | kernel-source-azure | Unsupported |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-64kb | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-source | Affected |
SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-source-azure | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-default | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source | Affected |
SUSE Manager Proxy 4.3 | kernel-default | Released |
SUSE Manager Proxy 4.3 | kernel-default-base | Released |
SUSE Manager Proxy 4.3 | kernel-source | Released |
SUSE Manager Proxy 4.3 | kernel-syms | Released |
SUSE Manager Proxy LTS 4.3 | kernel-default | Not affected |
SUSE Manager Proxy LTS 4.3 | kernel-source | Not affected |
SUSE Manager Retail Branch Server 4.3 | kernel-default | Released |
SUSE Manager Retail Branch Server 4.3 | kernel-default-base | Released |
SUSE Manager Retail Branch Server 4.3 | kernel-source | Released |
SUSE Manager Retail Branch Server LTS 4.3 | kernel-default | Not affected |
SUSE Manager Retail Branch Server LTS 4.3 | kernel-source | Not affected |
SUSE Manager Server 4.3 | kernel-default | Released |
SUSE Manager Server 4.3 | kernel-default-base | Released |
SUSE Manager Server 4.3 | kernel-source | Released |
SUSE Manager Server 4.3 | kernel-syms | Released |
SUSE Manager Server 4.3 | kernel-zfcpdump | Released |
SUSE Manager Server LTS 4.3 | kernel-default | Not affected |
SUSE Manager Server LTS 4.3 | kernel-source | Not affected |
Products past their end of life and not receiving proactive updates anymore. | ||
SUSE CaaS Platform 4.0 | kernel-source | Affected |
SUSE Enterprise Storage 6 | kernel-source | Affected |
SUSE Enterprise Storage 7 | kernel-source | Affected |
SUSE Enterprise Storage 7.1 | kernel-64kb | Released |
SUSE Enterprise Storage 7.1 | kernel-default | Released |
SUSE Enterprise Storage 7.1 | kernel-default-base | Released |
SUSE Enterprise Storage 7.1 | kernel-docs | Released |
SUSE Enterprise Storage 7.1 | kernel-obs-build | Released |
SUSE Enterprise Storage 7.1 | kernel-preempt | Released |
SUSE Enterprise Storage 7.1 | kernel-source | Released |
SUSE Enterprise Storage 7.1 | kernel-syms | Released |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP4 | kernel-source | Not affected |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | 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-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Micro 5.0 | kernel-default | Affected |
SUSE Linux Enterprise Module for Basesystem 15 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Point of Sale 12 SP2-CLIENT | kernel-source | Affected |
SUSE Linux Enterprise Real Time 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Real Time 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Real Time 15 SP3 | kernel-source-rt | Affected |
SUSE Linux Enterprise Real Time 15 SP4 | kernel-source | Not 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-default | Not affected |
SUSE Linux Enterprise Server 11 SP4 LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-source | Not affected |
SUSE Linux Enterprise Server 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP2-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP2-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-preempt | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-syms | Released |
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 | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source-azure | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-syms | Released |
SUSE Manager Proxy 4.0 | kernel-source | Affected |
SUSE Manager Proxy 4.1 | kernel-source | Affected |
SUSE Manager Proxy 4.2 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.0 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.1 | kernel-source | Affected |
SUSE Manager Retail Branch Server 4.2 | kernel-source | Affected |
SUSE Manager Server 4.0 | kernel-source | Affected |
SUSE Manager Server 4.1 | kernel-source | Affected |
SUSE Manager Server 4.2 | kernel-source | Affected |
SUSE OpenStack Cloud 7 | kernel-source | Affected |
SUSE OpenStack Cloud 9 | kernel-source | Affected |
SUSE OpenStack Cloud Crowbar 9 | kernel-source | Affected |
SUSE Real Time Module 15 SP3 | kernel-source-rt | 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-default | Released |
openSUSE Leap 15.3 | kernel-source | Released |
openSUSE Leap 15.3 | kernel-source-rt | Affected |
openSUSE Leap 15.4 | kernel-source | Not affected |
openSUSE Leap 15.4 | kernel-source-azure | Unsupported |
openSUSE Leap 15.4 | kernel-source-rt | Affected |
openSUSE Leap 15.5 | kernel-default | Released |
openSUSE Leap 15.5 | kernel-source | Released |
openSUSE Leap 15.5 | kernel-source-azure | Unsupported |
openSUSE Leap 15.5 | kernel-source-rt | Released |
SUSE Timeline for this CVE
CVE page created: Wed Feb 26 04:17:54 2025CVE page last modified: Sat Jul 12 12:10:22 2025