CVE & CISA-KEV Catalog

CVE-2023-53240

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: xsk: check IFF_UP earlier in Tx path Xsk Tx can be triggered via either sendmsg() or poll() syscalls. These two paths share a call to common function xsk_xmit() which has two sanity checks within. A pseudo code example to show the two paths: __xsk_sendmsg() : xsk_poll(): if (unlikely(!xsk_is_bound(xs))) if (unlikely(!xsk_is_bound(xs))) return -ENXIO; return mask; if (unlikely(need_wait)) (...) return -EOPNOTSUPP; xsk_xmit() mark napi id (...) xsk_xmit() xsk_xmit(): if (unlikely(!(xs->dev->flags & IFF_UP))) return -ENETDOWN; if (unlikely(!xs->tx)) return -ENOBUFS; As it can be observed above, in sendmsg() napi id can be marked on interface that was not brought up and this causes a NULL ptr dereference: [31757.505631] BUG: kernel NULL pointer dereference, address: 0000000000000018 [31757.512710] #PF: supervisor read access in kernel mode [31757.517936] #PF: error_code(0x0000) - not-present page [31757.523149] PGD 0 P4D 0 [31757.525726] Oops: 0000 [#1] PREEMPT SMP NOPTI [31757.530154] CPU: 26 PID: 95641 Comm: xdpsock Not tainted 6.2.0-rc5+ #40 [31757.536871] Hardware name: Intel Corporation S2600WFT/S2600WFT, BIOS SE5C620.86B.02.01.0008.031920191559 03/19/2019 [31757.547457] RIP: 0010:xsk_sendmsg+0xde/0x180 [31757.551799] Code: 00 75 a2 48 8b 00 a8 04 75 9b 84 d2 74 69 8b 85 14 01 00 00 85 c0 75 1b 48 8b 85 28 03 00 00 48 8b 80 98 00 00 00 48 8b 40 20 <8b> 40 18 89 85 14 01 00 00 8b bd 14 01 00 00 81 ff 00 01 00 00 0f [31757.570840] RSP: 0018:ffffc90034f27dc0 EFLAGS: 00010246 [31757.576143] RAX: 0000000000000000 RBX: ffffc90034f27e18 RCX: 0000000000000000 [31757.583389] RDX: 0000000000000001 RSI: ffffc90034f27e18 RDI: ffff88984cf3c100 [31757.590631] RBP: ffff88984714a800 R08: ffff88984714a800 R09: 0000000000000000 [31757.597877] R10: 0000000000000001 R11: 0000000000000000 R12: 00000000fffffffa [31757.605123] R13: 0000000000000000 R14: 0000000000000003 R15: 0000000000000000 [31757.612364] FS: 00007fb4c5931180(0000) GS:ffff88afdfa00000(0000) knlGS:0000000000000000 [31757.620571] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [31757.626406] CR2: 0000000000000018 CR3: 000000184b41c003 CR4: 00000000007706e0 [31757.633648] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [31757.640894] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [31757.648139] PKRU: 55555554 [31757.650894] Call Trace: [31757.653385] <TASK> [31757.655524] sock_sendmsg+0x8f/0xa0 [31757.659077] ? sockfd_lookup_light+0x12/0x70 [31757.663416] __sys_sendto+0xfc/0x170 [31757.667051] ? do_sched_setscheduler+0xdb/0x1b0 [31757.671658] __x64_sys_sendto+0x20/0x30 [31757.675557] do_syscall_64+0x38/0x90 [31757.679197] entry_SYSCALL_64_after_hwframe+0x72/0xdc [31757.687969] Code: 8e f6 ff 44 8b 4c 24 2c 4c 8b 44 24 20 41 89 c4 44 8b 54 24 28 48 8b 54 24 18 b8 2c 00 00 00 48 8b 74 24 10 8b 7c 24 08 0f 05 <48> 3d 00 f0 ff ff 77 3a 44 89 e7 48 89 44 24 08 e8 b5 8e f6 ff 48 [31757.707007] RSP: 002b:00007ffd49c73c70 EFLAGS: 00000293 ORIG_RAX: 000000000000002c [31757.714694] RAX: ffffffffffffffda RBX: 000055a996565380 RCX: 00007fb4c5727c16 [31757.721939] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000003 [31757.729184] RBP: 0000000000000040 R08: 0000000000000000 R09: 0000000000000000 [31757.736429] R10: 0000000000000040 R11: 0000000000000293 R12: 0000000000000000 [31757.743673] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000 [31757.754940] </TASK> To fix this, let's make xsk_xmit a function that will be responsible for generic Tx, where RCU is handled accordingly and pull out sanity checks and xs->zc handling. Populate sanity checks to __xsk_sendmsg() and xsk_poll().

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.20-1CVE-2023-53240
Fixed in:6.1.20-1CVE-2023-53240
Fixed in:6.1.20-1CVE-2023-53240
bpftoolRed Hat / RHEL
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
bpftoolRocky
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
bpftool-debuginfoRocky
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:7.0.0-284.154.1.el9_2RHSA-2026:1441
kernelRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernelRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64kRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debugRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-develRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-modulesRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-abi-stablelistsRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debugRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-develRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-modulesRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-s390xRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-develRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-devel-matchedRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-docRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-docRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-modulesRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-rtRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rtRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-coreRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debugRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-coreRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-develRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-kvmRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-modulesRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-develRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-kvmRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-modulesRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-rt-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.rt14.439.el9_2RHSA-2026:1443
kernel-toolsRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-toolsRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-tools-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-tools-libsRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-tools-libsRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-uki-virtRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdumpRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-develRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-modulesRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-modules-extraRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
perfRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
perfRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
perf-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
python3-perfRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
python3-perfRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
python3-perf-debuginfoRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
rtlaRocky
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441
Fixed in:0:5.14.0-284.154.1.el9_2RHSA-2026:1441

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-53240
CVE-2023-53240 severity badge

Markdown

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

HTML

<a href="https://tridentstack.com/cve/CVE-2023-53240"><img src="https://tridentstack.com/cve/badge/CVE-2023-53240.svg" alt="CVE-2023-53240"></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 2026-01-14.