HOMEVULNERABILITIESCVE-2026-46151
NONE

CVE-2026-46151

Published: May 28, 2026· Updated: Jun 1, 2026

EPSS:0.02%probability of exploitation in 30 daysPercentile:5.2th

Official Description

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

usb: usblp: fix heap leak in IEEE 1284 device ID via short response

usblp_ctrl_msg() collapses the usb_control_msg() return value to

0/-errno, discarding the actual number of bytes transferred. A broken

printer can complete the GET_DEVICE_ID control transfer short and the

driver has no way to know.

usblp_cache_device_id_string() reads the 2-byte big-endian length prefix

from the response and trusts it (clamped only to the buffer bounds).

The buffer is kmalloc(1024) at probe time. A device that sends exactly

two bytes (e.g. 0x03 0xFF, claiming a 1023-byte ID) leaves

device_id_string[2..1022] holding stale kmalloc heap.

That stale data is then exposed:

- via the ieee1284_id sysfs attribute (sprintf("%s", buf+2), truncated

at the first NUL in the stale heap), and

- via the IOCNR_GET_DEVICE_ID ioctl, which copy_to_user()s the full

claimed length regardless of NULs, up to 1021 bytes of uninitialized

heap, with the leak size chosen by the device.

Fix this up by just zapping the buffer with zeros before each request

sent to the device.

NVD Source

Technical Analysis

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

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

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 (8)

Quick Facts

CVE IDCVE-2026-46151
SeverityNONE
CISA KEVNo
EPSS (30d)0.02%
PublishedMay 28, 2026

Recommended Actions

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