AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74302

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's Bluetooth subsystem, specifically in the hci_unregister_dev() function, which fails to disable timers before freeing the hci_dev structure. This oversight can lead to a use-after-free condition if a timeout occurs during device teardown, potentially allowing an attacker to execute arbitrary code or cause a system crash. Organizations using Linux with Bluetooth capabilities should prioritize patching this vulnerability to mitigate the associated risks.

CVE
CVE-2026-74302
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hci_core: Fix UAF in hci_unregister_dev() hci_unregister_dev() does not disable cmd_timer and ncmd_timer before the hci_dev structure is freed. If a timeout fires during device teardown, the callback dereferences freed memory (including the hdev->reset function pointer), leading to a use-after-free. Add disable_delayed_work_sync() calls alongside the existing disable_work_sync() calls to ensure both timers are fully quiesced before teardown proceeds.