Back to overview

CVE-2026-64135

Description
In the Linux kernel, the following vulnerability has been resolved: hwmon: (pmbus/adm1266) widen blackbox-info buffer to I2C_SMBUS_BLOCK_MAX adm1266_nvmem_read_blackbox() declares a 5-byte stack buffer and passes it to i2c_smbus_read_block_data() to retrieve the 4-byte BLACKBOX_INFO response. i2c_smbus_read_block_data() does not honour caller buffer sizes -- it memcpy()s data.block[0] bytes from the SMBus transaction (where data.block[0] is the length byte returned by the slave device, up to I2C_SMBUS_BLOCK_MAX = 32): memcpy(values, &data.block[1], data.block[0]); If the device returns any block length above 5, the call overflows the caller's 5-byte stack buffer before the post-call if (ret != 4) return -EIO; check has a chance to reject the response. Widen the local buffer to I2C_SMBUS_BLOCK_MAX so the helper has room for any well-formed SMBus block response, matching the convention used by the other i2c_smbus_read_block_data() callers in this driver.

Metadata

CVE ID
CVE-2026-64135
State
PUBLISHED
Assigner
Linux
Reserved
2026-07-19 07:54 UTC
Published
2026-07-19 15:40 UTC
Last updated
2026-07-19 15:40 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux 15609d1893020436e1e8ccfd9ded774a96dd17a2 < 33251abb9c9dd62943be76f0427c5527ee39188f, 15609d1893020436e1e8ccfd9ded774a96dd17a2 < ba09f4baa5bd96c5d26c942defa546a72dbbe5bf, 15609d1893020436e1e8ccfd9ded774a96dd17a2 < 6ed16a40b162e9d87d9ac8bed4d7f0e3e807700e, 15609d1893020436e1e8ccfd9ded774a96dd17a2 < 0dbf64c502443c08c2e28a77ecbfcc5479d93228 …
Linux Linux 5.10, 0 < 5.10, 5.10.258 ≤ 5.10.*, 5.15.209 ≤ 5.15.* …
Back to overview