HOMEVULNERABILITIESCVE-2026-31576
HIGH

CVE-2026-31576

Published: April 24, 2026· Updated: Apr 27, 2026

7.8
CVSS v3.1
EPSS:0.02%probability of exploitation in 30 daysPercentile:4.8th

Official Description

In the Linux kernel, the following vulnerability has been resolved:

media: hackrf: fix to not free memory after the device is registered in hackrf_probe()

In hackrf driver, the following race condition occurs:

```

CPU0 CPU1

hackrf_probe()

kzalloc(); // alloc hackrf_dev

....

v4l2_device_register();

....

fd = sys_open("/path/to/dev"); // open hackrf fd

....

v4l2_device_unregister();

....

kfree(); // free hackrf_dev

....

sys_ioctl(fd, ...);

v4l2_ioctl();

video_is_registered() // UAF!!

....

sys_close(fd);

v4l2_release() // UAF!!

hackrf_video_release()

kfree(); // DFB!!

```

When a V4L2 or video device is unregistered, the device node is removed so

new open() calls are blocked.

However, file descriptors that are already open-and any in-flight I/O-do

not terminate immediately; they remain valid until the last reference is

dropped and the driver's release() is invoked.

Therefore, freeing device memory on the error path after hackrf_probe()

has registered dev it will lead to a race to use-after-free vuln, since

those already-open handles haven't been released yet.

And since release() free memory too, race to use-after-free and

double-free vuln occur.

To prevent this, if device is registered from probe(), it should be

modified to free memory only through release() rather than calling

kfree() directly.

NVD Source

Technical Analysis

CVE-2026-31576 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires low privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

A successful exploit results in complete confidentiality breach (data exposure), full integrity compromise (data manipulation), availability disruption (denial of service), with a CVSS base score of 7.8.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorLocal
Attack ComplexityLow
Privileges Req.Low
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityHigh
IntegrityHigh
AvailabilityHigh
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Affected Vendors & Products

Linux1 product
linux kernel
Source: NVD CPE · 1 total CPE entries

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

Official Patches & Advisories

All References (6)

Quick Facts

CVE IDCVE-2026-31576
CVSS Score7.8 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.02%
Affected1 vendor
PublishedApr 24, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-31576 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.