HOMEVULNERABILITIESCVE-2026-31769
HIGH

CVE-2026-31769

Published: May 1, 2026· Updated: May 3, 2026

7.8
CVSS v3.1
EPSS:0.01%probability of exploitation in 30 daysPercentile:1.7th

Official Description

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

gpib: fix use-after-free in IO ioctl handlers

The IBRD, IBWRT, IBCMD, and IBWAIT ioctl handlers use a gpib_descriptor

pointer after board->big_gpib_mutex has been released. A concurrent

IBCLOSEDEV ioctl can free the descriptor via close_dev_ioctl() during

this window, causing a use-after-free.

The IO handlers (read_ioctl, write_ioctl, command_ioctl) explicitly

release big_gpib_mutex before calling their handler. wait_ioctl() is

called with big_gpib_mutex held, but ibwait() releases it internally

when wait_mask is non-zero. In all four cases, the descriptor pointer

obtained from handle_to_descriptor() becomes unprotected.

Fix this by introducing a kernel-only descriptor_busy reference count

in struct gpib_descriptor. Each handler atomically increments

descriptor_busy under file_priv->descriptors_mutex before releasing the

lock, and decrements it when done. close_dev_ioctl() checks

descriptor_busy under the same lock and rejects the close with -EBUSY

if the count is non-zero.

A reference count rather than a simple flag is necessary because

multiple handlers can operate on the same descriptor concurrently

(e.g. IBRD and IBWAIT on the same handle from different threads).

A separate counter is needed because io_in_progress can be cleared from

unprivileged userspace via the IBWAIT ioctl (through general_ibstatus()

with set_mask containing CMPL), which would allow an attacker to bypass

a check based solely on io_in_progress. The new descriptor_busy

counter is only modified by the kernel IO paths.

The lock ordering is consistent (big_gpib_mutex -> descriptors_mutex)

and the handlers only hold descriptors_mutex briefly during the lookup,

so there is no deadlock risk and no impact on IO throughput.

NVD Source

Technical Analysis

CVE-2026-31769 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

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

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.

All References (3)

Quick Facts

CVE IDCVE-2026-31769
CVSS Score7.8 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.01%
PublishedMay 1, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-31769 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.