BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2024
CVE-2023-52886High confidence

USB: core: Fix race by not overwriting udev->descriptor in hub_port_init()

Linux · Linux

6.4MediumCVSS 3.1
Recommended action
Scheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
Distribution package intelligence

Ubuntu vendor package status

Canonical’s release and source-package findings are shown separately from local repository availability.

1 package state
Repository candidate not checked

A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard archivelinux-raspi-realtimeAffected, no fix publishedCanonical OVAL identifies this running kernel flavour as affected and does not publish a fixed package version in this definition.Not published in this feedCanonical record ↗Source updated 8 Sept 2026
Optional official sources

National CERT insights
?CERT means Computer Emergency Response Team; CSIRT is the closely related term Computer Security Incident Response Team.

Select the national-authority views to include. The exact source language is shown on each matched advisory. Your choice is remembered on this device and encoded in the shareable URL.

Official European source

ENISA European Vulnerability Database

Official EUVD identifiers, advisory evidence and known-exploited context. Missing fields are not treated as evidence of low risk.

1 current
ENISA EUVD identifier

EUVD-2023-59599

No EUVD known-exploited evidence

ENISA has published the identifier mapping but no EUVD description has been stored yet.

EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionScheduled

Medium technical severity with no CISA KEV confirmation; remediate through the normal risk-based patch cycle unless local exposure raises the priority.

Patch available
01

What, why and how

In the Linux kernel, the following vulnerability has been resolved: USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() Syzbot reported an out-of-bounds read in sysfs.c:read_descriptors(): BUG: KASAN: slab-out-of-bounds in read_descriptors+0x263/0x280 drivers/usb/core/sysfs.c:883 Read of size 8 at addr ffff88801e78b8c8 by task udevd/5011 CPU: 0 PID: 5011 Comm: udevd Not tainted 6.4.0-rc6-syzkaller-00195-g40f71e7cd3c6 #0 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 05/27/2023 Call Trace: <TASK> __dump_stack lib/dump_stack.c:88 [inline] dump_stack_lvl+0xd9/0x150 lib/dump_stack.c:106 print_address_description.constprop.0+0x2c/0x3c0 mm/kasan/report.c:351 print_report mm/kasan/report.c:462 [inline] kasan_report+0x11c/0x130 mm/kasan/report.c:572 read_descriptors+0x263/0x280 drivers/usb/core/sysfs.c:883 ... Allocated by task 758: ... __do_kmalloc_node mm/slab_common.c:966 [inline] __kmalloc+0x5e/0x190 mm/slab_common.c:979 kmalloc include/linux/slab.h:563 [inline] kzalloc include/linux/slab.h:680 [inline] usb_get_configuration+0x1f7/0x5170 drivers/usb/core/config.c:887 usb_enumerate_device drivers/usb/core/hub.c:2407 [inline] usb_new_device+0x12b0/0x19d0 drivers/usb/core/hub.c:2545 As analyzed by Khazhy Kumykov, the cause of this bug is a race between read_descriptors() and hub_port_init(): The first routine uses a field in udev->descriptor, not expecting it to change, while the second overwrites it. Prior to commit 45bf39f8df7f ("USB: core: Don't hold device lock while reading the "descriptors" sysfs file") this race couldn't occur, because the routines were mutually exclusive thanks to the device locking. Removing that locking from read_descriptors() exposed it to the race. The best way to fix the bug is to keep hub_port_init() from changing udev->descriptor once udev has been initialized and registered. Drivers expect the descriptors stored in the kernel to be immutable; we should not undermine this expectation. In fact, this change should have been made long ago. So now hub_port_init() will take an additional argument, specifying a buffer in which to store the device descriptor it reads. (If udev has not yet been initialized, the buffer pointer will be NULL and then hub_port_init() will store the device descriptor in udev as before.) This eliminates the data race responsible for the out-of-bounds read. The changes to hub_port_init() appear more extensive than they really are, because of indentation changes resulting from an attempt to avoid writing to other parts of the usb_device structure after it has been initialized. Similar changes should be made to the code that reads the BOS descriptor, but that can be handled in a separate patch later on. This patch is sufficient to fix the bug found by syzbot.

