CVE & CISA-KEV Catalog

CVE-2022-48760

HIGH
7.1
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: USB: core: Fix hang in usb_kill_urb by adding memory barriers The syzbot fuzzer has identified a bug in which processes hang waiting for usb_kill_urb() to return. It turns out the issue is not unlinking the URB; that works just fine. Rather, the problem arises when the wakeup notification that the URB has completed is not received. The reason is memory-access ordering on SMP systems. In outline form, usb_kill_urb() and __usb_hcd_giveback_urb() operating concurrently on different CPUs perform the following actions: CPU 0 CPU 1 ---------------------------- --------------------------------- usb_kill_urb(): __usb_hcd_giveback_urb(): ... ... atomic_inc(&urb->reject); atomic_dec(&urb->use_count); ... ... wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0); if (atomic_read(&urb->reject)) wake_up(&usb_kill_urb_queue); Confining your attention to urb->reject and urb->use_count, you can see that the overall pattern of accesses on CPU 0 is: write urb->reject, then read urb->use_count; whereas the overall pattern of accesses on CPU 1 is: write urb->use_count, then read urb->reject. This pattern is referred to in memory-model circles as SB (for "Store Buffering"), and it is well known that without suitable enforcement of the desired order of accesses -- in the form of memory barriers -- it is entirely possible for one or both CPUs to execute their reads ahead of their writes. The end result will be that sometimes CPU 0 sees the old un-decremented value of urb->use_count while CPU 1 sees the old un-incremented value of urb->reject. Consequently CPU 0 ends up on the wait queue and never gets woken up, leading to the observed hang in usb_kill_urb(). The same pattern of accesses occurs in usb_poison_urb() and the failure pathway of usb_hcd_submit_urb(). The problem is fixed by adding suitable memory barriers. To provide proper memory-access ordering in the SB pattern, a full barrier is required on both CPUs. The atomic_inc() and atomic_dec() accesses themselves don't provide any memory ordering, but since they are present, we can use the optimized smp_mb__after_atomic() memory barrier in the various routines to obtain the desired effect. This patch adds the necessary memory barriers.

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.103-1CVE-2022-48760
Fixed in:5.16.7-1CVE-2022-48760
Fixed in:5.16.7-1CVE-2022-48760
Fixed in:5.16.7-1CVE-2022-48760
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
bpftoolRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernelRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debugRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-docRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-rtRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-toolsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-tools-libsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
perfRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
perf-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
python3-perfRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000

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

ConfidentialityHigh
IntegrityNone
AvailabilityHigh

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

Exploit Intelligence

0.19%probability of exploitation in 30 days
8thpercentile

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

References

Related Vulnerabilities

Other CWE-667 vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2019-10072High7.573%-Fix
CVE-2002-1850High7.517%-Fix
CVE-2009-2699High7.514%-Fix
CVE-2004-0174High7.512%--
CVE-2009-4272High7.511%--
CVE-2020-24606High8.65.2%-Fix
Embed a live status badge for CVE-2022-48760
CVE-2022-48760 severity badge

Markdown

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

HTML

<a href="https://tridentstack.com/cve/CVE-2022-48760"><img src="https://tridentstack.com/cve/badge/CVE-2022-48760.svg" alt="CVE-2022-48760"></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-09-17.