Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:KVM: x86: Fix shadow paging use-after-free due to unexpected GFN
The shadow MMU computes GFNs for direct shadow pages using sp->gfn plus
the SPTE index. This assumption breaks for shadow paging if the guest
page tables are modified between VM entries (similar to commit
aad885e77496, "KVM: x86/mmu: Drop/zap existing present SPTE even
when creating an MMIO SPTE", 2026-03-27). The flow is as follows:
- a PDE is installed for a 2MB mapping, and a page in that area is
accessed. KVM creates a kvm_mmu_page consisting of 512 4KB pages;
the kvm_mmu_page is marked by FNAME(fetch) as direct-mapped because
the guest's mapping is a huge page (and thus contiguous).
- the PDE mapping is changed from outside the guest.
- the guest accesses another page in the same 2MB area. KVM installs
a new leaf SPTE and rmap entry; the SPTE uses the "correct" GFN
(i.e. based on the new mapping, as changed in the previous step) but
that GFN is outside of the [sp->gfn, sp->gfn + 511] range; therefore
the rmap entry cannot be found and removed when the kvm_mmu_page
is zapped.
- the memslot that covers the first 2MB mapping is deleted, and the
kvm_mmu_page for the now-invalid GPA is zapped. However, rmap_remove()
only looks at the [sp->gfn, sp->gfn + 511] range established in step 1,
and fails to find the rmap entry that was recorded by step 3.
- any operation that causes an rmap walk for the same page accessed
by step 3 then walks a stale rmap and dereferences a freed kvm_mmu_page.
This includes dirty logging or MMU notifier invalidations (e.g., from
MADV_DONTNEED).
The underlying issue is that KVM's walking of shadow PTEs assumes that
if a SPTE is present when KVM wants to install a non-leaf SPTE, then the
existing kvm_mmu_page must be for the correct gfn. Because the only way
for the gfn to be wrong is if KVM messed up and failed to zap a SPTE...
which shouldn't happen, but *actually* only happens in response to a
guest write.
That bug dates back literally forever, as even the first version of KVM
assumes that the GFN matches and walks into the "wrong" shadow page.
However, that was only an imprecision until 2032a93d66fa ("KVM: MMU:
Don't allocate gfns page for direct mmu pages") came along.
Fix it by checking for a target gfn mismatch and zapping the existing
SPTE. That way the old SP and rmap entries are gone, KVM installs
the rmap in the right location, and everyone is happy.
SUSE information
Overall state of this security issue: Resolved
This issue is currently rated as having important severity.
| CVSS detail | CNA (NVD) | Linux Kernel CNA | SUSE |
|---|---|---|---|
| Base Score | 8.8 | 8.8 | 8.8 |
| Vector | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H |
| Attack Vector | Local | Local | Local |
| Attack Complexity | Low | Low | Low |
| Privileges Required | Low | Low | Low |
| User Interaction | None | None | None |
| Scope | Changed | Changed | Changed |
| Confidentiality Impact | High | High | High |
| Integrity Impact | High | High | High |
| Availability Impact | High | High | High |
| CVSSv3 Version | 3.1 | 3.1 | 3.1 |
| CVSS detail | SUSE |
|---|---|
| Base Score | 9.3 |
| Vector | CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H |
| Attack Vector | Local |
| Attack Complexity | Low |
| Attack Requirements | None |
| Privileges Required | Low |
| User Interaction | None |
| Vulnerable System Confidentiality Impact | High |
| Vulnerable System Integrity Impact | High |
| Vulnerable System Availability Impact | High |
| Subsequent System Confidentiality Impact | High |
| Subsequent System Integrity Impact | High |
| Subsequent System Availability Impact | High |
| 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 entries: 1266969 [RESOLVED / FIXED], 1266970 [NEW]SUSE Security Advisories:
- RHSA-2026:36956, published Fri Jul 10 15:06:42 UTC 2026
- RHSA-2026:36957, published Fri Jul 10 15:06:43 UTC 2026
- RHSA-2026:39083, published Tue Jul 14 15:06:23 UTC 2026
- SUSE-SU-2026:22100-1, published 2026-06-15T18:32:29Z
- SUSE-SU-2026:22108-1, published 2026-06-15T17:00:46Z
- SUSE-SU-2026:22137-1, published 2026-06-15T17:22:46Z
- SUSE-SU-2026:22140-1, published 2026-06-15T18:32:29Z
- SUSE-SU-2026:22394-1, published 2026-06-30T17:26:45Z
- SUSE-SU-2026:22433-1, published 2026-06-30T17:26:45Z
- SUSE-SU-2026:22458-1, published 2026-06-30T17:41:36Z
- SUSE-SU-2026:2310-1, published 2026-06-09T08:18:37Z
- SUSE-SU-2026:2331-1, published 2026-06-10T08:40:38Z
- SUSE-SU-2026:2383-1, published 2026-06-12T09:14:49Z
- SUSE-SU-2026:2450-1, published 2026-06-18T13:36:16Z
- SUSE-SU-2026:2482-1, published 2026-06-22T11:10:43Z
- SUSE-SU-2026:2591-1, published 2026-06-23T14:31:53Z
- SUSE-SU-2026:2630-1, published 2026-06-25T11:55:03Z
- SUSE-SU-2026:2658-1, published 2026-06-26T13:07:34Z
- SUSE-SU-2026:2839-1, published 2026-07-10T09:09:31Z
- SUSE-SU-2026:3246-1, published 2026-07-25T03:34:00Z
- SUSE-SU-2026:3254-1, published 2026-07-26T18:33:35Z
- SUSE-SU-2026:3256-1, published 2026-07-27T07:33:42Z
- SUSE-SU-2026:3264-1, published 2026-07-27T11:35:16Z
- SUSE-SU-2026:3286-1, published 2026-07-27T14:33:45Z
- SUSE-SU-2026:3289-1, published 2026-07-27T15:36:28Z
- SUSE-SU-2026:3316-1, published 2026-07-27T19:36:28Z
- SUSE-SU-2026:3319-1, published 2026-07-28T03:33:52Z
- SUSE-SU-2026:3321-1, published 2026-07-28T04:35:42Z
- SUSE-SU-2026:3343-1, published 2026-07-28T12:06:26Z
- SUSE-SU-2026:3344-1, published 2026-07-28T12:06:44Z
- SUSE-SU-2026:3345-1, published 2026-07-28T12:12:16Z
- SUSE-SU-2026:3351-1, published 2026-07-28T12:10:24Z
- SUSE-SU-2026:3354-1, published 2026-07-28T12:16:30Z
- SUSE-SU-2026:3383-1, published 2026-07-28T15:36:03Z
- SUSE-SU-2026:3388-1, published 2026-07-28T15:36:43Z
List of released packages
| Product(s) | Fixed package version(s) | References |
|---|---|---|
| Container bci/bci-sle15-kernel-module-devel:15.7-60.3 |
| |
| Container suse/sl-micro/6.0/base-os-container:2.1.3-7.158 Container suse/sl-micro/6.1/base-os-container:2.2.1-5.144 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.173 Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.144 |
| |
| Container suse/sl-micro/6.0/rt-os-container:2.1.3-7.193 Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.143 |
| |
| Container suse/sle-micro-rancher/5.3:latest Container suse/sle-micro-rancher/5.4:5.4.4.5.127 Image SLES15-SP4-BYOS Image SLES15-SP4-BYOS-Azure Image SLES15-SP4-BYOS-EC2 Image SLES15-SP4-BYOS-GCE Image SLES15-SP4-CHOST-BYOS Image SLES15-SP4-CHOST-BYOS-Aliyun Image SLES15-SP4-CHOST-BYOS-Azure Image SLES15-SP4-CHOST-BYOS-EC2 Image SLES15-SP4-CHOST-BYOS-GCE Image SLES15-SP4-CHOST-BYOS-SAP-CCloud 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-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.288 Image SLES15-SP5-HPC-BYOS-Azure Image SLES15-SP5-HPC-BYOS-EC2 Image SLES15-SP5-HPC-BYOS-GCE Image SLES15-SP5-SAPCAL-Azure Image SLES15-SP5-SAPCAL-EC2 Image SLES15-SP5-SAPCAL-GCE |
| |
| Container suse/sle-micro/kvm-5.5:2.0.4-3.5.557 |
| |
| Container suse/sle-micro/rt-5.5:2.0.4-4.5.630 |
| |
| Image SLES12-SP5-Azure-BYOS Image SLES12-SP5-Azure-HPC-BYOS |
| |
| Image SLES12-SP5-Azure-SAP-BYOS Image SLES12-SP5-Azure-SAP-On-Demand Image SLES12-SP5-EC2-SAP-On-Demand |
| |
| 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-SP6-SAP-Azure-3P Image SLES15-SP6-SAP-BYOS Image SLES15-SP6-SAP-BYOS-Azure Image SLES15-SP6-SAP-BYOS-EC2 Image SLES15-SP6-SAP-BYOS-GCE Image SLES15-SP6-SAP-Hardened Image SLES15-SP6-SAP-Hardened-Azure Image SLES15-SP6-SAP-Hardened-BYOS Image SLES15-SP6-SAP-Hardened-BYOS-Azure Image SLES15-SP6-SAP-Hardened-BYOS-EC2 Image SLES15-SP6-SAP-Hardened-BYOS-GCE Image SLES15-SP6-SAP-Hardened-EC2 Image SLES15-SP6-SAP-Hardened-GCE |
| |
| Image SLES15-SP6 Image SLES15-SP6-BYOS Image SLES15-SP6-BYOS-Azure Image SLES15-SP6-BYOS-EC2 Image SLES15-SP6-BYOS-GCE Image SLES15-SP6-CHOST-BYOS Image SLES15-SP6-CHOST-BYOS-Aliyun Image SLES15-SP6-CHOST-BYOS-Azure Image SLES15-SP6-CHOST-BYOS-EC2 Image SLES15-SP6-CHOST-BYOS-GCE Image SLES15-SP6-CHOST-BYOS-GDC Image SLES15-SP6-CHOST-BYOS-SAP-CCloud Image SLES15-SP6-EC2 Image SLES15-SP6-EC2-ECS-HVM Image SLES15-SP6-GCE Image SLES15-SP6-HPC-BYOS Image SLES15-SP6-HPC-BYOS-Azure Image SLES15-SP6-HPC-BYOS-EC2 Image SLES15-SP6-HPC-BYOS-GCE Image SLES15-SP6-HPC-EC2 Image SLES15-SP6-HPC-GCE Image SLES15-SP6-Hardened-BYOS Image SLES15-SP6-Hardened-BYOS-Azure Image SLES15-SP6-Hardened-BYOS-EC2 Image SLES15-SP6-Hardened-BYOS-GCE Image SLES15-SP6-SAP Image SLES15-SP6-SAP-Azure Image SLES15-SP6-SAP-EC2 Image SLES15-SP6-SAP-GCE Image SLES15-SP6-SAPCAL Image SLES15-SP6-SAPCAL-Azure Image SLES15-SP6-SAPCAL-EC2 Image SLES15-SP6-SAPCAL-GCE |
| |
| Image SLES15-SP7-Azure-3P Image SLES15-SP7-Azure-Basic Image SLES15-SP7-Azure-Standard Image SLES15-SP7-HPC-Azure |
| |
| Image SLES15-SP7-BYOS-Azure Image SLES15-SP7-BYOS-EC2 Image SLES15-SP7-BYOS-GCE Image SLES15-SP7-CHOST-BYOS-Aliyun Image SLES15-SP7-CHOST-BYOS-Azure Image SLES15-SP7-CHOST-BYOS-EC2 Image SLES15-SP7-CHOST-BYOS-GCE Image SLES15-SP7-CHOST-BYOS-GDC Image SLES15-SP7-CHOST-BYOS-SAP-CCloud Image SLES15-SP7-EC2 Image SLES15-SP7-EC2-ECS-HVM Image SLES15-SP7-GCE Image SLES15-SP7-HPC-BYOS-Azure Image SLES15-SP7-HPC-BYOS-EC2 Image SLES15-SP7-HPC-BYOS-GCE Image SLES15-SP7-Hardened-BYOS-Azure Image SLES15-SP7-Hardened-BYOS-EC2 Image SLES15-SP7-Hardened-BYOS-GCE Image SLES15-SP7-SAPCAL-Azure Image SLES15-SP7-SAPCAL-EC2 Image SLES15-SP7-SAPCAL-GCE |
| |
| 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-Hardened-Azure Image SLES15-SP7-SAP-Hardened-BYOS-Azure Image SLES15-SP7-SAP-Hardened-BYOS-EC2 Image SLES15-SP7-SAP-Hardened-BYOS-GCE Image SLES15-SP7-SAP-Hardened-GCE |
| |
| SUSE Liberty Linux 10 |
| Patchnames: RHSA-2026:36956 |
| SUSE Liberty Linux 8 |
| Patchnames: RHSA-2026:39083 |
| SUSE Liberty Linux 9 |
| Patchnames: RHSA-2026:36957 |
| SUSE Linux Enterprise Desktop 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-2482 SUSE-SLE-Module-Development-Tools-15-SP7-2026-2482 SUSE-SLE-Product-WE-15-SP7-2026-2482 |
| SUSE Linux Enterprise High Availability Extension 15 SP4 |
| Patchnames: SUSE-SLE-Product-HA-15-SP4-2026-2383 |
| SUSE Linux Enterprise High Availability Extension 15 SP7 |
| Patchnames: SUSE-SLE-Product-HA-15-SP7-2026-2482 |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-ESPOS-2026-2383 |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-LTSS-2026-2383 |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP5-ESPOS-2026-2658 |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP5-LTSS-2026-2658 |
| SUSE Linux Enterprise High Performance Computing 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-2482 SUSE-SLE-Module-Development-Tools-15-SP7-2026-2482 SUSE-SLE-Module-Legacy-15-SP7-2026-2482 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-2482 |
| SUSE Linux Enterprise Live Patching 12 SP5 |
| Patchnames: SUSE-SLE-Live-Patching-12-SP5-2026-3374 SUSE-SLE-Live-Patching-12-SP5-2026-3375 SUSE-SLE-Live-Patching-12-SP5-2026-3377 SUSE-SLE-Live-Patching-12-SP5-2026-3378 SUSE-SLE-Live-Patching-12-SP5-2026-3379 SUSE-SLE-Live-Patching-12-SP5-2026-3380 SUSE-SLE-Live-Patching-12-SP5-2026-3382 SUSE-SLE-Live-Patching-12-SP5-2026-3383 SUSE-SLE-Live-Patching-12-SP5-2026-3384 SUSE-SLE-Live-Patching-12-SP5-2026-3385 SUSE-SLE-Live-Patching-12-SP5-2026-3386 SUSE-SLE-Live-Patching-12-SP5-2026-3387 SUSE-SLE-Live-Patching-12-SP5-2026-3388 |
| SUSE Linux Enterprise Live Patching 15 SP4 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP4-2026-3345 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3347 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3348 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3351 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3352 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3353 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3354 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3355 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3356 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3357 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3358 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3359 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3360 SUSE-SLE-Module-Live-Patching-15-SP4-2026-3361 |
| SUSE Linux Enterprise Live Patching 15 SP5 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP5-2026-3279 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3280 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3287 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3288 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3289 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3290 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3292 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3293 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3294 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3295 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3296 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3319 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3320 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3328 SUSE-SLE-Module-Live-Patching-15-SP5-2026-3349 |
| SUSE Linux Enterprise Live Patching 15 SP6 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP6-2026-3254 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3255 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3256 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3257 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3258 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3259 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3260 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3307 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3308 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3311 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3314 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3315 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3316 SUSE-SLE-Module-Live-Patching-15-SP6-2026-3344 |
| SUSE Linux Enterprise Live Patching 15 SP7 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP7-2026-3246 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3247 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3249 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3250 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3251 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3252 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3263 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3264 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3274 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3275 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3276 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3277 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3278 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3286 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3303 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3304 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3305 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3306 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3309 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3310 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3312 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3313 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3317 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3318 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3321 SUSE-SLE-Module-Live-Patching-15-SP7-2026-3343 |
| SUSE Linux Enterprise Micro 5.3 |
| Patchnames: SUSE-SLE-Micro-5.3-2026-2331 SUSE-SLE-Micro-5.3-2026-2383 |
| SUSE Linux Enterprise Micro 5.4 |
| Patchnames: SUSE-SLE-Micro-5.4-2026-2331 SUSE-SLE-Micro-5.4-2026-2383 |
| SUSE Linux Enterprise Micro 5.5 |
| Patchnames: SUSE-SLE-Micro-5.5-2026-2630 SUSE-SLE-Micro-5.5-2026-2658 |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-2482 |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP7-2026-2482 |
| SUSE Linux Enterprise Module for Legacy 15 SP7 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP7-2026-2482 |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP7-2026-2482 |
| SUSE Linux Enterprise Real Time 15 SP7 SUSE Real Time Module 15 SP7 |
| Patchnames: SUSE-SLE-Module-RT-15-SP7-2026-2591 |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE |
| Patchnames: SUSE-SLE-SERVER-11-SP4-LTSS-EXTREME-CORE-2026-2839 |
| SUSE Linux Enterprise Server 12 SP5-LTSS |
| Patchnames: SUSE-SLE-SERVER-12-SP5-LTSS-2026-2450 |
| SUSE Linux Enterprise Server 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP4-LTSS-2026-2383 |
| SUSE Linux Enterprise Server 15 SP5-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP5-LTSS-2026-2658 |
| SUSE Linux Enterprise Server 15 SP6-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP6-LTSS-2026-2310 |
| SUSE Linux Enterprise Server 15 SP7 SUSE Linux Enterprise Server for SAP Applications 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-2482 SUSE-SLE-Module-Development-Tools-15-SP7-2026-2482 SUSE-SLE-Module-Legacy-15-SP7-2026-2482 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-2482 SUSE-SLE-Product-WE-15-SP7-2026-2482 |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 |
| Patchnames: SUSE-SLE-SERVER-12-SP5-LTSS-EXTENDED-SECURITY-2026-2450 |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP4-2026-2383 |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP5-2026-2658 |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP6-2026-2310 |
| SUSE Linux Enterprise Workstation Extension 15 SP7 |
| Patchnames: SUSE-SLE-Product-WE-15-SP7-2026-2482 |
| SUSE Linux Micro 6.0 |
| Patchnames: SUSE-SLE-Micro-6.0-kernel-464 SUSE-SLE-Micro-6.0-kernel-498 |
| SUSE Linux Micro 6.1 |
| Patchnames: SUSE-SLE-Micro-6.1-kernel-464 SUSE-SLE-Micro-6.1-kernel-498 |
| SUSE Manager Proxy LTS 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Proxy-4.3-LTS-2026-2383 |
| SUSE Manager Retail Branch Server LTS 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-LTS-2026-2383 |
| SUSE Manager Server LTS 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Server-4.3-LTS-2026-2383 |
| openSUSE Tumbleweed |
| Patchnames: openSUSE-Tumbleweed-2026-10954 |
List of packages in QA
| Product(s) | Package(s) |
|---|---|
| SUSE Linux Enterprise Server 16.0 |
|
| SUSE Linux Enterprise Server for SAP applications 16.0 |
|
| SUSE Linux Micro 6.2 |
|
First public cloud image revisions this CVE is fixed in:
- alibaba/sles-15-sp4-chost-byos-v20260701
- alibaba/sles-15-sp6-chost-byos-v20260618
- alibaba/sles-15-sp7-chost-byos-v20260701
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260619-arm64
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260619-x86_64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260619-arm64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260619-x86_64
- amazon/suse-multi-linux-manager-server-5-1-v20260619-arm64-llc
- amazon/suse-multi-linux-manager-server-5-1-v20260619-arm64-ltd
- amazon/suse-multi-linux-manager-server-5-1-v20260619-x86_64-llc
- amazon/suse-multi-linux-manager-server-5-1-v20260619-x86_64-ltd
- amazon/suse-sle-hpc-15-sp4-byos-v20260630-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp5-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp6-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp7-byos-v20260702-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-0-byos-v20260617-hvm-ssd-arm64
- amazon/suse-sle-micro-6-0-byos-v20260617-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-0-v20260617-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-0-v20260617-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-0-v20260617-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-0-v20260617-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-6-1-byos-v20260618-hvm-ssd-arm64
- amazon/suse-sle-micro-6-1-byos-v20260618-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-1-v20260618-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-1-v20260618-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-1-v20260618-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-1-v20260618-hvm-ssd-x86_64-ltd
- amazon/suse-sles-15-sp4-byos-v20260629-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-chost-byos-v20260701-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-chost-byos-v20260701-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-hardened-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-sapcal-v20260629-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-sapcal-v20260703-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-byos-v20260618-hvm-ssd-arm64
- amazon/suse-sles-15-sp6-byos-v20260618-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-chost-byos-v20260618-hvm-ssd-arm64
- amazon/suse-sles-15-sp6-chost-byos-v20260618-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-hardened-byos-v20260618-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-sapcal-v20260618-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-v20260618-ecs-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-v20260618-hvm-ssd-arm64
- amazon/suse-sles-15-sp6-v20260618-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-byos-v20260630-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-byos-v20260630-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-chost-byos-v20260701-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-chost-byos-v20260701-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-hardened-byos-v20260630-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-sapcal-v20260630-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260630-ecs-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260630-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-v20260630-hvm-ssd-x86_64
- amazon/suse-sles-sap-12-sp5-v20260622-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-hardened-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp6-hardened-byos-v20260619-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp6-v20260619-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp7-byos-v20260629-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp7-hardened-byos-v20260629-hvm-ssd-x86_64
- google/sle-hpc-15-sp4-byos-v20260630-x86-64
- google/sle-hpc-15-sp5-byos-v20260629-x86-64
- google/sle-hpc-15-sp6-byos-v20260629-x86-64
- google/sle-hpc-15-sp7-byos-v20260702-x86-64
- google/sle-micro-6-0-byos-v20260617-arm64
- google/sle-micro-6-0-byos-v20260617-x86-64
- google/sle-micro-6-1-byos-v20260618-arm64
- google/sle-micro-6-1-byos-v20260618-x86-64
- google/sles-15-sp4-byos-v20260629-arm64
- google/sles-15-sp4-byos-v20260629-x86-64
- google/sles-15-sp4-chost-byos-v20260701-arm64
- google/sles-15-sp4-chost-byos-v20260701-x86-64
- google/sles-15-sp4-hardened-byos-v20260629-x86-64
- google/sles-15-sp4-sapcal-v20260629-x86-64
- google/sles-15-sp5-sapcal-v20260703-x86-64
- google/sles-15-sp6-byos-v20260618-arm64
- google/sles-15-sp6-byos-v20260618-x86-64
- google/sles-15-sp6-chost-byos-v20260617-arm64
- google/sles-15-sp6-chost-byos-v20260617-x86-64
- google/sles-15-sp6-hardened-byos-v20260618-x86-64
- google/sles-15-sp6-sapcal-v20260618-x86-64
- google/sles-15-sp6-v20260618-arm64
- google/sles-15-sp6-v20260618-x86-64
- google/sles-15-sp7-byos-v20260630-arm64
- google/sles-15-sp7-byos-v20260630-x86-64
- google/sles-15-sp7-chost-byos-v20260701-arm64
- google/sles-15-sp7-chost-byos-v20260701-x86-64
- google/sles-15-sp7-hardened-byos-v20260630-x86-64
- google/sles-15-sp7-sapcal-v20260630-x86-64
- google/sles-15-sp7-v20260630-arm64
- google/sles-15-sp7-v20260630-x86-64
- google/sles-sap-15-sp4-byos-v20260629-x86-64
- google/sles-sap-15-sp4-hardened-byos-v20260629-x86-64
- google/sles-sap-15-sp4-hardened-v20260629-x86-64
- google/sles-sap-15-sp4-v20260629-x86-64
- google/sles-sap-15-sp6-byos-v20260619-x86-64
- google/sles-sap-15-sp6-hardened-byos-v20260619-x86-64
- google/sles-sap-15-sp6-hardened-v20260619-x86-64
- google/sles-sap-15-sp6-v20260619-x86-64
- google/sles-sap-15-sp7-byos-v20260629-x86-64
- google/sles-sap-15-sp7-hardened-byos-v20260629-x86-64
- google/sles-sap-15-sp7-hardened-v20260629-x86-64
- google/sles-sap-15-sp7-v20260629-x86-64
- google/suse-multi-linux-mgr-proxy-5-1-byos-v20260619-arm64
- google/suse-multi-linux-mgr-proxy-5-1-byos-v20260619-x86-64
- google/suse-multi-linux-mgr-server-5-1-byos-v20260619-arm64
- google/suse-multi-linux-mgr-server-5-1-byos-v20260619-x86-64
- microsoft/suse-multi-linux-manager-proxy-5-1-byos-v20260619-arm64
- microsoft/suse-multi-linux-manager-proxy-5-1-byos-v20260619-x86_64
- microsoft/suse-multi-linux-manager-server-5-1-byos-v20260619-arm64
- microsoft/suse-multi-linux-manager-server-5-1-byos-v20260619-x86_64
- microsoft/suse-sle-hpc-12-sp5-byos-v20260629-x86_64
- microsoft/suse-sle-hpc-15-sp4-byos-v20260630-x86_64
- microsoft/suse-sle-hpc-15-sp5-byos-v20260629-x86_64
- microsoft/suse-sle-hpc-15-sp6-byos-v20260629-x86_64
- microsoft/suse-sle-hpc-15-sp7-byos-v20260702-x86_64
- microsoft/suse-sle-hpc-15-sp7-v20260702-x86_64
- microsoft/suse-sle-micro-6-0-byos-v20260619-arm64
- microsoft/suse-sle-micro-6-0-byos-v20260619-x86_64
- microsoft/suse-sle-micro-6-0-v20260619-arm64-llc
- microsoft/suse-sle-micro-6-0-v20260619-arm64-ltd
- microsoft/suse-sle-micro-6-0-v20260619-x86_64-llc
- microsoft/suse-sle-micro-6-0-v20260619-x86_64-ltd
- microsoft/suse-sle-micro-6-1-byos-v20260618-arm64
- microsoft/suse-sle-micro-6-1-byos-v20260618-x86_64
- microsoft/suse-sle-micro-6-1-v20260618-arm64-llc
- microsoft/suse-sle-micro-6-1-v20260618-arm64-ltd
- microsoft/suse-sle-micro-6-1-v20260618-x86_64-llc
- microsoft/suse-sle-micro-6-1-v20260618-x86_64-ltd
- microsoft/suse-sles-12-sp5-byos-v20260622-x86_64
- microsoft/suse-sles-15-sp4-byos-v20260629-arm64
- microsoft/suse-sles-15-sp4-byos-v20260629-x86_64
- microsoft/suse-sles-15-sp4-chost-byos-v20260701-arm64
- microsoft/suse-sles-15-sp4-chost-byos-v20260701-x86_64
- microsoft/suse-sles-15-sp4-hardened-byos-v20260629-x86_64
- microsoft/suse-sles-15-sp4-sapcal-v20260629-x86_64
- microsoft/suse-sles-15-sp5-sapcal-v20260703-x86_64
- microsoft/suse-sles-15-sp6-byos-v20260618-arm64
- microsoft/suse-sles-15-sp6-byos-v20260618-x86_64
- microsoft/suse-sles-15-sp6-chost-byos-v20260618-arm64
- microsoft/suse-sles-15-sp6-chost-byos-v20260618-x86_64
- microsoft/suse-sles-15-sp6-hardened-byos-v20260618-x86_64
- microsoft/suse-sles-15-sp6-sapcal-v20260618-x86_64
- microsoft/suse-sles-15-sp6-v20260618-arm64
- microsoft/suse-sles-15-sp6-v20260618-arm64-llc
- microsoft/suse-sles-15-sp6-v20260618-arm64-ltd
- microsoft/suse-sles-15-sp7-basic-v20260630-x86_64
- microsoft/suse-sles-15-sp7-byos-v20260630-arm64
- microsoft/suse-sles-15-sp7-byos-v20260630-x86_64
- microsoft/suse-sles-15-sp7-chost-byos-v20260701-arm64
- microsoft/suse-sles-15-sp7-chost-byos-v20260701-x86_64
- microsoft/suse-sles-15-sp7-hardened-byos-v20260630-x86_64
- microsoft/suse-sles-15-sp7-sapcal-v20260630-x86_64
- microsoft/suse-sles-15-sp7-v20260630-arm64
- microsoft/suse-sles-15-sp7-v20260630-arm64-llc
- microsoft/suse-sles-15-sp7-v20260630-arm64-ltd
- microsoft/suse-sles-15-sp7-v20260630-x86_64
- microsoft/suse-sles-15-sp7-v20260630-x86_64-llc
- microsoft/suse-sles-15-sp7-v20260630-x86_64-ltd
- microsoft/suse-sles-sap-12-sp5-byos-v20260618-x86_64
- microsoft/suse-sles-sap-12-sp5-v20260618-x86_64
- microsoft/suse-sles-sap-15-sp4-byos-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp4-hardened-byos-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp4-hardened-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp4-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp6-byos-v20260619-x86_64
- microsoft/suse-sles-sap-15-sp6-hardened-byos-v20260619-x86_64
- microsoft/suse-sles-sap-15-sp6-hardened-v20260619-x86_64
- microsoft/suse-sles-sap-15-sp6-v20260619-x86_64
- microsoft/suse-sles-sap-15-sp6-v20260619-x86_64-llc
- microsoft/suse-sles-sap-15-sp6-v20260619-x86_64-ltd
- microsoft/suse-sles-sap-15-sp7-byos-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp7-hardened-byos-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp7-hardened-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp7-v20260629-x86_64
- microsoft/suse-sles-sap-15-sp7-v20260629-x86_64-llc
- microsoft/suse-sles-sap-15-sp7-v20260629-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 | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_10 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_11 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_12 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_13 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_14 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_2 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_3 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_4 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_5 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_6 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_7 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_8 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_9 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_10 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_11 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_12 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_13 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_14 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_2 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_3 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_4 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_5 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_6 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_7 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_8 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_9 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-source | 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 | 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 | 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.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 | Released |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-source | Released |
| 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-default | Not affected |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_0 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_1 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_10 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_11 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_2 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_3 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_4 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_5 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_6 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_7 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_8 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-livepatch-SLE16_Update_9 | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 16.1 | kernel-source | Not 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-default | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_0 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_1 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_10 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_11 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_2 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_3 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_4 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_5 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_6 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_7 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_8 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_9 | In progress |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP applications 16.1 | kernel-source | Not affected |
| SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-source | Released |
| 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-livepatch-MICRO-6-0-RT_Update_14 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_15 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_18 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_19 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_20 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_21 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_22 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_23 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_10 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_11 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_12 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_13 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_14 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_16 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_17 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_18 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_19 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_20 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_21 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_22 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_9 | 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-livepatch-MICRO-6-0-RT_Update_14 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_15 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_18 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_19 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_20 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_21 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_22 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_23 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_10 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_11 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_12 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_13 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_14 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_16 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_17 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_18 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_19 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_20 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_21 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_22 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_9 | 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-default | Not affected |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_0 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_1 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_10 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_11 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_2 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_3 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_4 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_5 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_6 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_7 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_8 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_9 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_0 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_1 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_10 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_11 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_2 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_3 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_4 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_5 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_6 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_7 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_8 | In progress |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_9 | In progress |
| SUSE Linux Micro 6.2 | kernel-source | Not affected |
| 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 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 | Not 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 Availability Extension 15 SP4 | kernel-source | Released |
| SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-default | Released |
| SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP4 | kernel-source | 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 | 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 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kernel-source | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_70 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_71 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_72 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_73 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_74 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_75 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_76 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_77 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_78 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_79 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_80 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_82 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_83 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_41 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_42 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_43 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_44 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_45 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_46 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_47 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_48 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_49 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_50 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_51 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_52 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_53 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_54 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-source | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_27 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_28 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_29 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_30 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_31 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_32 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_33 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_34 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_35 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_36 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_37 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_38 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_39 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_40 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_41 | Released |
| SUSE Linux Enterprise Live Patching 15 SP5 | kernel-source | Released |
| 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 | Released |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-docs | Released |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-ec2 | Released |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-source | Released |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-syms | Released |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-trace | Released |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-xen | Released |
| SUSE Linux Enterprise Server 12 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-default | Released |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source | Released |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-syms | Released |
| SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security | kernel-default | Released |
| SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security | kernel-source | Released |
| 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 | 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 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-64kb | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-default | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-default-base | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-docs | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-obs-build | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-source | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-syms | Released |
| SUSE Linux Enterprise Server 15 SP6-LTSS | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-default | Released |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-source | Released |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-syms | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-default-base | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-docs | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-obs-build | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-source | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-syms | Released |
| SUSE Manager Proxy 4.3 | kernel-source | Affected |
| SUSE Manager Proxy LTS 4.3 | kernel-default | Released |
| SUSE Manager Proxy LTS 4.3 | kernel-default-base | Released |
| SUSE Manager Proxy LTS 4.3 | kernel-source | Released |
| SUSE Manager Proxy LTS 4.3 | kernel-syms | Released |
| SUSE Manager Retail Branch Server 4.3 | kernel-source | Affected |
| SUSE Manager Retail Branch Server LTS 4.3 | kernel-default | Released |
| SUSE Manager Retail Branch Server LTS 4.3 | kernel-default-base | Released |
| SUSE Manager Retail Branch Server LTS 4.3 | kernel-source | Released |
| SUSE Manager Server 4.3 | kernel-source | Affected |
| SUSE Manager Server LTS 4.3 | kernel-default | Released |
| SUSE Manager Server LTS 4.3 | kernel-default-base | Released |
| SUSE Manager Server LTS 4.3 | kernel-source | Released |
| SUSE Manager Server LTS 4.3 | kernel-syms | Released |
| SUSE Manager Server LTS 4.3 | kernel-zfcpdump | Released |
| 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-source | Affected |
| SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Desktop 12 SP4 | 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 | Affected |
| SUSE Linux Enterprise Desktop 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Desktop 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise High Availability Extension 15 SP6 | kernel-default | Released |
| SUSE Linux Enterprise High Availability Extension 15 SP6 | kernel-source | Released |
| SUSE Linux Enterprise High Performance Computing 12 SP4 | 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 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-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 | 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 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_13 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_14 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_15 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_16 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_17 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_18 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_19 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_20 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_21 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_22 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_23 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_24 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_25 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_26 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-source | Released |
| SUSE Linux Enterprise Micro 5.0 | kernel-default | Affected |
| SUSE Linux Enterprise Micro 5.1 | kernel-default | Affected |
| SUSE Linux Enterprise Micro 5.2 | kernel-default | Affected |
| SUSE Linux Enterprise Micro 5.2 | 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 Basesystem 15 SP3 | 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 Module for Development Tools 15 SP3 | 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 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 | Affected |
| SUSE Linux Enterprise Server 11 SP4-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 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 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP3-BCL | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default | Affected |
| SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-source | Affected |
| SUSE Linux Enterprise Server for SAP Applications 12 SP4 | 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-source | 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 | 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-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 9 | kernel-source | Affected |
| SUSE OpenStack Cloud Crowbar 9 | 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 | Affected |
| openSUSE Leap 15.4 | kernel-default | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_41 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_42 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_43 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_44 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_45 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_46 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_47 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_48 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_49 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_50 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_51 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_52 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_53 | Released |
| openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_54 | Released |
| openSUSE Leap 15.4 | kernel-source | Released |
| openSUSE Leap 15.4 | kernel-source-rt | Affected |
| openSUSE Leap 15.5 | kernel-default | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_27 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_28 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_29 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_30 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_31 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_32 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_33 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_34 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_35 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_36 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_37 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_38 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_39 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_40 | Released |
| openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_41 | Released |
| openSUSE Leap 15.5 | kernel-source | Released |
| openSUSE Leap 15.5 | kernel-source-rt | Released |
| openSUSE Leap 15.6 | kernel-default | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_13 | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_14 | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_15 | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_16 | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_17 | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_18 | Released |
| openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_26 | Released |
| openSUSE Leap 15.6 | kernel-source | Released |
| Products at an unknown state of their lifecycle. | ||
| SUSE Manager Proxy 4.3 LTS | kernel-default | Released |
| SUSE Manager Proxy 4.3 LTS | kernel-source | Released |
| SUSE Manager Retail Branch Server 4.3 LTS | kernel-default | Released |
| SUSE Manager Retail Branch Server 4.3 LTS | kernel-source | Released |
| SUSE Manager Server 4.3 LTS | kernel-default | Released |
| SUSE Manager Server 4.3 LTS | kernel-source | Released |
SUSE Timeline for this CVE
CVE page created: Thu May 28 12:02:45 2026CVE page last modified: Thu Jul 30 15:09:08 2026