What

In the Linux kernel, the following vulnerability has been resolved: USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() Syzbot reported an out-of-bounds read in sysfs.c:read_descriptors(): BUG: KASAN: slab-out-of-bounds in read_descriptors+0x263/0x280 drivers/usb/core/sysfs.c:883 Read of size 8 at addr ffff88801e78b8c8 by task udevd/5011 CPU: 0 PID: 5011 Comm: udevd Not tainted 6.4.0-rc6-syzkaller-00195-g40f71e7cd3c6 #0 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 05/27/2023 Call Trace: <TASK> __dump_stack lib/dump_stack.c:88 [inline] dump_stack_lvl+0xd9/0x150 lib/dump_stack.c:106 print_address_description.constprop.0+0x2c/0x3c0 mm/kasan/report.c:351 print_report mm/kasan/report.c:462 [inline] kasan_report+0x11c/0x130 mm/kasan/report.c:572 read_descriptors+0x263/0x280 drivers/usb/core/sysfs.c:883 ... Allocated by task 758: ... __do_kmalloc_node mm/slab_common.c:966 [inline] __kmalloc+0x5e/0x190 mm/slab_common.c:979 kmalloc include/linux/slab.h:563 [inline] kzalloc include/linux/slab.h:680 [inline] usb_get_configuration+0x1f7/0x5170 drivers/usb/core/config.c:887 usb_enumerate_device drivers/usb/core/hub.c:2407 [inline] usb_new_device+0x12b0/0x19d0 drivers/usb/core/hub.c:2545 As analyzed by Khazhy Kumykov, the cause of this bug is a race between read_descriptors() and hub_port_init(): The first routine uses a field in udev->descriptor, not expecting it to change, while the second overwrites it. Prior to commit 45bf39f8df7f ("USB: core: Don't hold device lock while reading the "descriptors" sysfs file") this race couldn't occur, because the routines were mutually exclusive thanks to the device locking. Removing that locking from read_descriptors() exposed it to the race. The best way to fix the bug is to keep hub_port_init() from changing udev->descriptor once udev has been initialized and registered. Drivers expect the descriptors stored in the kernel to be immutable; we should not undermine this expectation. In fact, this change should have been made long ago. So now hub_port_init() will take an additional argument, specifying a buffer in which to store the device descriptor it reads. (If udev has not yet been initialized, the buffer pointer will be NULL and then hub_port_init() will store the device descriptor in udev as before.) This eliminates the data race responsible for the out-of-bounds read. The changes to hub_port_init() appear more extensive than they really are, because of indentation changes resulting from an attempt to avoid writing to other parts of the usb_device structure after it has been initialized. Similar changes should be made to the code that reads the BOS descriptor, but that can be handled in a separate patch later on. This patch is sufficient to fix the bug found by syzbot.

Why

The product reads data past the end, or before the beginning, of the intended buffer.

How

An attacker operating through physical access may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

