CVE & CISA-KEV Catalog

CVE-2023-53198

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: raw: Fix NULL deref in raw_get_next(). Dae R. Jeong reported a NULL deref in raw_get_next() [0]. It seems that the repro was running these sequences in parallel so that one thread was iterating on a socket that was being freed in another netns. unshare(0x40060200) r0 = syz_open_procfs(0x0, &(0x7f0000002080)='net/raw\x00') socket$inet_icmp_raw(0x2, 0x3, 0x1) pread64(r0, &(0x7f0000000000)=""/10, 0xa, 0x10000000007f) After commit 0daf07e52709 ("raw: convert raw sockets to RCU"), we use RCU and hlist_nulls_for_each_entry() to iterate over SOCK_RAW sockets. However, we should use spinlock for slow paths to avoid the NULL deref. Also, SOCK_RAW does not use SLAB_TYPESAFE_BY_RCU, and the slab object is not reused during iteration in the grace period. In fact, the lockless readers do not check the nulls marker with get_nulls_value(). So, SOCK_RAW should use hlist instead of hlist_nulls. Instead of adding an unnecessary barrier by sk_nulls_for_each_rcu(), let's convert hlist_nulls to hlist and use sk_for_each_rcu() for fast paths and sk_for_each() and spinlock for /proc/net/raw. [0]: general protection fault, probably for non-canonical address 0xdffffc0000000005: 0000 [#1] PREEMPT SMP KASAN KASAN: null-ptr-deref in range [0x0000000000000028-0x000000000000002f] CPU: 2 PID: 20952 Comm: syz-executor.0 Not tainted 6.2.0-g048ec869bafd-dirty #7 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014 RIP: 0010:read_pnet include/net/net_namespace.h:383 [inline] RIP: 0010:sock_net include/net/sock.h:649 [inline] RIP: 0010:raw_get_next net/ipv4/raw.c:974 [inline] RIP: 0010:raw_get_idx net/ipv4/raw.c:986 [inline] RIP: 0010:raw_seq_start+0x431/0x800 net/ipv4/raw.c:995 Code: ef e8 33 3d 94 f7 49 8b 6d 00 4c 89 ef e8 b7 65 5f f7 49 89 ed 49 83 c5 98 0f 84 9a 00 00 00 48 83 c5 c8 48 89 e8 48 c1 e8 03 <42> 80 3c 30 00 74 08 48 89 ef e8 00 3d 94 f7 4c 8b 7d 00 48 89 ef RSP: 0018:ffffc9001154f9b0 EFLAGS: 00010206 RAX: 0000000000000005 RBX: 1ffff1100302c8fd RCX: 0000000000000000 RDX: 0000000000000028 RSI: ffffc9001154f988 RDI: ffffc9000f77a338 RBP: 0000000000000029 R08: ffffffff8a50ffb4 R09: fffffbfff24b6bd9 R10: fffffbfff24b6bd9 R11: 0000000000000000 R12: ffff88801db73b78 R13: fffffffffffffff9 R14: dffffc0000000000 R15: 0000000000000030 FS: 00007f843ae8e700(0000) GS:ffff888063700000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 000055bb9614b35f CR3: 000000003c672000 CR4: 00000000003506e0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> seq_read_iter+0x4c6/0x10f0 fs/seq_file.c:225 seq_read+0x224/0x320 fs/seq_file.c:162 pde_read fs/proc/inode.c:316 [inline] proc_reg_read+0x23f/0x330 fs/proc/inode.c:328 vfs_read+0x31e/0xd30 fs/read_write.c:468 ksys_pread64 fs/read_write.c:665 [inline] __do_sys_pread64 fs/read_write.c:675 [inline] __se_sys_pread64 fs/read_write.c:672 [inline] __x64_sys_pread64+0x1e9/0x280 fs/read_write.c:672 do_syscall_x64 arch/x86/entry/common.c:51 [inline] do_syscall_64+0x4e/0xa0 arch/x86/entry/common.c:82 entry_SYSCALL_64_after_hwframe+0x63/0xcd RIP: 0033:0x478d29 Code: f7 d8 64 89 02 b8 ff ff ff ff c3 66 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 bc ff ff ff f7 d8 64 89 01 48 RSP: 002b:00007f843ae8dbe8 EFLAGS: 00000246 ORIG_RAX: 0000000000000011 RAX: ffffffffffffffda RBX: 0000000000791408 RCX: 0000000000478d29 RDX: 000000000000000a RSI: 0000000020000000 RDI: 0000000000000003 RBP: 00000000f477909a R08: 0000000000000000 R09: 0000000000000000 R10: 000010000000007f R11: 0000000000000246 R12: 0000000000791740 R13: 0000000000791414 R14: 0000000000791408 R15: 00007ffc2eb48a50 </TASK> Modules linked in: ---[ end trace 0000000000000000 ]--- RIP: 0010 ---truncated---

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.25-1CVE-2023-53198
Fixed in:6.1.25-1CVE-2023-53198
Fixed in:6.1.25-1CVE-2023-53198
bpftoolRocky
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
bpftoolRed Hat / RHEL
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
bpftool-debuginfoRocky
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:7.2.0-362.8.1.el9_3RHSA-2023:6583
kernelRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernelRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64kRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debugRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-abi-stablelistsRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debugRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debugRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-s390xRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-devel-matchedRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-docRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-docRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rtRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rtRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debugRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debugRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-kvmRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debug-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-kvmRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-toolsRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-toolsRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-tools-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-tools-libsRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-tools-libsRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-tools-libs-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-uki-virtRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdumpRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-develRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-modulesRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-modules-extraRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
libperfRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
libperfRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
libperf-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
perfRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
perfRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
perf-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
python3-perfRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
python3-perfRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
python3-perf-debuginfoRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
rtlaRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
rvRed Hat / RHEL
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
rvRocky
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583
Fixed in:0:5.14.0-362.8.1.el9_3RHSA-2023:6583

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityNone
IntegrityNone
AvailabilityHigh

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Exploit Intelligence

0.14%probability of exploitation in 30 days
4thpercentile

Low risk: more likely to be exploited than 4% of all known CVEs.

References

Related Vulnerabilities

Other CWE-476 (NULL Pointer Dereference) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2023-21758High7.592%-Fix
CVE-2023-21547High7.588%-Fix
CVE-2014-3470Medium4.386%-Fix
CVE-2021-44224High8.282%-Fix
CVE-2016-0742High7.582%-Fix
CVE-2009-1386Medium5.080%-Fix
Embed a live status badge for CVE-2023-53198
CVE-2023-53198 severity badge

Markdown

[![CVE-2023-53198](https://tridentstack.com/cve/badge/CVE-2023-53198.svg)](https://tridentstack.com/cve/CVE-2023-53198)

HTML

<a href="https://tridentstack.com/cve/CVE-2023-53198"><img src="https://tridentstack.com/cve/badge/CVE-2023-53198.svg" alt="CVE-2023-53198"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

Start free

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2025-12-02.