Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:dst: fix races in rt6_uncached_list_del() and rt_del_uncached_list()
syzbot was able to crash the kernel in rt6_uncached_list_flush_dev()
in an interesting way [1]
Crash happens in list_del_init()/INIT_LIST_HEAD() while writing
list->prev, while the prior write on list->next went well.
static inline void INIT_LIST_HEAD(struct list_head *list)
{
WRITE_ONCE(list->next, list); // This went well
WRITE_ONCE(list->prev, list); // Crash, @list has been freed.
}
Issue here is that rt6_uncached_list_del() did not attempt to lock
ul->lock, as list_empty(&rt->dst.rt_uncached) returned
true because the WRITE_ONCE(list->next, list) happened on the other CPU.
We might use list_del_init_careful() and list_empty_careful(),
or make sure rt6_uncached_list_del() always grabs the spinlock
whenever rt->dst.rt_uncached_list has been set.
A similar fix is neeed for IPv4.
[1]
BUG: KASAN: slab-use-after-free in INIT_LIST_HEAD include/linux/list.h:46 [inline]
BUG: KASAN: slab-use-after-free in list_del_init include/linux/list.h:296 [inline]
BUG: KASAN: slab-use-after-free in rt6_uncached_list_flush_dev net/ipv6/route.c:191 [inline]
BUG: KASAN: slab-use-after-free in rt6_disable_ip+0x633/0x730 net/ipv6/route.c:5020
Write of size 8 at addr ffff8880294cfa78 by task kworker/u8:14/3450
CPU: 0 UID: 0 PID: 3450 Comm: kworker/u8:14 Tainted: G L syzkaller #0 PREEMPT_{RT,(full)}
Tainted: [L]=SOFTLOCKUP
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 10/25/2025
Workqueue: netns cleanup_net
Call Trace:
<TASK>
dump_stack_lvl+0xe8/0x150 lib/dump_stack.c:120
print_address_description mm/kasan/report.c:378 [inline]
print_report+0xca/0x240 mm/kasan/report.c:482
kasan_report+0x118/0x150 mm/kasan/report.c:595
INIT_LIST_HEAD include/linux/list.h:46 [inline]
list_del_init include/linux/list.h:296 [inline]
rt6_uncached_list_flush_dev net/ipv6/route.c:191 [inline]
rt6_disable_ip+0x633/0x730 net/ipv6/route.c:5020
addrconf_ifdown+0x143/0x18a0 net/ipv6/addrconf.c:3853
addrconf_notify+0x1bc/0x1050 net/ipv6/addrconf.c:-1
notifier_call_chain+0x19d/0x3a0 kernel/notifier.c:85
call_netdevice_notifiers_extack net/core/dev.c:2268 [inline]
call_netdevice_notifiers net/core/dev.c:2282 [inline]
netif_close_many+0x29c/0x410 net/core/dev.c:1785
unregister_netdevice_many_notify+0xb50/0x2330 net/core/dev.c:12353
ops_exit_rtnl_list net/core/net_namespace.c:187 [inline]
ops_undo_list+0x3dc/0x990 net/core/net_namespace.c:248
cleanup_net+0x4de/0x7b0 net/core/net_namespace.c:696
process_one_work kernel/workqueue.c:3257 [inline]
process_scheduled_works+0xad1/0x1770 kernel/workqueue.c:3340
worker_thread+0x8a0/0xda0 kernel/workqueue.c:3421
kthread+0x711/0x8a0 kernel/kthread.c:463
ret_from_fork+0x510/0xa50 arch/x86/kernel/process.c:158
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:246
</TASK>
Allocated by task 803:
kasan_save_stack mm/kasan/common.c:57 [inline]
kasan_save_track+0x3e/0x80 mm/kasan/common.c:78
unpoison_slab_object mm/kasan/common.c:340 [inline]
__kasan_slab_alloc+0x6c/0x80 mm/kasan/common.c:366
kasan_slab_alloc include/linux/kasan.h:253 [inline]
slab_post_alloc_hook mm/slub.c:4953 [inline]
slab_alloc_node mm/slub.c:5263 [inline]
kmem_cache_alloc_noprof+0x18d/0x6c0 mm/slub.c:5270
dst_alloc+0x105/0x170 net/core/dst.c:89
ip6_dst_alloc net/ipv6/route.c:342 [inline]
icmp6_dst_alloc+0x75/0x460 net/ipv6/route.c:3333
mld_sendpack+0x683/0xe60 net/ipv6/mcast.c:1844
mld_send_cr net/ipv6/mcast.c:2154 [inline]
mld_ifc_work+0x83e/0xd60 net/ipv6/mcast.c:2693
process_one_work kernel/workqueue.c:3257 [inline]
process_scheduled_works+0xad1/0x1770 kernel/workqueue.c:3340
worker_thread+0x8a0/0xda0 kernel/workqueue.c:3421
kthread+0x711/0x8a0 kernel/kthread.c:463
ret_from_fork+0x510/0xa50 arch/x86/kernel/process.c:158
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entr
---truncated---
Upstream Security Advisories:
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 | National Vulnerability Database | SUSE |
|---|---|---|---|---|
| Base Score | 7.8 | 7.8 | 4.7 | 7 |
| 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:H/I:H/A:H | CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H | CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H |
| Attack Vector | Local | Local | Local | Local |
| Attack Complexity | Low | Low | High | High |
| Privileges Required | Low | Low | Low | Low |
| User Interaction | None | None | None | None |
| Scope | Unchanged | Unchanged | Unchanged | Unchanged |
| Confidentiality Impact | High | High | None | High |
| Integrity Impact | High | High | None | High |
| Availability Impact | High | High | High | High |
| CVSSv3 Version | 3.1 | 3.1 | 3.1 | 3.1 |
| CVSS detail | SUSE |
|---|---|
| Base Score | 7.3 |
| Vector | CVSS:4.0/AV:L/AC:H/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N |
| Attack Vector | Local |
| Attack Complexity | High |
| 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 | None |
| Subsequent System Integrity Impact | None |
| Subsequent System Availability Impact | None |
| CVSSv4 Version | 4.0 |
Note from the SUSE Security Team on the kernel-default package
SUSE will no longer fix all CVEs in the Linux Kernel anymore, but declare some bug classes as won't fix. Please refer to TID 21496 for more details. SUSE Bugzilla entries: 1257231 [IN_PROGRESS], 1258655 [NEW]SUSE Security Advisories:
- SUSE-SU-2026:0928-1, published 2026-03-18T13:32:23Z
- SUSE-SU-2026:0961-1, published 2026-03-23T09:08:52Z
- SUSE-SU-2026:0962-1, published 2026-03-23T09:09:03Z
- SUSE-SU-2026:0984-1, published 2026-03-23T22:20:54Z
- SUSE-SU-2026:1003-1, published 2026-03-25T09:25:51Z
- SUSE-SU-2026:1041-1, published 2026-03-25T14:13:36Z
- SUSE-SU-2026:1077-1, published 2026-03-26T12:42:31Z
- SUSE-SU-2026:1078-1, published 2026-03-26T12:43:14Z
- SUSE-SU-2026:1081-1, published 2026-03-26T13:23:57Z
- SUSE-SU-2026:1131-1, published 2026-03-27T16:02:22Z
- SUSE-SU-2026:1684-1, published 2026-05-05T06:34:23Z
- SUSE-SU-2026:1686-1, published 2026-05-05T06:34:31Z
- SUSE-SU-2026:1689-1, published 2026-05-05T06:34:34Z
- SUSE-SU-2026:1691-1, published 2026-05-05T07:04:40Z
- SUSE-SU-2026:1694-1, published 2026-05-06T00:22:33Z
- SUSE-SU-2026:1698-1, published 2026-05-06T01:49:45Z
- SUSE-SU-2026:1708-1, published 2026-05-06T11:04:11Z
- SUSE-SU-2026:1710-1, published 2026-05-06T11:38:10Z
- SUSE-SU-2026:1718-1, published 2026-05-06T12:33:52Z
- SUSE-SU-2026:1725-1, published 2026-05-06T16:04:08Z
- SUSE-SU-2026:1726-1, published 2026-05-06T16:04:15Z
- SUSE-SU-2026:1728-1, published 2026-05-06T21:38:02Z
- SUSE-SU-2026:1733-1, published 2026-05-07T09:04:22Z
- SUSE-SU-2026:1735-1, published 2026-05-07T02:34:47Z
- SUSE-SU-2026:1765-1, published 2026-05-08T11:04:21Z
- SUSE-SU-2026:1767-1, published 2026-05-08T11:04:29Z
- SUSE-SU-2026:1768-1, published 2026-05-08T11:05:01Z
- SUSE-SU-2026:1770-1, published 2026-05-08T11:05:12Z
- SUSE-SU-2026:1771-1, published 2026-05-08T11:05:28Z
- SUSE-SU-2026:1773-1, published 2026-05-08T15:33:54Z
- SUSE-SU-2026:1776-1, published 2026-05-08T12:33:55Z
- SUSE-SU-2026:20667-1, published 2026-03-11T16:03:14Z
- SUSE-SU-2026:20711-1, published 2026-03-11T16:03:14Z
- SUSE-SU-2026:20713-1, published 2026-03-11T16:03:14Z
- SUSE-SU-2026:20720-1, published 2026-03-11T15:00:09Z
- SUSE-SU-2026:20772-1, published 2026-03-23T12:44:30Z
- SUSE-SU-2026:20794-1, published 2026-03-23T11:29:16Z
- SUSE-SU-2026:20819-1, published 2026-03-23T11:29:16Z
- SUSE-SU-2026:20838-1, published 2026-03-25T08:52:20Z
- SUSE-SU-2026:20845-1, published 2026-03-24T16:48:25Z
- SUSE-SU-2026:20872-1, published 2026-03-24T16:48:25Z
- SUSE-SU-2026:20873-1, published 2026-03-25T08:43:53Z
- SUSE-SU-2026:20876-1, published 2026-03-24T16:48:38Z
- SUSE-SU-2026:20931-1, published 2026-03-25T08:49:52Z
- SUSE-SU-2026:21284-1, published 2026-04-22T11:14:23Z
- SUSE-SU-2026:21468-1, published 2026-05-05T13:07:20Z
- SUSE-SU-2026:21469-1, published 2026-05-05T13:07:20Z
- SUSE-SU-2026:21470-1, published 2026-05-05T13:07:20Z
- SUSE-SU-2026:21471-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21472-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21473-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21474-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21475-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21476-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21477-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21479-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21480-1, published 2026-05-05T13:09:59Z
- SUSE-SU-2026:21481-1, published 2026-05-05T13:09:59Z
- SUSE-SU-2026:21482-1, published 2026-05-05T13:09:59Z
- SUSE-SU-2026:21483-1, published 2026-05-05T13:09:59Z
- SUSE-SU-2026:21484-1, published 2026-05-05T13:12:42Z
- SUSE-SU-2026:21485-1, published 2026-05-05T13:12:42Z
- SUSE-SU-2026:21486-1, published 2026-05-05T13:12:42Z
- SUSE-SU-2026:21487-1, published 2026-05-05T13:15:02Z
- SUSE-SU-2026:21491-1, published 2026-05-05T14:59:28Z
- SUSE-SU-2026:21495-1, published 2026-05-05T13:10:05Z
- SUSE-SU-2026:21496-1, published 2026-05-05T13:10:05Z
- SUSE-SU-2026:21497-1, published 2026-05-05T13:10:05Z
- SUSE-SU-2026:21498-1, published 2026-05-05T13:10:44Z
- SUSE-SU-2026:21499-1, published 2026-05-05T13:11:23Z
- SUSE-SU-2026:21500-1, published 2026-05-05T13:14:11Z
- SUSE-SU-2026:21501-1, published 2026-05-05T13:15:07Z
- SUSE-SU-2026:21503-1, published 2026-05-05T13:18:42Z
- SUSE-SU-2026:21504-1, published 2026-05-05T13:36:02Z
- SUSE-SU-2026:21505-1, published 2026-05-05T14:58:33Z
- SUSE-SU-2026:21506-1, published 2026-05-05T13:07:20Z
- SUSE-SU-2026:21507-1, published 2026-05-05T13:07:20Z
- SUSE-SU-2026:21508-1, published 2026-05-05T13:07:20Z
- SUSE-SU-2026:21509-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21510-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21511-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21512-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21513-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21514-1, published 2026-05-05T13:07:21Z
- SUSE-SU-2026:21515-1, published 2026-05-05T13:07:21Z
List of released packages
| Product(s) | Fixed package version(s) | References |
|---|---|---|
| Container suse/sl-micro/6.0/baremetal-os-container:2.1.3-6.172 |
| |
| Container suse/sl-micro/6.0/base-os-container:2.1.3-7.141 |
| |
| Container suse/sl-micro/6.0/kvm-os-container:2.1.3-6.155 |
| |
| Container suse/sl-micro/6.0/rt-os-container:2.1.3-7.168 |
| |
| Container suse/sl-micro/6.0/toolbox:13.2-9.106 |
| |
| Container suse/sl-micro/6.1/baremetal-os-container:2.2.1-7.67 |
| |
| Container suse/sl-micro/6.1/base-os-container:2.2.1-5.90 |
| |
| Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.94 |
| |
| Container suse/sl-micro/6.1/rt-os-container:2.2.1-5.91 |
| |
| Container suse/sle-micro-rancher/5.2:latest |
| |
| Container suse/sle-micro/base-5.5:2.0.4-5.8.254 Image SLES15-SP5-BYOS-Azure Image SLES15-SP5-BYOS-EC2 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-EC2 Image SLES15-SP5-HPC-BYOS-GCE Image SLES15-SP5-Hardened-BYOS-Azure Image SLES15-SP5-Hardened-BYOS-EC2 Image SLES15-SP5-Hardened-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-EC2 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.489 |
| |
| Container suse/sle-micro/rt-5.5:latest |
| |
| Image SL-Micro-Azure Image SL-Micro-BYOS-Azure Image SL-Micro-BYOS-EC2 Image SL-Micro-BYOS-GCE Image SL-Micro-EC2 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-Azure-llc Image SUSE-Multi-Linux-Manager-Server-Azure-ltd 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 |
| |
| 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 SLES-Azure-3P Image SLES-Azure-Basic Image SLES-Azure-Standard Image SLES-BYOS-Azure Image SLES-BYOS-EC2 Image SLES-BYOS-GCE Image SLES-CHOST-BYOS-GDC Image SLES-CHOST-BYOS-SAP-CCloud Image SLES-EC2 Image SLES-GCE Image SLES-GCE-3P Image SLES-Hardened-BYOS-Azure Image SLES-Hardened-BYOS-EC2 Image SLES-Hardened-BYOS-GCE Image SLES-SAPCAL-Azure Image SLES-SAPCAL-EC2 Image SLES-SAPCAL-GCE |
| |
| Image SLES-SAP-Azure Image SLES-SAP-Azure-3P Image SLES-SAP-BYOS-Azure Image SLES-SAP-BYOS-EC2 Image SLES-SAP-BYOS-GCE Image SLES-SAP-EC2 Image SLES-SAP-GCE Image SLES-SAP-GCE-3P |
| |
| Image SLES12-SP5-Azure-BYOS Image SLES12-SP5-Azure-HPC-BYOS Image SLES12-SP5-EC2-BYOS Image SLES12-SP5-EC2-ECS-On-Demand Image SLES12-SP5-EC2-On-Demand Image SLES12-SP5-GCE-BYOS Image SLES12-SP5-GCE-On-Demand |
| |
| Image SLES12-SP5-Azure-SAP-BYOS Image SLES12-SP5-Azure-SAP-On-Demand Image SLES12-SP5-EC2-SAP-BYOS Image SLES12-SP5-EC2-SAP-On-Demand Image SLES12-SP5-GCE-SAP-BYOS Image SLES12-SP5-GCE-SAP-On-Demand |
| |
| 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-Micro-5-3-BYOS Image SLES15-SP4-Micro-5-3-BYOS-Azure Image SLES15-SP4-Micro-5-4-BYOS Image SLES15-SP4-Micro-5-4-BYOS-Azure 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 |
| |
| 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 |
| |
| Image SLES15-SP6-SAP-Azure-3P Image SLES15-SP6-SAP-Azure-LI-BYOS Image SLES15-SP6-SAP-Azure-LI-BYOS-Production Image SLES15-SP6-SAP-Azure-VLI-BYOS Image SLES15-SP6-SAP-Azure-VLI-BYOS-Production 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-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-GCE-3P 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-Azure-LI-BYOS-Production Image SLES15-SP7-SAP-Azure-VLI-BYOS-Production Image SLES15-SP7-SAP-BYOS-Azure Image SLES15-SP7-SAP-BYOS-EC2 Image SLES15-SP7-SAP-BYOS-GCE Image SLES15-SP7-SAP-EC2 Image SLES15-SP7-SAP-GCE Image SLES15-SP7-SAP-GCE-3P 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 Linux Enterprise Desktop 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Product-WE-15-SP7-2026-1081 |
| SUSE Linux Enterprise High Availability Extension 15 SP4 |
| Patchnames: SUSE-SLE-Product-HA-15-SP4-2026-984 |
| SUSE Linux Enterprise High Availability Extension 15 SP7 |
| Patchnames: SUSE-SLE-Product-HA-15-SP7-2026-1081 |
| SUSE Linux Enterprise High Availability Extension 16.0 |
| Patchnames: SUSE-SLES-HA-16.0-435 |
| SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-ESPOS-2026-984 |
| SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-LTSS-2026-984 |
| SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP5-ESPOS-2026-1003 |
| SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP5-LTSS-2026-1003 |
| SUSE Linux Enterprise High Performance Computing 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Module-Legacy-15-SP7-2026-1081 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-1081 |
| SUSE Linux Enterprise Live Patching 12 SP5 |
| Patchnames: SUSE-SLE-Live-Patching-12-SP5-2026-1765 SUSE-SLE-Live-Patching-12-SP5-2026-1766 SUSE-SLE-Live-Patching-12-SP5-2026-1767 SUSE-SLE-Live-Patching-12-SP5-2026-1773 SUSE-SLE-Live-Patching-12-SP5-2026-1779 SUSE-SLE-Live-Patching-12-SP5-2026-1780 SUSE-SLE-Live-Patching-12-SP5-2026-1781 SUSE-SLE-Live-Patching-12-SP5-2026-1782 SUSE-SLE-Live-Patching-12-SP5-2026-1786 SUSE-SLE-Live-Patching-12-SP5-2026-1790 SUSE-SLE-Live-Patching-12-SP5-2026-1791 |
| SUSE Linux Enterprise Live Patching 15 SP4 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP4-2026-1718 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1733 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1734 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1735 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1768 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1769 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1776 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1793 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1798 SUSE-SLE-Module-Live-Patching-15-SP4-2026-1799 |
| SUSE Linux Enterprise Live Patching 15 SP5 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP5-2026-1738 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1739 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1746 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1747 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1770 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1794 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1800 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1801 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1804 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1805 SUSE-SLE-Module-Live-Patching-15-SP5-2026-1806 |
| SUSE Linux Enterprise Live Patching 15 SP6 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP6-2026-1727 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1728 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1729 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1771 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1772 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1774 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1787 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1788 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1789 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1795 SUSE-SLE-Module-Live-Patching-15-SP6-2026-1796 |
| SUSE Linux Enterprise Live Patching 15 SP7 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP7-2026-1680 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1681 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1682 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1684 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1685 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1686 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1687 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1688 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1689 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1691 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1694 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1695 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1696 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1697 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1698 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1708 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1709 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1710 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1725 SUSE-SLE-Module-Live-Patching-15-SP7-2026-1726 SUSE-SLE-Module-Live-Patching-15-SP7-2026-962 |
| SUSE Linux Enterprise Micro 5.2 |
| Patchnames: SUSE-SUSE-MicroOS-5.2-2026-928 SUSE-SUSE-MicroOS-5.2-2026-961 |
| SUSE Linux Enterprise Micro 5.3 |
| Patchnames: SUSE-SLE-Micro-5.3-2026-1131 SUSE-SLE-Micro-5.3-2026-984 |
| SUSE Linux Enterprise Micro 5.4 |
| Patchnames: SUSE-SLE-Micro-5.4-2026-1131 SUSE-SLE-Micro-5.4-2026-984 |
| SUSE Linux Enterprise Micro 5.5 |
| Patchnames: SUSE-SLE-Micro-5.5-2026-1003 SUSE-SLE-Micro-5.5-2026-1077 |
| SUSE Linux Enterprise Module for Basesystem 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-1081 |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 |
| SUSE Linux Enterprise Module for Legacy 15 SP7 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP7-2026-1081 |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP7-2026-1081 |
| SUSE Linux Enterprise Real Time 15 SP7 SUSE Real Time Module 15 SP7 |
| Patchnames: SUSE-SLE-Module-RT-15-SP7-2026-962 |
| SUSE Linux Enterprise Server 12 SP5-LTSS |
| Patchnames: SUSE-SLE-SERVER-12-SP5-LTSS-2026-1078 |
| SUSE Linux Enterprise Server 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP4-LTSS-2026-984 |
| SUSE Linux Enterprise Server 15 SP5-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP5-LTSS-2026-1003 |
| SUSE Linux Enterprise Server 15 SP6-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP6-LTSS-2026-1041 |
| SUSE Linux Enterprise Server 15 SP7 SUSE Linux Enterprise Server for SAP Applications 15 SP7 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Module-Legacy-15-SP7-2026-1081 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-1081 SUSE-SLE-Product-WE-15-SP7-2026-1081 |
| SUSE Linux Enterprise Server 16.0 |
| Patchnames: SUSE-SLES-16.0-435 SUSE-SLES-16.0-691 SUSE-SLES-16.0-692 SUSE-SLES-16.0-694 SUSE-SLES-16.0-705 SUSE-SLES-16.0-706 |
| SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 |
| Patchnames: SUSE-SLE-SERVER-12-SP5-LTSS-EXTENDED-SECURITY-2026-1078 |
| SUSE Linux Enterprise Server for SAP Applications 15 SP4 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP4-2026-984 |
| SUSE Linux Enterprise Server for SAP Applications 15 SP5 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP5-2026-1003 |
| SUSE Linux Enterprise Server for SAP Applications 15 SP6 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP6-2026-1041 |
| SUSE Linux Enterprise Server for SAP applications 16.0 |
| Patchnames: SUSE-SLES-16.0-435 SUSE-SLES-16.0-691 SUSE-SLES-16.0-692 SUSE-SLES-16.0-694 SUSE-SLES-16.0-705 SUSE-SLES-16.0-706 |
| SUSE Linux Enterprise Workstation Extension 15 SP7 |
| Patchnames: SUSE-SLE-Product-WE-15-SP7-2026-1081 |
| SUSE Linux Micro 6.0 |
| Patchnames: SUSE-SLE-Micro-6.0-kernel-291 SUSE-SLE-Micro-6.0-kernel-295 SUSE-SLE-Micro-6.0-kernel-374 SUSE-SLE-Micro-6.0-kernel-375 SUSE-SLE-Micro-6.0-kernel-376 SUSE-SLE-Micro-6.0-kernel-377 SUSE-SLE-Micro-6.0-kernel-378 SUSE-SLE-Micro-6.0-kernel-379 SUSE-SLE-Micro-6.0-kernel-380 SUSE-SLE-Micro-6.0-kernel-381 SUSE-SLE-Micro-6.0-kernel-382 SUSE-SLE-Micro-6.0-kernel-383 SUSE-SLE-Micro-6.0-kernel-385 SUSE-SLE-Micro-6.0-kernel-386 SUSE-SLE-Micro-6.0-kernel-387 SUSE-SLE-Micro-6.0-kernel-388 SUSE-SLE-Micro-6.0-kernel-389 SUSE-SLE-Micro-6.0-kernel-390 SUSE-SLE-Micro-6.0-kernel-391 SUSE-SLE-Micro-6.0-kernel-392 SUSE-SLE-Micro-6.0-kernel-394 SUSE-SLE-Micro-6.0-kernel-396 |
| SUSE Linux Micro 6.1 |
| Patchnames: SUSE-SLE-Micro-6.1-kernel-291 SUSE-SLE-Micro-6.1-kernel-295 SUSE-SLE-Micro-6.1-kernel-374 SUSE-SLE-Micro-6.1-kernel-375 SUSE-SLE-Micro-6.1-kernel-376 SUSE-SLE-Micro-6.1-kernel-377 SUSE-SLE-Micro-6.1-kernel-378 SUSE-SLE-Micro-6.1-kernel-379 SUSE-SLE-Micro-6.1-kernel-380 SUSE-SLE-Micro-6.1-kernel-381 SUSE-SLE-Micro-6.1-kernel-382 SUSE-SLE-Micro-6.1-kernel-383 SUSE-SLE-Micro-6.1-kernel-385 SUSE-SLE-Micro-6.1-kernel-386 SUSE-SLE-Micro-6.1-kernel-387 SUSE-SLE-Micro-6.1-kernel-388 SUSE-SLE-Micro-6.1-kernel-389 SUSE-SLE-Micro-6.1-kernel-390 SUSE-SLE-Micro-6.1-kernel-391 SUSE-SLE-Micro-6.1-kernel-392 SUSE-SLE-Micro-6.1-kernel-394 SUSE-SLE-Micro-6.1-kernel-396 |
| SUSE Linux Micro 6.2 |
| Patchnames: SUSE-SL-Micro-6.2-435 SUSE-SL-Micro-6.2-687 SUSE-SL-Micro-6.2-691 SUSE-SL-Micro-6.2-692 SUSE-SL-Micro-6.2-694 SUSE-SL-Micro-6.2-695 SUSE-SL-Micro-6.2-696 SUSE-SL-Micro-6.2-697 SUSE-SL-Micro-6.2-698 SUSE-SL-Micro-6.2-700 SUSE-SL-Micro-6.2-705 SUSE-SL-Micro-6.2-706 |
| SUSE Manager Proxy LTS 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Proxy-4.3-LTS-2026-984 |
| SUSE Manager Retail Branch Server LTS 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-LTS-2026-984 |
| SUSE Manager Server LTS 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Server-4.3-LTS-2026-984 |
| openSUSE Leap 15.6 |
| Patchnames: openSUSE-SLE-15.6-2026-1041 |
| openSUSE Leap 16.0 |
| Patchnames: openSUSE-Leap-16.0-435 |
List of packages in QA
| Product(s) | Package(s) |
|---|---|
| SUSE Linux Enterprise Server 16.0 |
|
First public cloud image revisions this CVE is fixed in:
- alibaba/sles-15-sp4-chost-byos-v20260507
- alibaba/sles-15-sp5-chost-byos-v20260507
- alibaba/sles-15-sp7-chost-byos-v20260428
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260402-arm64
- amazon/suse-multi-linux-manager-server-5-1-v20260312-x86_64-llc
- amazon/suse-sle-hpc-15-sp4-byos-v20260508-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp5-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-5-v20260427-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-5-5-v20260427-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-0-byos-v20260505-hvm-ssd-arm64
- amazon/suse-sle-micro-6-0-byos-v20260505-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-0-v20260312-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-0-v20260505-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-0-v20260506-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-6-1-byos-v20260505-hvm-ssd-arm64
- amazon/suse-sle-micro-6-1-byos-v20260505-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-1-v20260406-hvm-ssd-arm64-ltd
- amazon/suse-sles-12-sp5-byos-v20260425-hvm-ssd-x86_64
- amazon/suse-sles-12-sp5-v20260427-ecs-hvm-ssd-x86_64
- amazon/suse-sles-12-sp5-v20260427-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-byos-v20260506-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-chost-byos-v20260507-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-chost-byos-v20260507-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-hardened-byos-v20260507-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-sapcal-v20260425-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-byos-v20260506-hvm-ssd-arm64
- amazon/suse-sles-15-sp5-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-chost-byos-v20260507-hvm-ssd-arm64
- amazon/suse-sles-15-sp5-chost-byos-v20260507-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-hardened-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-sapcal-v20260425-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-v20260425-ecs-hvm-ssd-x86_64
- amazon/suse-sles-15-sp5-v20260425-hvm-ssd-arm64
- amazon/suse-sles-15-sp5-v20260425-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-byos-v20260505-hvm-ssd-arm64
- amazon/suse-sles-15-sp6-byos-v20260505-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-hardened-byos-v20260505-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-sapcal-v20260424-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-v20260424-ecs-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-v20260424-hvm-ssd-x86_64
- amazon/suse-sles-15-sp6-v20260504-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-byos-v20260504-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-byos-v20260504-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-chost-byos-v20260424-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-chost-byos-v20260424-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-hardened-byos-v20260504-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-sapcal-v20260424-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260424-ecs-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260424-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-v20260504-hvm-ssd-arm64
- amazon/suse-sles-sap-12-sp5-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-hardened-byos-v20260507-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp5-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp5-hardened-byos-v20260507-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp6-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp6-hardened-byos-v20260506-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp7-byos-v20260505-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp7-hardened-byos-v20260505-hvm-ssd-x86_64
- google/sle-hpc-15-sp4-byos-v20260423-x86-64
- google/sle-hpc-15-sp5-byos-v20260423-x86-64
- google/sle-hpc-15-sp6-byos-v20260506-x86-64
- google/sle-hpc-15-sp7-byos-v20260506-x86-64
- google/sle-micro-6-0-byos-v20260506-arm64
- google/sle-micro-6-0-byos-v20260506-x86-64
- google/sle-micro-6-1-byos-v20260506-arm64
- google/sle-micro-6-1-byos-v20260506-x86-64
- google/sles-12-sp5-byos-v20260426-x86-64
- google/sles-12-sp5-v20260424-x86-64
- google/sles-15-sp4-byos-v20260424-arm64
- google/sles-15-sp4-byos-v20260424-x86-64
- google/sles-15-sp4-chost-byos-v20260507-arm64
- google/sles-15-sp4-chost-byos-v20260507-x86-64
- google/sles-15-sp4-hardened-byos-v20260424-x86-64
- google/sles-15-sp4-sapcal-v20260424-x86-64
- google/sles-15-sp5-byos-v20260424-arm64
- google/sles-15-sp5-byos-v20260424-x86-64
- google/sles-15-sp5-chost-byos-v20260507-arm64
- google/sles-15-sp5-chost-byos-v20260507-x86-64
- google/sles-15-sp5-hardened-byos-v20260424-x86-64
- google/sles-15-sp5-sapcal-v20260424-x86-64
- google/sles-15-sp5-v20260424-arm64
- google/sles-15-sp5-v20260424-x86-64
- google/sles-15-sp6-byos-v20260506-arm64
- google/sles-15-sp6-byos-v20260506-x86-64
- google/sles-15-sp6-hardened-byos-v20260506-x86-64
- google/sles-15-sp6-sapcal-v20260506-x86-64
- google/sles-15-sp6-v20260506-arm64
- google/sles-15-sp6-v20260506-x86-64
- google/sles-15-sp7-byos-v20260504-arm64
- google/sles-15-sp7-byos-v20260504-x86-64
- google/sles-15-sp7-chost-byos-v20260421-arm64
- google/sles-15-sp7-chost-byos-v20260421-x86-64
- google/sles-15-sp7-hardened-byos-v20260504-x86-64
- google/sles-15-sp7-sapcal-v20260504-x86-64
- google/sles-15-sp7-v20260504-arm64
- google/sles-15-sp7-v20260504-x86-64
- google/sles-sap-12-sp5-byos-v20260412-x86-64
- google/sles-sap-12-sp5-v20260412-x86-64
- google/sles-sap-15-sp4-byos-v20260424-x86-64
- google/sles-sap-15-sp4-hardened-byos-v20260424-x86-64
- google/sles-sap-15-sp4-hardened-v20260424-x86-64
- google/sles-sap-15-sp4-v20260424-x86-64
- google/sles-sap-15-sp5-byos-v20260424-x86-64
- google/sles-sap-15-sp5-hardened-byos-v20260424-x86-64
- google/sles-sap-15-sp5-hardened-v20260424-x86-64
- google/sles-sap-15-sp5-v20260424-x86-64
- google/sles-sap-15-sp6-byos-v20260506-x86-64
- google/sles-sap-15-sp6-hardened-byos-v20260506-x86-64
- google/sles-sap-15-sp6-hardened-v20260506-x86-64
- google/sles-sap-15-sp6-v20260506-x86-64
- google/sles-sap-15-sp7-byos-v20260505-x86-64
- google/sles-sap-15-sp7-hardened-byos-v20260505-x86-64
- google/sles-sap-15-sp7-hardened-v20260505-x86-64
- google/sles-sap-15-sp7-v20260505-x86-64
- google/suse-multi-linux-mgr-proxy-5-1-byos-v20260507-arm64
- google/suse-multi-linux-mgr-proxy-5-1-byos-v20260507-x86-64
- google/suse-multi-linux-mgr-server-5-1-byos-v20260507-x86-64
- google/suse-multi-linux-mgr-server-5-1-byos-v20260508-arm64
- microsoft/suse-multi-linux-manager-proxy-5-1-byos-v20260507-arm64
- microsoft/suse-multi-linux-manager-proxy-5-1-byos-v20260507-x86_64
- microsoft/suse-multi-linux-manager-server-5-1-byos-v20260507-x86_64
- microsoft/suse-multi-linux-manager-server-5-1-v20260325-arm64-ltd
- microsoft/suse-multi-linux-manager-server-5-1-v20260325-x86_64-ltd
- microsoft/suse-multi-linux-manager-server-5-1-v20260507-x86_64-llc
- microsoft/suse-multi-linux-manager-server-5-1-v20260508-arm64-llc
- microsoft/suse-sle-hpc-12-sp5-byos-v20260508-x86_64
- microsoft/suse-sle-hpc-15-sp4-byos-v20260423-x86_64
- microsoft/suse-sle-hpc-15-sp5-byos-v20260423-x86_64
- microsoft/suse-sle-hpc-15-sp6-byos-v20260505-x86_64
- microsoft/suse-sle-micro-5-3-byos-v20260126-arm64
- microsoft/suse-sle-micro-5-3-byos-v20260427-x86_64
- microsoft/suse-sle-micro-5-4-byos-v20260427-arm64
- microsoft/suse-sle-micro-5-4-byos-v20260427-x86_64
- microsoft/suse-sle-micro-5-5-byos-v20260427-arm64
- microsoft/suse-sle-micro-5-5-byos-v20260427-x86_64
- microsoft/suse-sle-micro-5-5-v20260409-arm64-ltd
- microsoft/suse-sle-micro-5-5-v20260409-x86_64-ltd
- microsoft/suse-sle-micro-6-0-byos-v20260505-arm64
- microsoft/suse-sle-micro-6-0-byos-v20260505-x86_64
- microsoft/suse-sle-micro-6-0-v20260505-arm64-llc
- microsoft/suse-sle-micro-6-0-v20260505-x86_64-llc
- microsoft/suse-sle-micro-6-0-v20260506-arm64-ltd
- microsoft/suse-sle-micro-6-0-v20260506-x86_64-ltd
- microsoft/suse-sle-micro-6-1-byos-v20260505-arm64
- microsoft/suse-sle-micro-6-1-byos-v20260505-x86_64
- microsoft/suse-sle-micro-6-1-v20260505-arm64-ltd
- microsoft/suse-sle-micro-6-1-v20260505-x86_64-ltd
- microsoft/suse-sle-micro-6-1-v20260506-arm64-llc
- microsoft/suse-sle-micro-6-1-v20260506-x86_64-llc
- microsoft/suse-sles-12-sp5-byos-v20260425-x86_64
- microsoft/suse-sles-15-sp4-byos-v20260425-arm64
- microsoft/suse-sles-15-sp4-byos-v20260425-x86_64
- microsoft/suse-sles-15-sp4-chost-byos-v20260507-arm64
- microsoft/suse-sles-15-sp4-chost-byos-v20260507-x86_64
- microsoft/suse-sles-15-sp4-hardened-byos-v20260425-x86_64
- microsoft/suse-sles-15-sp4-sapcal-v20260423-x86_64
- microsoft/suse-sles-15-sp5-byos-v20260425-arm64
- microsoft/suse-sles-15-sp5-byos-v20260425-x86_64
- microsoft/suse-sles-15-sp5-chost-byos-v20260507-arm64
- microsoft/suse-sles-15-sp5-chost-byos-v20260507-x86_64
- microsoft/suse-sles-15-sp5-hardened-byos-v20260425-x86_64
- microsoft/suse-sles-15-sp5-sapcal-v20260423-x86_64
- microsoft/suse-sles-15-sp5-v20260423-arm64
- microsoft/suse-sles-15-sp5-v20260425-arm64-llc
- microsoft/suse-sles-15-sp5-v20260425-arm64-ltd
- microsoft/suse-sles-15-sp6-byos-v20260505-arm64
- microsoft/suse-sles-15-sp6-byos-v20260505-x86_64
- microsoft/suse-sles-15-sp6-hardened-byos-v20260505-x86_64
- microsoft/suse-sles-15-sp6-sapcal-v20260505-x86_64
- microsoft/suse-sles-15-sp6-v20260505-arm64
- microsoft/suse-sles-15-sp6-v20260505-arm64-llc
- microsoft/suse-sles-15-sp6-v20260505-arm64-ltd
- microsoft/suse-sles-15-sp7-basic-v20260504-x86_64
- microsoft/suse-sles-15-sp7-byos-v20260504-arm64
- microsoft/suse-sles-15-sp7-byos-v20260504-x86_64
- microsoft/suse-sles-15-sp7-chost-byos-v20260421-arm64
- microsoft/suse-sles-15-sp7-chost-byos-v20260421-x86_64
- microsoft/suse-sles-15-sp7-hardened-byos-v20260504-x86_64
- microsoft/suse-sles-15-sp7-sapcal-v20260504-x86_64
- microsoft/suse-sles-15-sp7-v20260504-arm64
- microsoft/suse-sles-15-sp7-v20260504-arm64-llc
- microsoft/suse-sles-15-sp7-v20260504-arm64-ltd
- microsoft/suse-sles-15-sp7-v20260504-x86_64
- microsoft/suse-sles-15-sp7-v20260504-x86_64-llc
- microsoft/suse-sles-15-sp7-v20260504-x86_64-ltd
- microsoft/suse-sles-sap-12-sp5-byos-v20260506-x86_64
- microsoft/suse-sles-sap-12-sp5-v20260506-x86_64
- microsoft/suse-sles-sap-15-sp4-byos-v20260425-x86_64
- microsoft/suse-sles-sap-15-sp4-hardened-byos-v20260425-x86_64
- microsoft/suse-sles-sap-15-sp4-hardened-v20260423-x86_64
- microsoft/suse-sles-sap-15-sp4-v20260423-x86_64
- microsoft/suse-sles-sap-15-sp5-byos-v20260425-x86_64
- microsoft/suse-sles-sap-15-sp5-hardened-byos-v20260425-x86_64
- microsoft/suse-sles-sap-15-sp5-hardened-v20260425-x86_64
- microsoft/suse-sles-sap-15-sp5-v20260425-x86_64
- microsoft/suse-sles-sap-15-sp5-v20260425-x86_64-llc
- microsoft/suse-sles-sap-15-sp5-v20260425-x86_64-ltd
- microsoft/suse-sles-sap-15-sp6-byos-v20260506-x86_64
- microsoft/suse-sles-sap-15-sp6-hardened-byos-v20260506-x86_64
- microsoft/suse-sles-sap-15-sp6-hardened-v20260506-x86_64
- microsoft/suse-sles-sap-15-sp6-v20260505-x86_64-ltd
- microsoft/suse-sles-sap-15-sp6-v20260506-x86_64
- microsoft/suse-sles-sap-15-sp6-v20260506-x86_64-llc
- microsoft/suse-sles-sap-15-sp6-v20260506-x86_64-ltd
- microsoft/suse-sles-sap-15-sp7-byos-v20260505-x86_64
- microsoft/suse-sles-sap-15-sp7-hardened-byos-v20260505-x86_64
- microsoft/suse-sles-sap-15-sp7-hardened-v20260505-x86_64
- microsoft/suse-sles-sap-15-sp7-v20260505-x86_64
- microsoft/suse-sles-sap-15-sp7-v20260505-x86_64-llc
- microsoft/suse-sles-sap-15-sp7-v20260505-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 Availability Extension 16.0 | kernel-default | 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-source-azure | Affected |
| 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_0 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7-RT_Update_1 | 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_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_0 | Released |
| SUSE Linux Enterprise Live Patching 15 SP7 | kernel-livepatch-SLE15-SP7_Update_1 | 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.2 | kernel-default | Released |
| SUSE Linux Enterprise Micro for Rancher 5.2 | kernel-source | Released |
| SUSE Linux Enterprise Micro for Rancher 5.2 | 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 Module for Public Cloud 15 SP7 | kernel-source-azure | Affected |
| SUSE Linux Enterprise Real Time 15 SP7 | kernel-rt | Released |
| SUSE Linux Enterprise Real Time 15 SP7 | kernel-source-rt | Released |
| SUSE Linux Enterprise Real Time 15 SP7 | kernel-syms-rt | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-source-azure | Affected |
| SUSE Linux Enterprise Server 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Server 16.0 | kernel-64kb | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-azure | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-default | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-default-base | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-docs | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-kvmsmall | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-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_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-obs-qa | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-source | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-source-azure | Affected |
| SUSE Linux Enterprise Server 16.0 | kernel-syms | In progress |
| SUSE Linux Enterprise Server 16.0 | kernel-zfcpdump | In progress |
| SUSE Linux Enterprise Server 16.1 | kernel-source | Affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-64kb | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-azure | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-default-base | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-docs | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-obs-build | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-source | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-source-azure | Affected |
| 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-azure | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-default | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-default-base | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-docs | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-kvmsmall | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_0 | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_1 | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_2 | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_4 | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-livepatch-SLE16_Update_5 | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-obs-qa | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-source | Released |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-source-azure | Affected |
| SUSE Linux Enterprise Server for SAP applications 16.0 | kernel-syms | Released |
| SUSE Linux Enterprise Server for SAP applications 16.1 | kernel-source | Affected |
| SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-default | Released |
| SUSE Linux Enterprise Workstation Extension 15 SP7 | kernel-source | 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_10 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_11 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_12 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_13 | 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_6 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_7 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_8 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0-RT_Update_9 | 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_6 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_7 | Released |
| SUSE Linux Micro 6.0 | kernel-livepatch-MICRO-6-0_Update_8 | 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_10 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_11 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_12 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_13 | 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_6 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_7 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_8 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0-RT_Update_9 | 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_6 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_7 | Released |
| SUSE Linux Micro 6.1 | kernel-livepatch-MICRO-6-0_Update_8 | 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-64kb | Released |
| SUSE Linux Micro 6.2 | kernel-default | Released |
| SUSE Linux Micro 6.2 | kernel-default-base | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_0 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_1 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_2 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_3 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_4 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16-RT_Update_5 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_0 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_1 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_2 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_4 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_5 | Released |
| SUSE Linux Micro 6.2 | kernel-rt | Released |
| SUSE Linux Micro 6.2 | 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 |
| 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 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_67 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_68 | Released |
| SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_69 | 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 15 SP4 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_39 | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_40 | 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-source | Released |
| 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-livepatch-SLE15-SP5_Update_26 | 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-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 | 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-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 | kernel-source-azure | Unsupported |
| 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-source-azure | Unsupported |
| 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 | 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 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 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 High Performance Computing 15 SP6 | kernel-source-azure | Unsupported |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_10 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_11 | Released |
| SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_12 | 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-source | Released |
| SUSE Linux Enterprise Micro 5.0 | kernel-default | Affected |
| SUSE Linux Enterprise Micro 5.1 | kernel-default | Released |
| SUSE Linux Enterprise Micro 5.1 | kernel-rt | Released |
| SUSE Linux Enterprise Micro 5.1 | kernel-source-rt | Affected |
| 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 | Released |
| SUSE Linux Enterprise Micro 5.2 | kernel-source-rt | Released |
| 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 Module for Public Cloud 15 SP6 | kernel-source-azure | Unsupported |
| 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 | 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 Real Time 15 SP6 | kernel-source-rt | Unsupported |
| SUSE Linux Enterprise Server 11 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 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 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 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 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 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 |
| SUSE Real Time Module 15 SP6 | kernel-source-rt | Unsupported |
| 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-default | 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-source | Released |
| openSUSE Leap 15.5 | kernel-source-rt | Released |
| openSUSE Leap 15.6 | kernel-default | Released |
| openSUSE Leap 15.6 | kernel-source | Released |
| openSUSE Leap 15.6 | kernel-source-azure | Unsupported |
| openSUSE Leap 15.6 | kernel-source-rt | Unsupported |
| 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: Sun Jan 25 16:02:21 2026CVE page last modified: Sun May 10 11:20:21 2026