In the Linux kernel, the following vulnerability has been resolved: USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() Syzbot reported an out-of-bounds read in sysfs.c:read_descriptors(): BUG: KASAN: slab-out-of-bounds in read_descriptors+0x263/0x280 drivers/usb/core/sysfs.c:883 Read of size 8 at addr ffff88801e78b8c8 by task udevd/5011 CPU: 0 PID: 5011 Comm: udevd Not tainted 6.4.0-rc6-syzkaller-00195-g40f71e7cd3c6 #0 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 05/27/2023 Call Trace: <TASK> __dump_stack lib/dump_stack.c:88 [inline] dump_stack_lvl+0xd9/0x150 lib/dump_stack.c:106 print_address_description.constprop.0+0x2c/0x3c0 mm/kasan/report.c:351 print_report mm/kasan/report.c:462 [inline] kasan_report+0x11c/0x130 mm/kasan/report.c:572 read_descriptors+0x263/0x280 drivers/usb/core/sysfs.c:883 ... Allocated by task 758: ... __do_kmalloc_node mm/slab_common.c:966 [inline] __kmalloc+0x5e/0x190 mm/slab_common.c:979 kmalloc include/linux/slab.h:563 [inline] kzalloc include/linux/slab.h:680 [inline] usb_get_configuration+0x1f7/0x5170 drivers/usb/core/config.c:887 usb_enumerate_device drivers/usb/core/hub.c:2407 [inline] usb_new_device+0x12b0/0x19d0 drivers/usb/core/hub.c:2545 As analyzed by Khazhy Kumykov, the cause of this bug is a race between read_descriptors() and hub_port_init(): The first routine uses a field in udev->descriptor, not expecting it to change, while the second overwrites it. Prior to commit 45bf39f8df7f ("USB: core: Don't hold device lock while reading the "descriptors" sysfs file") this race couldn't occur, because the routines were mutually exclusive thanks to the device locking. Removing that locking from read_descriptors() exposed it to the race. The best way to fix the bug is to keep hub_port_init() from changing udev->descriptor once udev has been initialized and registered. Drivers expect the descriptors stored in the kernel to be immutable; we should not undermine this expectation. In fact, this change should have been made long ago. So now hub_port_init() will take an additional argument, specifying a buffer in which to store the device descriptor it reads. (If udev has not yet been initialized, the buffer pointer will be NULL and then hub_port_init() will store the device descriptor in udev as before.) This eliminates the data race responsible for the out-of-bounds read. The changes to hub_port_init() appear more extensive than they really are, because of indentation changes resulting from an attempt to avoid writing to other parts of the usb_device structure after it has been initialized. Similar changes should be made to the code that reads the BOS descriptor, but that can be handled in a separate patch later on. This patch is sufficient to fix the bug found by syzbot.

Why

The product reads data past the end, or before the beginning, of the intended buffer.

How

An attacker operating through physical access may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.

Observed exploitation
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
No confirmed evidence

No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.

Public PoC / exploit material
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
None recorded

No exploit-tagged reference or CISA SSVC proof-of-concept state is currently recorded. Research may still exist outside the structured feeds.

Likely attack path
physical access → Out-of-bounds Read → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Physical
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
High: exploitation depends on specific conditions
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-125

CWE-125: Out-of-bounds Read. The product reads data past the end, or before the beginning, of the intended buffer.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:P/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H

Common Vulnerability Scoring System 3.1: the compact vector below is decoded into plain language.

AVPhysicalAttack vector: The attacker needs physical access to the vulnerable system.ACHighAttack complexity: Successful exploitation depends on specific conditions outside the attacker's direct control.PRNonePrivileges required: The attacker does not need an account or existing privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CHighConfidentiality impact: A successful attack can cause a major loss.IHighIntegrity impact: A successful attack can cause a major loss.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
No specific living-off-the-land technique is confirmed in the structured sources. Monitor normal administration tools for activity inconsistent with the affected service's baseline.
UnauthenticatedCWE-125
A

Official authority intelligence

Only matched European and national findings are included. Language selectors and unavailable sources are omitted.

BSI · German · WID-SEC-W-2024-1619Linux Kernel: Schwachstelle ermöglicht nicht spezifizierten Angriff

Ein Angreifer kann eine Schwachstelle in Linux Kernel ausnutzen, um einen nicht näher spezifizierten Angriff durchzuführen.

Official advisory
CERT-FR · French · CERTFR-2025-AVI-1057Multiples vulnérabilités dans les produits VMware

