Upstream information
Description
In the Linux kernel, the following vulnerability has been resolved:af_unix: Fix garbage collector racing against connect()
Garbage collector does not take into account the risk of embryo getting
enqueued during the garbage collection. If such embryo has a peer that
carries SCM_RIGHTS, two consecutive passes of scan_children() may see a
different set of children. Leading to an incorrectly elevated inflight
count, and then a dangling pointer within the gc_inflight_list.
sockets are AF_UNIX/SOCK_STREAM
S is an unconnected socket
L is a listening in-flight socket bound to addr, not in fdtable
V's fd will be passed via sendmsg(), gets inflight count bumped
connect(S, addr) sendmsg(S, [V]); close(V) __unix_gc()
---------------- ------------------------- -----------
NS = unix_create1()
skb1 = sock_wmalloc(NS)
L = unix_find_other(addr)
unix_state_lock(L)
unix_peer(S) = NS
// V count=1 inflight=0
NS = unix_peer(S)
skb2 = sock_alloc()
skb_queue_tail(NS, skb2[V])
// V became in-flight
// V count=2 inflight=1
close(V)
// V count=1 inflight=1
// GC candidate condition met
for u in gc_inflight_list:
if (total_refs == inflight_refs)
add u to gc_candidates
// gc_candidates={L, V}
for u in gc_candidates:
scan_children(u, dec_inflight)
// embryo (skb1) was not
// reachable from L yet, so V's
// inflight remains unchanged
__skb_queue_tail(L, skb1)
unix_state_unlock(L)
for u in gc_candidates:
if (u.inflight)
scan_children(u, inc_inflight_move_tail)
// V count=1 inflight=2 (!)
If there is a GC-candidate listening socket, lock/unlock its state. This
makes GC wait until the end of any ongoing connect() to that socket. After
flipping the lock, a possibly SCM-laden embryo is already enqueued. And if
there is another embryo coming, it can not possibly carry SCM_RIGHTS. At
this point, unix_inflight() can not happen because unix_gc_lock is already
taken. Inflight graph remains unaffected.
SUSE information
Overall state of this security issue: Resolved
This issue is currently rated as having moderate severity.
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: 1223384 [IN_PROGRESS], 1223683 [NEW]SUSE Security Advisories:
- RHSA-2024:7000, published Fri Sep 27 15:05:48 UTC 2024
- RHSA-2024:8617, published Thu Oct 31 16:05:44 UTC 2024
- SUSE-SU-2024:2135-1, published Fri Jun 21 12:32:14 UTC 2024
- SUSE-SU-2024:2203-1, published Mon Aug 19 12:38:58 UTC 2024
- SUSE-SU-2024:2326-1, published Mon Jul 8 16:30:10 UTC 2024
- SUSE-SU-2024:2335-1, published Mon Jul 8 16:30:08 UTC 2024
- SUSE-SU-2024:2337-1, published Mon Jul 8 16:30:04 UTC 2024
- SUSE-SU-2024:2338-1, published Mon Jul 8 20:30:04 UTC 2024
- SUSE-SU-2024:2341-1, published Tue Jul 9 08:30:05 UTC 2024
- SUSE-SU-2024:2342-1, published Tue Jul 9 12:30:26 UTC 2024
- SUSE-SU-2024:2343-1, published Tue Jul 9 12:30:19 UTC 2024
- SUSE-SU-2024:2344-1, published Tue Jul 9 12:30:07 UTC 2024
- SUSE-SU-2024:2351-1, published Tue Jul 9 12:30:02 UTC 2024
- SUSE-SU-2024:2357-1, published Tue Jul 9 16:30:26 UTC 2024
- SUSE-SU-2024:2358-1, published Tue Jul 9 16:30:22 UTC 2024
- SUSE-SU-2024:2360-1, published Tue Jul 9 16:33:02 UTC 2024
- SUSE-SU-2024:2362-1, published Tue Jul 9 16:32:25 UTC 2024
- SUSE-SU-2024:2365-1, published Tue Jul 9 16:30:20 UTC 2024
- SUSE-SU-2024:2368-1, published Tue Jul 9 16:30:28 UTC 2024
- SUSE-SU-2024:2369-1, published Tue Jul 9 16:30:07 UTC 2024
- SUSE-SU-2024:2372-1, published Tue Jul 9 16:31:35 UTC 2024
- SUSE-SU-2024:2373-1, published Tue Jul 9 16:30:05 UTC 2024
- SUSE-SU-2024:2382-1, published Wed Jul 10 12:30:05 UTC 2024
- SUSE-SU-2024:2394-1, published Wed Jul 10 20:30:53 UTC 2024
- SUSE-SU-2024:2396-1, published Thu Jul 11 08:30:04 UTC 2024
- SUSE-SU-2024:2407-1, published Thu Jul 11 12:30:13 UTC 2024
- SUSE-SU-2024:2410-1, published Thu Jul 11 16:30:04 UTC 2024
- SUSE-SU-2024:2411-1, published Thu Jul 11 16:30:03 UTC 2024
- SUSE-SU-2024:2437-1, published Fri Jul 12 16:30:28 UTC 2024
- SUSE-SU-2024:2446-1, published Fri Jul 12 16:30:24 UTC 2024
- SUSE-SU-2024:2447-1, published Fri Jul 12 16:30:20 UTC 2024
- SUSE-SU-2024:2448-1, published Fri Jul 12 16:30:17 UTC 2024
- SUSE-SU-2024:2449-1, published Fri Jul 12 16:30:14 UTC 2024
- SUSE-SU-2024:2472-1, published Fri Jul 12 16:30:12 UTC 2024
- SUSE-SU-2024:2473-1, published Fri Jul 12 16:30:08 UTC 2024
- SUSE-SU-2024:2474-1, published Fri Jul 12 16:30:03 UTC 2024
- SUSE-SU-2024:2480-1, published Mon Jul 15 12:30:02 UTC 2024
- SUSE-SU-2024:2487-1, published Mon Jul 15 16:30:06 UTC 2024
- SUSE-SU-2024:2488-1, published Mon Jul 15 16:30:04 UTC 2024
- SUSE-SU-2024:2495-1, published Tue Jul 16 08:30:16 UTC 2024
- SUSE-SU-2024:2530-1, published Tue Jul 16 12:30:02 UTC 2024
- SUSE-SU-2024:2549-1, published Thu Jul 18 12:30:24 UTC 2024
- SUSE-SU-2024:2558-1, published Thu Jul 18 12:30:17 UTC 2024
- SUSE-SU-2024:2559-1, published Thu Jul 18 12:30:09 UTC 2024
- SUSE-SU-2024:2561-1, published Thu Jul 18 16:43:02 UTC 2024
- SUSE-SU-2024:2722-1, published Fri Aug 2 20:36:26 UTC 2024
- SUSE-SU-2024:2723-1, published Fri Aug 2 20:30:06 UTC 2024
- SUSE-SU-2024:2725-1, published Mon Aug 5 20:37:27 UTC 2024
- SUSE-SU-2024:2726-1, published Mon Aug 5 20:37:20 UTC 2024
- SUSE-SU-2024:2740-1, published Mon Aug 5 16:30:15 UTC 2024
- SUSE-SU-2024:2751-1, published Mon Aug 5 20:30:25 UTC 2024
- SUSE-SU-2024:2755-1, published Mon Aug 5 20:30:16 UTC 2024
- SUSE-SU-2024:2758-1, published Tue Aug 6 08:30:25 UTC 2024
- SUSE-SU-2024:2759-1, published Tue Aug 6 08:30:16 UTC 2024
- SUSE-SU-2024:2773-1, published Tue Aug 6 12:30:17 UTC 2024
- SUSE-SU-2024:2792-1, published Tue Aug 6 16:30:10 UTC 2024
- SUSE-SU-2024:2797-1, published Tue Aug 6 20:30:09 UTC 2024
- SUSE-SU-2024:2821-1, published Thu Aug 8 20:31:36 UTC 2024
- SUSE-SU-2024:2822-1, published Thu Aug 8 20:31:27 UTC 2024
- SUSE-SU-2024:2823-1, published Thu Aug 8 20:31:21 UTC 2024
- SUSE-SU-2024:2824-1, published Thu Aug 8 20:31:18 UTC 2024
- SUSE-SU-2024:2825-1, published Thu Aug 8 20:31:04 UTC 2024
- SUSE-SU-2024:2840-1, published Thu Aug 8 20:30:49 UTC 2024
- SUSE-SU-2024:2841-1, published Thu Aug 8 20:30:39 UTC 2024
- SUSE-SU-2024:2843-1, published Thu Aug 8 20:30:33 UTC 2024
- SUSE-SU-2024:2850-1, published Thu Aug 8 20:30:26 UTC 2024
- SUSE-SU-2024:2851-1, published Thu Aug 8 20:30:15 UTC 2024
- SUSE-SU-2024:2852-1, published Thu Aug 8 16:30:10 UTC 2024
- SUSE-SU-2024:2853-1, published Thu Aug 8 16:30:02 UTC 2024
- SUSE-SU-2024:2874-1, published Mon Aug 12 12:30:06 UTC 2024
- SUSE-SU-2024:2895-1, published Tue Aug 13 16:40:10 UTC 2024
- SUSE-SU-2024:2939-1, published Fri Aug 16 08:37:30 UTC 2024
- SUSE-SU-2024:2973-1, published Tue Aug 20 08:41:30 UTC 2024
- SUSE-SU-2024:3015-1, published Tue Aug 27 08:30:17 UTC 2024
- SUSE-SU-2024:3034-1, published Tue Aug 27 16:30:14 UTC 2024
- SUSE-SU-2024:3037-1, published Tue Aug 27 20:30:59 UTC 2024
- SUSE-SU-2024:3039-1, published Tue Aug 27 20:30:46 UTC 2024
- SUSE-SU-2024:3043-1, published Tue Aug 27 20:30:35 UTC 2024
- SUSE-SU-2024:3044-1, published Tue Aug 27 20:30:23 UTC 2024
- SUSE-SU-2024:3048-1, published Tue Aug 27 20:30:14 UTC 2024
- SUSE-SU-2024:3318-1, published Thu Sep 19 08:30:37 UTC 2024
- SUSE-SU-2024:3319-1, published Thu Sep 19 08:30:22 UTC 2024
- SUSE-SU-2024:3320-1, published Thu Sep 19 08:30:17 UTC 2024
- SUSE-SU-2024:3334-1, published Thu Sep 19 16:30:20 UTC 2024
- SUSE-SU-2024:3336-1, published Thu Sep 19 16:30:16 UTC 2024
- SUSE-SU-2024:3347-1, published Thu Sep 19 20:30:34 UTC 2024
- SUSE-SU-2024:3348-1, published Thu Sep 19 20:30:23 UTC 2024
- SUSE-SU-2024:3349-1, published Thu Sep 19 20:30:14 UTC 2024
- SUSE-SU-2024:3350-1, published Fri Sep 20 08:30:06 UTC 2024
- SUSE-SU-2024:3363-1, published Mon Sep 23 08:31:23 UTC 2024
- SUSE-SU-2024:3365-1, published Mon Sep 23 08:31:12 UTC 2024
- SUSE-SU-2024:3368-1, published Mon Sep 23 08:30:52 UTC 2024
- SUSE-SU-2024:3370-1, published Mon Sep 23 08:30:25 UTC 2024
- SUSE-SU-2024:3375-1, published Mon Sep 23 08:30:17 UTC 2024
- SUSE-SU-2024:3379-1, published Mon Sep 23 08:31:08 UTC 2024
- SUSE-SU-2024:3399-1, published Mon Sep 23 16:30:26 UTC 2024
- SUSE-SU-2024:3623-1, published 2024-10-14T21:35:12Z
- SUSE-SU-2024:3625-1, published 2024-10-15T01:03:49Z
- SUSE-SU-2024:3631-1, published 2024-10-15T09:03:51Z
- SUSE-SU-2024:3632-1, published 2024-10-15T09:03:56Z
- SUSE-SU-2024:3636-1, published 2024-10-15T09:33:31Z
- SUSE-SU-2024:3639-1, published 2024-10-15T12:03:52Z
- SUSE-SU-2024:3642-1, published 2024-10-15T19:03:43Z
- SUSE-SU-2024:3649-1, published 2024-10-16T09:33:39Z
- SUSE-SU-2024:3651-1, published 2024-10-16T10:04:05Z
- SUSE-SU-2024:3652-1, published 2024-10-16T10:04:15Z
- SUSE-SU-2024:3661-1, published 2024-10-16T13:33:42Z
- SUSE-SU-2024:3662-1, published 2024-10-16T14:03:47Z
- SUSE-SU-2024:3663-1, published 2024-10-16T14:03:59Z
- SUSE-SU-2024:3672-1, published 2024-10-16T16:34:16Z
- SUSE-SU-2024:3674-1, published 2024-10-16T17:03:36Z
- SUSE-SU-2024:3676-1, published 2024-10-16T17:33:49Z
- SUSE-SU-2024:3679-1, published 2024-10-16T17:34:15Z
- SUSE-SU-2024:3685-1, published 2024-10-16T18:04:02Z
- SUSE-SU-2024:3694-1, published 2024-10-16T19:04:10Z
- SUSE-SU-2024:3695-1, published 2024-10-16T19:04:20Z
- SUSE-SU-2024:3696-1, published 2024-10-16T19:04:30Z
- SUSE-SU-2024:3697-1, published 2024-10-16T19:04:40Z
- SUSE-SU-2024:3700-1, published 2024-10-16T19:33:49Z
- SUSE-SU-2024:3701-1, published 2024-10-16T19:34:00Z
- SUSE-SU-2024:3702-1, published 2024-10-16T19:34:10Z
- SUSE-SU-2024:3710-1, published 2024-10-16T21:44:03Z
- SUSE-SU-2024:3774-1, published 2024-10-29T15:04:01Z
- SUSE-SU-2024:3780-1, published 2024-10-29T20:48:12Z
- SUSE-SU-2024:3793-1, published 2024-10-30T09:04:17Z
- SUSE-SU-2024:3796-1, published 2024-10-30T11:04:08Z
- SUSE-SU-2024:3798-1, published 2024-10-30T11:33:45Z
- SUSE-SU-2024:3800-1, published 2024-10-30T12:04:00Z
- SUSE-SU-2024:3803-1, published 2024-10-30T13:33:41Z
- SUSE-SU-2024:3806-1, published 2024-10-30T13:34:06Z
- SUSE-SU-2024:3814-1, published 2024-10-30T17:03:47Z
- SUSE-SU-2024:3815-1, published 2024-10-30T17:03:57Z
- SUSE-SU-2024:3820-1, published 2024-10-30T17:34:25Z
- SUSE-SU-2024:3821-1, published 2024-10-30T17:34:34Z
- SUSE-SU-2024:3822-1, published 2024-10-30T17:34:43Z
- SUSE-SU-2024:3829-1, published 2024-10-30T18:33:58Z
- SUSE-SU-2024:3830-1, published 2024-10-30T18:34:04Z
- SUSE-SU-2024:3831-1, published 2024-10-30T18:34:15Z
- SUSE-SU-2024:3833-1, published 2024-10-30T18:34:21Z
- SUSE-SU-2024:3837-1, published 2024-10-30T19:03:55Z
- SUSE-SU-2024:3840-1, published 2024-10-30T21:46:10Z
- SUSE-SU-2024:3842-1, published 2024-10-31T07:33:51Z
- SUSE-SU-2024:3849-1, published 2024-10-31T10:33:49Z
- SUSE-SU-2024:3851-1, published 2024-10-31T10:34:07Z
- SUSE-SU-2024:3852-1, published 2024-10-31T10:34:17Z
- SUSE-SU-2024:3854-1, published 2024-10-31T11:03:50Z
- SUSE-SU-2024:3855-1, published 2024-10-31T11:33:37Z
- SUSE-SU-2024:3857-1, published 2024-10-31T15:04:06Z
- SUSE-SU-2024:3860-1, published 2024-10-31T16:33:36Z
List of released packages
Product(s) | Fixed package version(s) | References |
---|---|---|
Container bci/bci-sle15-kernel-module-devel:15.5.22.2 |
| |
Container bci/bci-sle15-kernel-module-devel:15.6.17.6 |
| |
Container suse/hpc/warewulf4-x86_64/sle-hpc-node:15.6.17.5.5 Image SLES15-SP6 Image SLES15-SP6-BYOS Image SLES15-SP6-BYOS-Azure Image SLES15-SP6-BYOS-EC2 Image SLES15-SP6-BYOS-GCE Image SLES15-SP6-CHOST-BYOS Image SLES15-SP6-CHOST-BYOS-Aliyun Image SLES15-SP6-CHOST-BYOS-Azure Image SLES15-SP6-CHOST-BYOS-EC2 Image SLES15-SP6-CHOST-BYOS-GCE Image SLES15-SP6-CHOST-BYOS-GDC Image SLES15-SP6-CHOST-BYOS-SAP-CCloud Image SLES15-SP6-EC2 Image SLES15-SP6-EC2-ECS-HVM Image SLES15-SP6-GCE Image SLES15-SP6-HPC-BYOS Image SLES15-SP6-HPC-BYOS-Azure Image SLES15-SP6-HPC-BYOS-EC2 Image SLES15-SP6-HPC-BYOS-GCE Image SLES15-SP6-HPC-EC2 Image SLES15-SP6-HPC-GCE Image SLES15-SP6-Hardened-BYOS Image SLES15-SP6-Hardened-BYOS-Azure Image SLES15-SP6-Hardened-BYOS-EC2 Image SLES15-SP6-Hardened-BYOS-GCE Image SLES15-SP6-SAP Image SLES15-SP6-SAP-Azure Image SLES15-SP6-SAP-EC2 Image SLES15-SP6-SAP-GCE Image SLES15-SP6-SAPCAL Image SLES15-SP6-SAPCAL-Azure Image SLES15-SP6-SAPCAL-EC2 Image SLES15-SP6-SAPCAL-GCE |
| |
Container suse/sle-micro-rancher/5.2:latest Image SLES15-SP3-BYOS-Azure Image SLES15-SP3-BYOS-EC2-HVM Image SLES15-SP3-BYOS-GCE Image SLES15-SP3-CHOST-BYOS-Aliyun Image SLES15-SP3-CHOST-BYOS-Azure Image SLES15-SP3-CHOST-BYOS-EC2 Image SLES15-SP3-CHOST-BYOS-GCE Image SLES15-SP3-CHOST-BYOS-SAP-CCloud Image SLES15-SP3-HPC-BYOS-Azure Image SLES15-SP3-HPC-BYOS-EC2-HVM Image SLES15-SP3-HPC-BYOS-GCE Image SLES15-SP3-Micro-5-1-BYOS-Azure Image SLES15-SP3-Micro-5-1-BYOS-EC2-HVM Image SLES15-SP3-Micro-5-1-BYOS-GCE Image SLES15-SP3-Micro-5-2-BYOS-Azure Image SLES15-SP3-Micro-5-2-BYOS-EC2-HVM Image SLES15-SP3-Micro-5-2-BYOS-GCE Image SLES15-SP3-SAPCAL-Azure Image SLES15-SP3-SAPCAL-EC2-HVM Image SLES15-SP3-SAPCAL-GCE |
| |
Container suse/sle-micro-rancher/5.3:latest Container suse/sle-micro-rancher/5.4:latest Image SLES15-SP4-BYOS Image SLES15-SP4-BYOS-Azure Image SLES15-SP4-BYOS-EC2 Image SLES15-SP4-BYOS-GCE Image SLES15-SP4-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-Manager-Proxy-4-3-BYOS Image SLES15-SP4-Manager-Proxy-4-3-BYOS-Azure Image SLES15-SP4-Manager-Proxy-4-3-BYOS-EC2 Image SLES15-SP4-Manager-Proxy-4-3-BYOS-GCE Image SLES15-SP4-Manager-Server-4-3 Image SLES15-SP4-Manager-Server-4-3-Azure-llc Image SLES15-SP4-Manager-Server-4-3-Azure-ltd Image SLES15-SP4-Manager-Server-4-3-BYOS Image SLES15-SP4-Manager-Server-4-3-BYOS-Azure Image SLES15-SP4-Manager-Server-4-3-BYOS-EC2 Image SLES15-SP4-Manager-Server-4-3-BYOS-GCE Image SLES15-SP4-Manager-Server-4-3-EC2-llc Image SLES15-SP4-Manager-Server-4-3-EC2-ltd Image SLES15-SP4-Micro-5-3 Image SLES15-SP4-Micro-5-3-BYOS Image SLES15-SP4-Micro-5-3-BYOS-Azure Image SLES15-SP4-Micro-5-3-BYOS-EC2 Image SLES15-SP4-Micro-5-3-BYOS-GCE Image SLES15-SP4-Micro-5-3-EC2 Image SLES15-SP4-Micro-5-4 Image SLES15-SP4-Micro-5-4-BYOS Image SLES15-SP4-Micro-5-4-BYOS-Azure Image SLES15-SP4-Micro-5-4-BYOS-EC2 Image SLES15-SP4-Micro-5-4-BYOS-GCE Image SLES15-SP4-Micro-5-4-EC2 Image SLES15-SP4-Micro-5-4-GCE Image SLES15-SP4-SAP Image SLES15-SP4-SAP-Azure Image SLES15-SP4-SAP-EC2 Image SLES15-SP4-SAP-GCE Image SLES15-SP4-SAPCAL Image SLES15-SP4-SAPCAL-Azure Image SLES15-SP4-SAPCAL-EC2 Image SLES15-SP4-SAPCAL-GCE |
| |
Container suse/sle-micro/kvm-5.5:2.0.4-3.5.128 |
| |
Container suse/sle-micro/rt-5.5:2.0.4-4.5.134 |
| |
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 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-Basic-On-Demand Image SLES12-SP5-Azure-HPC-On-Demand Image SLES12-SP5-Azure-Standard-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 SLES12-SP5-SAP-Azure-LI-BYOS-Production Image SLES12-SP5-SAP-Azure-VLI-BYOS-Production |
| |
Image SLES15-SP3-SAP-Azure-LI-BYOS-Production Image SLES15-SP3-SAP-Azure-VLI-BYOS-Production Image SLES15-SP3-SAP-BYOS-Azure Image SLES15-SP3-SAP-BYOS-EC2-HVM Image SLES15-SP3-SAP-BYOS-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-Azure-Basic Image SLES15-SP5-Azure-Standard Image SLES15-SP5-HPC-Azure |
| |
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-GCE Image SLES15-SP5-Manager-Proxy-5-0-BYOS Image SLES15-SP5-Manager-Proxy-5-0-BYOS-Azure Image SLES15-SP5-Manager-Proxy-5-0-BYOS-EC2 Image SLES15-SP5-Manager-Proxy-5-0-BYOS-GCE Image SLES15-SP5-Manager-Server-5-0-BYOS Image SLES15-SP5-Manager-Server-5-0-BYOS-Azure Image SLES15-SP5-Manager-Server-5-0-BYOS-EC2 Image SLES15-SP5-Manager-Server-5-0-BYOS-GCE Image SLES15-SP5-Micro-5-5 Image SLES15-SP5-Micro-5-5-Azure Image SLES15-SP5-Micro-5-5-BYOS Image SLES15-SP5-Micro-5-5-BYOS-Azure Image SLES15-SP5-Micro-5-5-BYOS-EC2 Image SLES15-SP5-Micro-5-5-BYOS-GCE Image SLES15-SP5-Micro-5-5-EC2 Image SLES15-SP5-Micro-5-5-GCE Image SLES15-SP5-SAPCAL-Azure Image SLES15-SP5-SAPCAL-EC2 Image SLES15-SP5-SAPCAL-GCE |
| |
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-Azure-Basic Image SLES15-SP6-Azure-Standard Image SLES15-SP6-HPC Image SLES15-SP6-HPC-Azure |
| |
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 |
| |
SUSE Enterprise Storage 7.1 |
| Patchnames: SUSE-Storage-7.1-2024-2362 |
SUSE Liberty Linux 8 |
| Patchnames: RHSA-2024:7000 |
SUSE Liberty Linux 9 |
| Patchnames: RHSA-2024:8617 |
SUSE Linux Enterprise Desktop 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-2939 SUSE-SLE-Module-Development-Tools-15-SP5-2024-2939 SUSE-SLE-Product-WE-15-SP5-2024-2939 |
SUSE Linux Enterprise Desktop 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-2203 SUSE-SLE-Module-Development-Tools-15-SP6-2024-2203 SUSE-SLE-Product-WE-15-SP6-2024-2203 |
SUSE Linux Enterprise High Availability Extension 12 SP5 |
| Patchnames: SUSE-SLE-HA-12-SP5-2024-2561 |
SUSE Linux Enterprise High Availability Extension 15 SP2 |
| Patchnames: SUSE-SLE-Product-HA-15-SP2-2024-2365 |
SUSE Linux Enterprise High Availability Extension 15 SP3 |
| Patchnames: SUSE-SLE-Product-HA-15-SP3-2024-2362 |
SUSE Linux Enterprise High Availability Extension 15 SP4 |
| Patchnames: SUSE-SLE-Product-HA-15-SP4-2024-2495 |
SUSE Linux Enterprise High Availability Extension 15 SP5 |
| Patchnames: SUSE-SLE-Product-HA-15-SP5-2024-2939 |
SUSE Linux Enterprise High Availability Extension 15 SP6 |
| Patchnames: SUSE-SLE-Product-HA-15-SP6-2024-2203 |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP2-LTSS-2024-2365 |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP3-LTSS-2024-2362 |
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-ESPOS-2024-2495 |
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-HPC-15-SP4-LTSS-2024-2495 |
SUSE Linux Enterprise High Performance Computing 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-2939 SUSE-SLE-Module-Development-Tools-15-SP5-2024-2939 SUSE-SLE-Module-Legacy-15-SP5-2024-2939 SUSE-SLE-Module-Public-Cloud-15-SP5-2024-2372 |
SUSE Linux Enterprise High Performance Computing 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-2203 SUSE-SLE-Module-Development-Tools-15-SP6-2024-2203 SUSE-SLE-Module-Legacy-15-SP6-2024-2203 SUSE-SLE-Module-Public-Cloud-15-SP6-2024-2135 |
SUSE Linux Enterprise Live Patching 12 SP5 |
| Patchnames: SUSE-SLE-Live-Patching-12-SP5-2024-2549 SUSE-SLE-Live-Patching-12-SP5-2024-2550 SUSE-SLE-Live-Patching-12-SP5-2024-2551 SUSE-SLE-Live-Patching-12-SP5-2024-2552 SUSE-SLE-Live-Patching-12-SP5-2024-2553 SUSE-SLE-Live-Patching-12-SP5-2024-2554 SUSE-SLE-Live-Patching-12-SP5-2024-2555 SUSE-SLE-Live-Patching-12-SP5-2024-2556 SUSE-SLE-Live-Patching-12-SP5-2024-2557 SUSE-SLE-Live-Patching-12-SP5-2024-2558 SUSE-SLE-Live-Patching-12-SP5-2024-2559 SUSE-SLE-Live-Patching-12-SP5-2024-2561 SUSE-SLE-Live-Patching-12-SP5-2024-2821 SUSE-SLE-Live-Patching-12-SP5-2024-2822 SUSE-SLE-Live-Patching-12-SP5-2024-2823 SUSE-SLE-Live-Patching-12-SP5-2024-3015 SUSE-SLE-Live-Patching-12-SP5-2024-3037 SUSE-SLE-Live-Patching-12-SP5-2024-3662 SUSE-SLE-Live-Patching-12-SP5-2024-3663 SUSE-SLE-Live-Patching-12-SP5-2024-3674 SUSE-SLE-Live-Patching-12-SP5-2024-3820 SUSE-SLE-Live-Patching-12-SP5-2024-3821 SUSE-SLE-Live-Patching-12-SP5-2024-3822 |
SUSE Linux Enterprise Live Patching 15 SP2 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP2-2024-2341 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2342 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2343 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2344 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2346 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2347 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2348 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2349 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2350 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2351 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2354 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2365 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2368 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2740 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2758 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2759 SUSE-SLE-Module-Live-Patching-15-SP2-2024-2797 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3039 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3043 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3044 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3642 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3649 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3676 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3685 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3796 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3800 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3803 SUSE-SLE-Module-Live-Patching-15-SP2-2024-3849 |
SUSE Linux Enterprise Live Patching 15 SP3 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP3-2024-2345 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2352 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2353 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2355 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2356 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2357 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2362 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2369 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2370 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2373 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2395 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2396 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2398 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2755 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2773 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2792 SUSE-SLE-Module-Live-Patching-15-SP3-2024-2798 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3034 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3048 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3051 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3651 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3652 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3661 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3669 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3774 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3798 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3814 SUSE-SLE-Module-Live-Patching-15-SP3-2024-3854 |
SUSE Linux Enterprise Live Patching 15 SP4 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP4-2024-2437 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2438 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2439 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2440 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2441 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2442 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2443 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2444 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2445 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2446 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2447 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2448 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2449 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2495 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2824 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2825 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2826 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2840 SUSE-SLE-Module-Live-Patching-15-SP4-2024-2841 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3363 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3365 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3368 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3375 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3399 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3672 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3694 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3695 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3696 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3700 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3780 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3793 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3806 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3815 SUSE-SLE-Module-Live-Patching-15-SP4-2024-3851 |
SUSE Linux Enterprise Live Patching 15 SP5 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP5-2024-2326 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2327 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2328 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2329 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2330 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2335 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2336 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2337 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2338 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2358 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2382 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2394 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2407 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2410 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2411 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2469 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2470 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2471 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2472 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2473 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2474 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2480 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2487 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2488 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2489 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2490 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2491 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2492 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2530 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2722 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2723 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2725 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2726 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2751 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2843 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2850 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2851 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2852 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2853 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2856 SUSE-SLE-Module-Live-Patching-15-SP5-2024-2939 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3318 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3319 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3320 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3334 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3336 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3340 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3347 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3348 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3349 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3350 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3367 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3379 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3623 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3625 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3631 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3632 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3636 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3639 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3678 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3679 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3697 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3701 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3702 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3710 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3829 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3830 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3831 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3832 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3833 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3837 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3840 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3842 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3852 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3855 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3857 SUSE-SLE-Module-Live-Patching-15-SP5-2024-3860 |
SUSE Linux Enterprise Live Patching 15 SP6 |
| Patchnames: SUSE-SLE-Module-Live-Patching-15-SP6-2024-2203 SUSE-SLE-Module-Live-Patching-15-SP6-2024-2874 SUSE-SLE-Module-Live-Patching-15-SP6-2024-2973 SUSE-SLE-Module-Live-Patching-15-SP6-2024-3370 |
SUSE Linux Enterprise Micro 5.1 |
| Patchnames: SUSE-SUSE-MicroOS-5.1-2024-2362 |
SUSE Linux Enterprise Micro 5.2 |
| Patchnames: SUSE-SUSE-MicroOS-5.2-2024-2362 |
SUSE Linux Enterprise Micro 5.3 |
| Patchnames: SUSE-SLE-Micro-5.3-2024-2495 |
SUSE Linux Enterprise Micro 5.4 |
| Patchnames: SUSE-SLE-Micro-5.4-2024-2495 |
SUSE Linux Enterprise Micro 5.5 |
| Patchnames: SUSE-SLE-Micro-5.5-2024-2394 SUSE-SLE-Micro-5.5-2024-2939 |
SUSE Linux Enterprise Module for Basesystem 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-2939 |
SUSE Linux Enterprise Module for Basesystem 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-2203 |
SUSE Linux Enterprise Module for Development Tools 15 SP5 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP5-2024-2939 |
SUSE Linux Enterprise Module for Development Tools 15 SP6 |
| Patchnames: SUSE-SLE-Module-Development-Tools-15-SP6-2024-2203 |
SUSE Linux Enterprise Module for Legacy 15 SP5 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP5-2024-2939 |
SUSE Linux Enterprise Module for Legacy 15 SP6 |
| Patchnames: SUSE-SLE-Module-Legacy-15-SP6-2024-2203 |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP5-2024-2372 |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 |
| Patchnames: SUSE-SLE-Module-Public-Cloud-15-SP6-2024-2135 |
SUSE Linux Enterprise Real Time 15 SP5 SUSE Real Time Module 15 SP5 |
| Patchnames: SUSE-SLE-Module-RT-15-SP5-2024-2394 |
SUSE Linux Enterprise Real Time 15 SP6 SUSE Real Time Module 15 SP6 |
| Patchnames: SUSE-SLE-Module-RT-15-SP6-2024-2973 |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE |
| Patchnames: SUSE-SLE-SERVER-11-SP4-LTSS-EXTREME-CORE-2024-2895 |
SUSE Linux Enterprise Server 12 SP5 SUSE Linux Enterprise Server for SAP Applications 12 SP5 |
| Patchnames: SUSE-SLE-SDK-12-SP5-2024-2561 SUSE-SLE-SERVER-12-SP5-2024-2360 SUSE-SLE-SERVER-12-SP5-2024-2561 SUSE-SLE-WE-12-SP5-2024-2561 |
SUSE Linux Enterprise Server 15 SP2-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP2-LTSS-2024-2365 |
SUSE Linux Enterprise Server 15 SP3-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP3-LTSS-2024-2362 |
SUSE Linux Enterprise Server 15 SP4-LTSS |
| Patchnames: SUSE-SLE-Product-SLES-15-SP4-LTSS-2024-2495 |
SUSE Linux Enterprise Server 15 SP5 SUSE Linux Enterprise Server for SAP Applications 15 SP5 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP5-2024-2939 SUSE-SLE-Module-Development-Tools-15-SP5-2024-2939 SUSE-SLE-Module-Legacy-15-SP5-2024-2939 SUSE-SLE-Module-Public-Cloud-15-SP5-2024-2372 SUSE-SLE-Product-WE-15-SP5-2024-2939 |
SUSE Linux Enterprise Server 15 SP6 SUSE Linux Enterprise Server for SAP Applications 15 SP6 |
| Patchnames: SUSE-SLE-Module-Basesystem-15-SP6-2024-2203 SUSE-SLE-Module-Development-Tools-15-SP6-2024-2203 SUSE-SLE-Module-Legacy-15-SP6-2024-2203 SUSE-SLE-Module-Public-Cloud-15-SP6-2024-2135 SUSE-SLE-Product-WE-15-SP6-2024-2203 |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP2-2024-2365 |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP3-2024-2362 |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 |
| Patchnames: SUSE-SLE-Product-SLES_SAP-15-SP4-2024-2495 |
SUSE Linux Enterprise Software Development Kit 12 SP5 |
| Patchnames: SUSE-SLE-SDK-12-SP5-2024-2561 |
SUSE Linux Enterprise Workstation Extension 12 SP5 |
| Patchnames: SUSE-SLE-WE-12-SP5-2024-2561 |
SUSE Linux Enterprise Workstation Extension 15 SP5 |
| Patchnames: SUSE-SLE-Product-WE-15-SP5-2024-2939 |
SUSE Linux Enterprise Workstation Extension 15 SP6 |
| Patchnames: SUSE-SLE-Product-WE-15-SP6-2024-2203 |
SUSE Manager Proxy 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Proxy-4.3-2024-2495 |
SUSE Manager Retail Branch Server 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Retail-Branch-Server-4.3-2024-2495 |
SUSE Manager Server 4.3 |
| Patchnames: SUSE-SLE-Product-SUSE-Manager-Server-4.3-2024-2495 |
openSUSE Leap 15.5 |
| Patchnames: openSUSE-SLE-15.5-2024-2372 openSUSE-SLE-15.5-2024-2394 openSUSE-SLE-15.5-2024-2939 |
openSUSE Leap 15.6 |
| Patchnames: openSUSE-SLE-15.6-2024-2135 openSUSE-SLE-15.6-2024-2203 openSUSE-SLE-15.6-2024-2973 |
openSUSE Leap Micro 5.5 |
| Patchnames: openSUSE-Leap-Micro-5.5-2024-2394 openSUSE-Leap-Micro-5.5-2024-2939 |
First public cloud image revisions this CVE is fixed in:
- alibaba/sles-15-sp3-chost-byos-v20240912
- alibaba/sles-15-sp4-chost-byos-v20240912
- amazon/suse-manager-proxy-4-3-byos-v20240808-hvm-ssd-x86_64
- amazon/suse-manager-server-4-3-byos-v20240808-hvm-ssd-x86_64
- amazon/suse-manager-server-4-3-v20240808-hvm-ssd-x86_64-llc
- amazon/suse-manager-server-4-3-v20240808-hvm-ssd-x86_64-ltd
- amazon/suse-sle-hpc-15-sp3-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp3-byos-v20240819-hvm-ssd-x86_64
- amazon/suse-sle-hpc-15-sp4-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-1-byos-v20240807-hvm-ssd-arm64
- amazon/suse-sle-micro-5-1-byos-v20240807-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-2-byos-v20240807-hvm-ssd-arm64
- amazon/suse-sle-micro-5-2-byos-v20240807-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-3-byos-v20240716-hvm-ssd-arm64
- amazon/suse-sle-micro-5-4-byos-v20240727-hvm-ssd-arm64
- amazon/suse-sle-micro-5-4-byos-v20240727-hvm-ssd-x86_64
- amazon/suse-sle-micro-5-4-v20240716-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-5-4-v20240716-hvm-ssd-x86_64-ltd
- amazon/suse-sle-micro-6-0-byos-v20240912-hvm-ssd-arm64
- amazon/suse-sle-micro-6-0-byos-v20240913-hvm-ssd-x86_64
- amazon/suse-sle-micro-6-0-v20240913-hvm-ssd-arm64-llc
- amazon/suse-sle-micro-6-0-v20240922-hvm-ssd-arm64-ltd
- amazon/suse-sle-micro-6-0-v20240922-hvm-ssd-x86_64-llc
- amazon/suse-sle-micro-6-0-v20240922-hvm-ssd-x86_64-ltd
- amazon/suse-sles-15-sp3-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-15-sp3-byos-v20240819-hvm-ssd-arm64
- amazon/suse-sles-15-sp3-chost-byos-v20240807-hvm-ssd-arm64
- amazon/suse-sles-15-sp3-chost-byos-v20240807-hvm-ssd-x86_64
- amazon/suse-sles-15-sp3-chost-byos-v20240912-hvm-ssd-x86_64
- amazon/suse-sles-15-sp3-sapcal-v20240819-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-byos-v20240809-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-chost-byos-v20240809-hvm-ssd-arm64
- amazon/suse-sles-15-sp4-chost-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-hardened-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-15-sp4-sapcal-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-sap-12-sp5-byos-v20240812-hvm-ssd-x86_64
- amazon/suse-sles-sap-12-sp5-v20240801-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp3-byos-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp3-v20240809-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-byos-v20240808-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-hardened-byos-v20240808-hvm-ssd-x86_64
- amazon/suse-sles-sap-15-sp4-v20240809-hvm-ssd-x86_64
- google/sle-hpc-15-sp3-byos-v20240809-x86-64
- google/sle-hpc-15-sp4-byos-v20240809-x86-64
- google/sle-micro-5-1-byos-v20240807-x86-64
- google/sle-micro-5-2-byos-v20240807-x86-64
- google/sle-micro-5-3-byos-v20240716-arm64
- google/sle-micro-5-3-byos-v20240716-x86-64
- google/sle-micro-5-4-byos-v20240727-arm64
- google/sle-micro-5-4-byos-v20240727-x86-64
- google/sle-micro-6-0-byos-v20240912-x86-64
- google/sle-micro-6-0-byos-v20240913-arm64
- google/sles-12-sp5-byos-v20240727-x86-64
- google/sles-12-sp5-sap-byos-v20240727-x86-64
- google/sles-12-sp5-sap-v20240727-x86-64
- google/sles-15-sp3-byos-v20240809-x86-64
- google/sles-15-sp3-chost-byos-v20240807-x86-64
- google/sles-15-sp3-sap-byos-v20240809-x86-64
- google/sles-15-sp3-sap-v20240808-x86-64
- google/sles-15-sp3-sapcal-v20240809-x86-64
- google/sles-15-sp4-byos-v20240808-arm64
- google/sles-15-sp4-byos-v20240808-x86-64
- google/sles-15-sp4-chost-byos-v20240809-arm64
- google/sles-15-sp4-chost-byos-v20240809-x86-64
- google/sles-15-sp4-hardened-byos-v20240808-x86-64
- google/sles-15-sp4-sap-byos-v20240808-x86-64
- google/sles-15-sp4-sap-v20240808-x86-64
- google/sles-15-sp4-sapcal-v20240808-x86-64
- google/sles-sap-15-sp4-hardened-byos-v20240808-x86-64
- google/sles-sap-15-sp4-hardened-v20240808-x86-64
- google/suse-manager-proxy-4-3-byos-v20240807-x86-64
- google/suse-manager-server-4-3-byos-v20240807-x86-64
- microsoft/suse-manager-proxy-4-3-byos-v20240807-x86_64
- microsoft/suse-manager-server-4-3-byos-v20240826-x86_64
- microsoft/suse-manager-server-4-3-v20240826-x86_64-llc
- microsoft/suse-manager-server-4-3-v20240826-x86_64-ltd
- microsoft/suse-sle-hpc-12-sp5-byos-v20240730-x86_64
- microsoft/suse-sle-hpc-12-sp5-v20240730-x86_64
- microsoft/suse-sle-hpc-15-sp3-byos-v20240809-x86_64
- microsoft/suse-sle-hpc-15-sp4-byos-v20240809-x86_64
- microsoft/suse-sle-hpc-15-sp5-v20240809-x86_64
- microsoft/suse-sle-micro-5-1-byos-v20240807-x86_64
- microsoft/suse-sle-micro-5-2-byos-v20240807-x86_64
- microsoft/suse-sle-micro-5-4-byos-v20240716-arm64
- microsoft/suse-sle-micro-5-4-byos-v20240716-x86_64
- microsoft/suse-sle-micro-5-5-byos-v20241114-arm64
- microsoft/suse-sle-micro-5-5-v20241114-x86_64-llc
- microsoft/suse-sle-micro-5-5-v20241114-x86_64-ltd
- microsoft/suse-sle-micro-6-0-byos-v20240903-arm64
- microsoft/suse-sle-micro-6-0-byos-v20240903-x86_64
- microsoft/suse-sle-micro-6-0-v20240910-arm64-llc
- microsoft/suse-sle-micro-6-0-v20240910-arm64-ltd
- microsoft/suse-sle-micro-6-0-v20240910-x86_64-llc
- microsoft/suse-sle-micro-6-0-v20240910-x86_64-ltd
- microsoft/suse-sles-15-sp3-byos-v20240809-x86_64
- microsoft/suse-sles-15-sp3-chost-byos-v20240807-x86_64
- microsoft/suse-sles-15-sp3-sapcal-v20240809-x86_64
- microsoft/suse-sles-15-sp4-byos-v20240809-arm64
- microsoft/suse-sles-15-sp4-byos-v20240809-x86_64
- microsoft/suse-sles-15-sp4-chost-byos-v20240809-arm64
- microsoft/suse-sles-15-sp4-chost-byos-v20240809-x86_64
- microsoft/suse-sles-15-sp4-hardened-byos-v20240809-x86_64
- microsoft/suse-sles-15-sp4-sapcal-v20240809-x86_64
- microsoft/suse-sles-15-sp5-basic-v20240809-x86_64
- microsoft/suse-sles-15-sp5-v20240809-x86_64
- microsoft/suse-sles-sap-12-sp5-v20240730-x86_64
- microsoft/suse-sles-sap-15-sp3-byos-v20240809-x86_64
- microsoft/suse-sles-sap-15-sp3-byos-v20240913-x86_64
- microsoft/suse-sles-sap-15-sp3-byos-v20240915-x86_64
- microsoft/suse-sles-sap-15-sp3-byos-v20240916-x86_64
- microsoft/suse-sles-sap-15-sp3-v20240809-x86_64
- microsoft/suse-sles-sap-15-sp3-v20240913-x86_64
- microsoft/suse-sles-sap-15-sp3-v20240915-x86_64
- microsoft/suse-sles-sap-15-sp3-v20240916-x86_64
- microsoft/suse-sles-sap-15-sp4-byos-v20240809-x86_64
- microsoft/suse-sles-sap-15-sp4-v20240809-x86_64
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 SP5 | kernel-64kb | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Desktop 15 SP5 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Desktop 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise High Availability Extension 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP5 | kernel-zfcpdump | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise High Performance Computing 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_0 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_1 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_10 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_11 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_13 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_14 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_15 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_16 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_17 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_3 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_5 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_6 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_7 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_8 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5-RT_Update_9 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_0 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_1 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_10 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_11 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_12 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_13 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_14 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_15 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_17 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_2 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_3 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_5 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_6 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_7 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_8 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-livepatch-SLE15-SP5_Update_9 | Released |
SUSE Linux Enterprise Live Patching 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6-RT_Update_1 | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_0 | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-livepatch-SLE15-SP6_Update_1 | Released |
SUSE Linux Enterprise Live Patching 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-source | Released |
SUSE Linux Enterprise Micro 5.1 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-source | Released |
SUSE Linux Enterprise Micro 5.2 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro 5.3 | kernel-default | Released |
SUSE Linux Enterprise Micro 5.3 | kernel-default-base | Released |
SUSE Linux Enterprise Micro 5.3 | kernel-rt | Released |
SUSE Linux Enterprise Micro 5.3 | kernel-source | 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 6.0 | kernel-default | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-source | Released |
SUSE Linux Enterprise Micro 6.0 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro for Rancher 5.2 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro for Rancher 5.3 | kernel-source-rt | Released |
SUSE Linux Enterprise Micro for Rancher 5.4 | kernel-source-rt | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-64kb | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP5 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Module for Basesystem 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Module for Development Tools 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Module for Legacy 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Module for Legacy 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise Module for Public Cloud 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-rt | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-rt_debug | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-source-rt | Released |
SUSE Linux Enterprise Real Time 15 SP5 | kernel-syms-rt | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-rt | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-rt_debug | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-source-rt | Released |
SUSE Linux Enterprise Real Time 15 SP6 | kernel-syms-rt | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-64kb | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server 15 SP5 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-azure | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-source-azure | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-64kb | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP5 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-64kb | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-azure | 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 | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP6 | kernel-zfcpdump | Released |
SUSE Linux Enterprise Workstation Extension 15 SP5 | kernel-default | Released |
SUSE Linux Enterprise Workstation Extension 15 SP6 | kernel-default | Released |
SUSE Manager Proxy 4.3 | kernel-default | Released |
SUSE Manager Proxy 4.3 | kernel-default-base | Released |
SUSE Manager Proxy 4.3 | kernel-source | Released |
SUSE Manager Proxy 4.3 | kernel-syms | Released |
SUSE Manager Retail Branch Server 4.3 | kernel-default | Released |
SUSE Manager Retail Branch Server 4.3 | kernel-default-base | Released |
SUSE Manager Retail Branch Server 4.3 | kernel-source | Released |
SUSE Manager Server 4.3 | kernel-default | Released |
SUSE Manager Server 4.3 | kernel-default-base | Released |
SUSE Manager Server 4.3 | kernel-source | Released |
SUSE Manager Server 4.3 | kernel-syms | Released |
SUSE Manager Server 4.3 | kernel-zfcpdump | Released |
SUSE Real Time Module 15 SP5 | kernel-rt | Released |
SUSE Real Time Module 15 SP5 | kernel-rt_debug | Released |
SUSE Real Time Module 15 SP5 | kernel-source-rt | Released |
SUSE Real Time Module 15 SP5 | kernel-syms-rt | Released |
SUSE Real Time Module 15 SP6 | kernel-rt | Released |
SUSE Real Time Module 15 SP6 | kernel-rt_debug | Released |
SUSE Real Time Module 15 SP6 | kernel-source-rt | Released |
SUSE Real Time Module 15 SP6 | kernel-syms-rt | Released |
openSUSE Leap 15.5 | kernel-azure | Released |
openSUSE Leap 15.5 | kernel-default | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_0 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_1 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_10 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_11 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_13 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_14 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_15 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_16 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_3 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_5 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_6 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_7 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_8 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5-RT_Update_9 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_0 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_1 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_10 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_11 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_12 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_13 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_14 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_15 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_2 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_3 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_5 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_6 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_7 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_8 | Released |
openSUSE Leap 15.5 | kernel-livepatch-SLE15-SP5_Update_9 | Released |
openSUSE Leap 15.5 | kernel-rt | Released |
openSUSE Leap 15.5 | kernel-rt_debug | Released |
openSUSE Leap 15.5 | kernel-source | Released |
openSUSE Leap 15.5 | kernel-source-azure | Released |
openSUSE Leap 15.5 | kernel-source-rt | Released |
openSUSE Leap 15.5 | kernel-syms-azure | Released |
openSUSE Leap 15.5 | kernel-syms-rt | Released |
openSUSE Leap 15.6 | kernel-azure | Released |
openSUSE Leap 15.6 | kernel-default | Released |
openSUSE Leap 15.6 | kernel-livepatch-SLE15-SP6_Update_0 | Released |
openSUSE Leap 15.6 | kernel-rt | Released |
openSUSE Leap 15.6 | kernel-rt_debug | Released |
openSUSE Leap 15.6 | kernel-source | Released |
openSUSE Leap 15.6 | kernel-source-azure | Released |
openSUSE Leap 15.6 | kernel-source-rt | Released |
openSUSE Leap 15.6 | kernel-syms-azure | Released |
openSUSE Leap 15.6 | kernel-syms-rt | Released |
openSUSE Leap Micro 5.5 | kernel-rt | Released |
Products under Long Term Service Pack support and receiving important and critical security fixes. | ||
SUSE Linux Enterprise Desktop 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP4 LTSS | kernel-default | Released |
SUSE Linux Enterprise Desktop 15 SP4 LTSS | kernel-source | Released |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise High Availability Extension 15 SP2 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 15 SP3 | kernel-default | Released |
SUSE Linux Enterprise High Availability Extension 15 SP4 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 12 SP5 | kernel-source-azure | Released |
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-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-preempt | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-64kb | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-default | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-docs | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-preempt | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-source | Released |
SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS | kernel-syms | Released |
SUSE Linux Enterprise High Performance Computing 15 SP4 | kernel-source | 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 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 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_44 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_45 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_47 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_48 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_49 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_50 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_51 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_52 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_53 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_54 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_56 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_57 | Released |
SUSE Linux Enterprise Live Patching 12 SP5 | kgraft-patch-SLE12-SP5_Update_58 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_37 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_38 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_39 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_40 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_41 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_42 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_43 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_44 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_45 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_46 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_47 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_48 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_49 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-livepatch-SLE15-SP2_Update_50 | Released |
SUSE Linux Enterprise Live Patching 15 SP2 | kernel-source | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_33 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_34 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_35 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_36 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_37 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_38 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_39 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_40 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_41 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_42 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_43 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_44 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_45 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-livepatch-SLE15-SP3_Update_46 | Released |
SUSE Linux Enterprise Live Patching 15 SP3 | kernel-source | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-default | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_13 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_14 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_15 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_16 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_18 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_19 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_20 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_21 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_22 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_23 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_24 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_25 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_26 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_27 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-livepatch-SLE15-SP4_Update_28 | Released |
SUSE Linux Enterprise Live Patching 15 SP4 | kernel-source | Released |
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 Basesystem 15 SP4 | 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 Development Tools 15 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-default | Released |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-ec2 | Released |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-source | Released |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-syms | Released |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-trace | Released |
SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE | kernel-xen | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server 12 SP5 | kernel-syms-azure | Released |
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-source-azure | Released |
SUSE Linux Enterprise Server 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-preempt | Released |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP2-LTSS | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-64kb | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-default-base | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-docs | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-obs-build | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-preempt | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-source | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-syms | Released |
SUSE Linux Enterprise Server 15 SP3-LTSS | kernel-zfcpdump | Released |
SUSE Linux Enterprise Server 15 SP4 | kernel-source | 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 LTSS Extended Security 12 SP5 | kernel-source | Affected |
SUSE Linux Enterprise Server LTSS Extended Security 12 SP5 | kernel-source-azure | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-source-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 12 SP5 | kernel-syms-azure | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-preempt | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP2 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-preempt | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP3 | kernel-syms | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-default | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-default-base | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-docs | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-obs-build | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-source | Released |
SUSE Linux Enterprise Server for SAP Applications 15 SP4 | kernel-syms | Released |
Products past their end of life and not receiving proactive updates anymore. | ||
HPE Helion OpenStack 8 | kernel-source | Affected |
SUSE CaaS Platform 4.0 | kernel-source | Affected |
SUSE CaaS Platform Toolchain 3 | kernel-source | Affected |
SUSE Enterprise Storage 6 | kernel-source | Affected |
SUSE Enterprise Storage 7 | kernel-source | Affected |
SUSE Enterprise Storage 7.1 | kernel-64kb | Released |
SUSE Enterprise Storage 7.1 | kernel-default | Released |
SUSE Enterprise Storage 7.1 | kernel-default-base | Released |
SUSE Enterprise Storage 7.1 | kernel-docs | Released |
SUSE Enterprise Storage 7.1 | kernel-obs-build | Released |
SUSE Enterprise Storage 7.1 | kernel-preempt | Released |
SUSE Enterprise Storage 7.1 | kernel-source | Released |
SUSE Enterprise Storage 7.1 | kernel-syms | Released |
SUSE Linux Enterprise Desktop 11 SP3 | kernel-source | Unsupported |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-default | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-docs | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-pae | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-syms | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-trace | Affected |
SUSE Linux Enterprise Desktop 11 SP4 | kernel-xen | Affected |
SUSE Linux Enterprise Desktop 12 SP1 | kernel-source | Unsupported |
SUSE Linux Enterprise Desktop 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 12 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Desktop 15 SP3 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15 SP1-LTSS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise High Performance Computing 15-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Micro 5.0 | kernel-default | Affected |
SUSE Linux Enterprise Micro 5.0 | kernel-rt | Unsupported |
SUSE Linux Enterprise Module for Basesystem 15 | kernel-source | Affected |
SUSE Linux Enterprise Module for Basesystem 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 | kernel-source | Affected |
SUSE Linux Enterprise Module for Development Tools 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Point of Sale 11 SP3 | kernel-source | Unsupported |
SUSE Linux Enterprise Point of Sale 12 SP2-CLIENT | kernel-source | Affected |
SUSE Linux Enterprise Real Time 12 SP5 | kernel-source-rt | Released |
SUSE Linux Enterprise Real Time 15 SP1 | kernel-source-rt | Unsupported |
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 Server 11 SP3 | kernel-source | Unsupported |
SUSE Linux Enterprise Server 11 SP3-LTSS | kernel-source | Unsupported |
SUSE Linux Enterprise Server 11 SP4 | kernel-bigmem | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-default | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-docs | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-ec2 | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-pae | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-ppc64 | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-syms | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-trace | Affected |
SUSE Linux Enterprise Server 11 SP4 | kernel-xen | Affected |
SUSE Linux Enterprise Server 11 SP4 LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 11 SP4 LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-bigmem | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-ec2 | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-pae | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-ppc64 | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-syms | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-trace | Affected |
SUSE Linux Enterprise Server 11 SP4-LTSS | kernel-xen | Affected |
SUSE Linux Enterprise Server 12 SP1 | kernel-source | Unsupported |
SUSE Linux Enterprise Server 12 SP1-LTSS | kernel-source | Unsupported |
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 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP3-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP3-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP3-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4-ESPOS | kernel-source | Affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 12 SP4-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15 SP1-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP2-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15 SP3-BCL | kernel-source | Affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-default | Affected |
SUSE Linux Enterprise Server 15-LTSS | kernel-source | Affected |
SUSE Linux Enterprise Server for Raspberry Pi 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 11 SP4 | kernel-docs | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP1 | kernel-source | Unsupported |
SUSE Linux Enterprise Server for SAP Applications 12 SP2 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP3 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-default | Affected |
SUSE Linux Enterprise Server for SAP Applications 12 SP4 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 | kernel-source | Affected |
SUSE Linux Enterprise Server for SAP Applications 15 SP1 | kernel-source | Affected |
SUSE Linux Enterprise Software Development Kit 11 SP4 | kernel-docs | Affected |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-default | Released |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-docs | Released |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-obs-build | Released |
SUSE Linux Enterprise Software Development Kit 12 SP5 | kernel-source | Released |
SUSE Linux Enterprise Workstation Extension 12 SP5 | kernel-default | 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 8 | kernel-source | Affected |
SUSE OpenStack Cloud 9 | kernel-default | Affected |
SUSE OpenStack Cloud 9 | kernel-source | Affected |
SUSE OpenStack Cloud Crowbar 8 | kernel-source | Affected |
SUSE OpenStack Cloud Crowbar 9 | kernel-default | Affected |
SUSE OpenStack Cloud Crowbar 9 | kernel-source | Affected |
SUSE Real Time Module 15 SP1 | kernel-source-rt | Unsupported |
SUSE Real Time Module 15 SP3 | kernel-source-rt | Affected |
SUSE Real Time Module 15 SP4 | kernel-source-rt | Affected |
openSUSE Leap 15.3 | kernel-default | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_33 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_34 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_35 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_36 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_37 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_38 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_39 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_40 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_41 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_42 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_43 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_44 | Released |
openSUSE Leap 15.3 | kernel-livepatch-SLE15-SP3_Update_45 | 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-livepatch-SLE15-SP4_Update_13 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_14 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_15 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_16 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_18 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_19 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_20 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_21 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_22 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_23 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_24 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_25 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_26 | Released |
openSUSE Leap 15.4 | kernel-livepatch-SLE15-SP4_Update_27 | Released |
openSUSE Leap 15.4 | kernel-source | Released |
openSUSE Leap 15.4 | kernel-source-azure | Unsupported |
openSUSE Leap 15.4 | kernel-source-rt | Affected |
Container Status | ||
suse/sle-micro/rt-5.5 | kernel-rt | Released |
SUSE Timeline for this CVE
CVE page created: Thu Apr 25 02:00:13 2024CVE page last modified: Wed Nov 20 11:54:57 2024