d?id=CVE-2023-52849 Référence CVE CVE-2023-52851 https://www.cve.org/CVERecord?id=CVE-2023-52851 Référence CVE CVE-2023-52854 https://www.cve.org/CVERecord?id=CVE-2023-52854 Référence CVE CVE-2023-52859 https://www.cve.org/CVERecord?id=CVE-2023-52859 Référence CVE CVE-2023-52866 https://www.cve.org/CVERecord?id=CVE-2023-52866 Référence CVE CVE-2023-52867 https://www.cve.org/CVERecord?id=CVE-2023-52867 Référence CVE CVE-2023-52877 https://www.cve.org/CVERecord?id=CVE-2023-52877 Référence CVE CVE-2023-52881 https://www.cve.org/CVERecord?id=CVE-2023-52881 Référence CVE CVE-2023-52885 https://www.cve.org/CVERecord?id=CVE-2023-52885 Référence CVE CVE-2023-52886 https://www.cve.org/CVERecord?id=CVE-2023-52886 Référence CVE CVE-2023-52898 https://www.cve.org/CVERecord?id=CVE-2023-52898 Référence CVE CVE-2023-52901 https://www.cve.org/CVERecord?id=CVE-2023-52901 Référence CVE CVE-2023-52902 https://www.cve.org/CVERecord?id=CVE-2023-52902 Référence CVE CVE-2023-52905 https://www.cve.org/CVERecord?id=CVE-2023-52905 Référence CVE CVE-2023-52906 https://www.cve.org/CVERecord?id=CVE-2023-52906 Référence CVE CVE-2023-52908 https://www.cve.org/CVERecord?id=CVE-2023-52908 Référence CVE CVE-2023-52909 https://www.cve.org/CVERecord?id=CVE-2023-52909 Référence CVE CVE-2023-52910 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2024-AVI-0822Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-52502 Référence CVE CVE-2023-52581 https://www.cve.org/CVERecord?id=CVE-2023-52581 Référence CVE CVE-2023-52668 https://www.cve.org/CVERecord?id=CVE-2023-52668 Référence CVE CVE-2023-52688 https://www.cve.org/CVERecord?id=CVE-2023-52688 Référence CVE CVE-2023-52735 https://www.cve.org/CVERecord?id=CVE-2023-52735 Référence CVE CVE-2023-52772 https://www.cve.org/CVERecord?id=CVE-2023-52772 Référence CVE CVE-2023-52846 https://www.cve.org/CVERecord?id=CVE-2023-52846 Référence CVE CVE-2023-52859 https://www.cve.org/CVERecord?id=CVE-2023-52859 Référence CVE CVE-2023-52885 https://www.cve.org/CVERecord?id=CVE-2023-52885 Référence CVE CVE-2023-52886 https://www.cve.org/CVERecord?id=CVE-2023-52886 Référence CVE CVE-2023-52887 https://www.cve.org/CVERecord?id=CVE-2023-52887 Référence CVE CVE-2023-52889 https://www.cve.org/CVERecord?id=CVE-2023-52889 Référence CVE CVE-2023-52893 https://www.cve.org/CVERecord?id=CVE-2023-52893 Référence CVE CVE-2023-52894 https://www.cve.org/CVERecord?id=CVE-2023-52894 Référence CVE CVE-2023-52896 https://www.cve.org/CVERecord?id=CVE-2023-52896 Référence CVE CVE-2023-52898 https://www.cve.org/CVERecord?id=CVE-2023-52898 Référence CVE CVE-2023-52900 https://www.cve.org/CVERecord?id=CVE-2023-52900 Référence CVE CVE-2023-52901 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2024-AVI-0779Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-52708 Référence CVE CVE-2023-52735 https://www.cve.org/CVERecord?id=CVE-2023-52735 Référence CVE CVE-2023-52756 https://www.cve.org/CVERecord?id=CVE-2023-52756 Référence CVE CVE-2023-52766 https://www.cve.org/CVERecord?id=CVE-2023-52766 Référence CVE CVE-2023-52800 https://www.cve.org/CVERecord?id=CVE-2023-52800 Référence CVE CVE-2023-52802 https://www.cve.org/CVERecord?id=CVE-2023-52802 Référence CVE CVE-2023-52854 https://www.cve.org/CVERecord?id=CVE-2023-52854 Référence CVE CVE-2023-52859 https://www.cve.org/CVERecord?id=CVE-2023-52859 Référence CVE CVE-2023-52885 https://www.cve.org/CVERecord?id=CVE-2023-52885 Référence CVE CVE-2023-52886 https://www.cve.org/CVERecord?id=CVE-2023-52886 Référence CVE CVE-2023-52887 https://www.cve.org/CVERecord?id=CVE-2023-52887 Référence CVE CVE-2023-52889 https://www.cve.org/CVERecord?id=CVE-2023-52889 Référence CVE CVE-2023-52893 https://www.cve.org/CVERecord?id=CVE-2023-52893 Référence CVE CVE-2023-52894 https://www.cve.org/CVERecord?id=CVE-2023-52894 Référence CVE CVE-2023-52896 https://www.cve.org/CVERecord?id=CVE-2023-52896 Référence CVE CVE-2023-52898 https://www.cve.org/CVERecord?id=CVE-2023-52898 Référence CVE CVE-2023-52899 https://www.cve.org/CVERecord?id=CVE-2023-52899 Référence CVE CVE-2023-52900 https://www.cve.org/CVERecord?id=

Official advisory
CERT-FR · French · CERTFR-2024-AVI-0717Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-52877 Référence CVE CVE-2023-52878 https://www.cve.org/CVERecord?id=CVE-2023-52878 Référence CVE CVE-2023-52879 https://www.cve.org/CVERecord?id=CVE-2023-52879 Référence CVE CVE-2023-52880 https://www.cve.org/CVERecord?id=CVE-2023-52880 Référence CVE CVE-2023-52881 https://www.cve.org/CVERecord?id=CVE-2023-52881 Référence CVE CVE-2023-52882 https://www.cve.org/CVERecord?id=CVE-2023-52882 Référence CVE CVE-2023-52883 https://www.cve.org/CVERecord?id=CVE-2023-52883 Référence CVE CVE-2023-52884 https://www.cve.org/CVERecord?id=CVE-2023-52884 Référence CVE CVE-2023-52885 https://www.cve.org/CVERecord?id=CVE-2023-52885 Référence CVE CVE-2023-52886 https://www.cve.org/CVERecord?id=CVE-2023-52886 Référence CVE CVE-2023-6238 https://www.cve.org/CVERecord?id=CVE-2023-6238 Référence CVE CVE-2023-7042 https://www.cve.org/CVERecord?id=CVE-2023-7042 Référence CVE CVE-2024-0639 https://www.cve.org/CVERecord?id=CVE-2024-0639 Référence CVE CVE-2024-21823 https://www.cve.org/CVERecord?id=CVE-2024-21823 Référence CVE CVE-2024-22099 https://www.cve.org/CVERecord?id=CVE-2024-22099 Référence CVE CVE-2024-23848 https://www.cve.org/CVERecord?id=CVE-2024-23848 Référence CVE CVE-2024-24861 https://www.cve.org/CVERecord?id=CVE-2024-24861 Référence CVE CVE-2024-25739 https://www.cve.org/CVERecord?id=CVE-20

Official advisory
CERT-FR · French · CERTFR-2024-AVI-0693Multiples vulnérabilités dans le noyau Linux de SUSE

d?id=CVE-2023-52877 Référence CVE CVE-2023-52878 https://www.cve.org/CVERecord?id=CVE-2023-52878 Référence CVE CVE-2023-52879 https://www.cve.org/CVERecord?id=CVE-2023-52879 Référence CVE CVE-2023-52880 https://www.cve.org/CVERecord?id=CVE-2023-52880 Référence CVE CVE-2023-52881 https://www.cve.org/CVERecord?id=CVE-2023-52881 Référence CVE CVE-2023-52882 https://www.cve.org/CVERecord?id=CVE-2023-52882 Référence CVE CVE-2023-52883 https://www.cve.org/CVERecord?id=CVE-2023-52883 Référence CVE CVE-2023-52884 https://www.cve.org/CVERecord?id=CVE-2023-52884 Référence CVE CVE-2023-52885 https://www.cve.org/CVERecord?id=CVE-2023-52885 Référence CVE CVE-2023-52886 https://www.cve.org/CVERecord?id=CVE-2023-52886 Référence CVE CVE-2024-25741 https://www.cve.org/CVERecord?id=CVE-2024-25741 Référence CVE CVE-2024-26583 https://www.cve.org/CVERecord?id=CVE-2024-26583 Référence CVE CVE-2024-26584 https://www.cve.org/CVERecord?id=CVE-2024-26584 Référence CVE CVE-2024-26585 https://www.cve.org/CVERecord?id=CVE-2024-26585 Référence CVE CVE-2024-26615 https://www.cve.org/CVERecord?id=CVE-2024-26615 Référence CVE CVE-2024-26623 https://www.cve.org/CVERecord?id=CVE-2024-26623 Référence CVE CVE-2024-26625 https://www.cve.org/CVERecord?id=CVE-2024-26625 Référence CVE CVE-2024-26633 https://www.cve.org/CVERecord?id=

Official advisory
03

Patch and workaround

Operational remediation based on structured source evidence.

Status
?Patch availability is based on structured fixed-version fields and authoritative update references. If no fix is verified, check the vendor advisory before making a change.
Patch available
Affected
218925bfd5d1436e337c4f961e9c149fbe32de6d < 9d241c5d9a9b7ad95c90c6520272fe404d5ac88f; 77358093331e9769855140bf94a3f00ecdcf4bb1 < 7fe9d87996062f5eb0ca476ad0257f79bf43aaf5; c87fb861ec185fdc578b4fdc6a05920b6a843840 < 8186596a663506b1124bede9fde6f243ef9f37ee; 45bf39f8df7f05efb83b302c65ae3b9bc92b7065 < b4a074b1fb222164ed7d5c0b8c922dc4a0840848; 45bf39f8df7f05efb83b302c65ae3b9bc92b7065 < b9fbfb349eacc0820f91c797d7f0a3ac7a4935b5; 45bf39f8df7f05efb83b302c65ae3b9bc92b7065 < ff33299ec8bb80cdcc073ad9c506bd79bb2ed20b; 6badaf880edf51a2da7a439699676394dfdef3e5; 5f35b5d3bd6914c68f743741443dfd3a64b0e455
Fixed
< 6.3; 5.10.195 ≤ 5.10.*; 5.15.132 ≤ 5.15.*; 6.1.53 ≤ 6.1.*; 6.4.16 ≤ 6.4.*; 6.5.3 ≤ 6.5.*; 6.6 ≤ *
Action
Review the linked authoritative reference and apply the recorded fixed release appropriate to the affected product branch.
Workaround
No verified workaround is recorded. Limit untrusted access and use least privilege until authoritative guidance is available.
04

Evidence and provenance

Published 16 Jul 2024 · Last source change 23 May 2026, 15:27 UTC · CWE-125 · Out-of-bounds Read

CVE recordCVE.org · 5.2
CVSS sourceNIST NVD
EPSS source
?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.
FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2023-59599
Product sourceCNA
Remediation sourceCVE/CNA references
CWE sourceNIST NVD
NVD statusNVD modified after enrichment

Core structured fields are present and their contributing authorities are shown above.

Material change intelligence

What changed after publication

View recent updates →

No material field changes have been recorded since change tracking began. Routine source refreshes and cosmetic edits are intentionally excluded.

Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
Free version - for non-commercial use only.CVE-2023-52886 · cve.blacktree.nl