PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-46001 Linux CVE debrief

CVE-2026-46001 describes two bugs in the Linux kernel hwmon driver for the PT5161L temperature sensor. The first bug is a stack buffer overflow: the local buffer `rbuf` is sized at 24 bytes, but `i2c_smbus_read_block_data()` can return up to `I2C_SMBUS_BLOCK_MAX` (32) bytes. Because the I2C core copies data into the caller's buffer before the return value is validated, a malicious or misbehaving device returning more than 24 bytes causes a stack overrun before any length check can occur. The second bug is a logic error where exhausted retries with unexpected data lengths return a positive byte count instead of an error, causing callers to treat the operation as successful and process stale or incomplete data. The fix resizes the buffer to `I2C_SMBUS_BLOCK_MAX` and returns `-EIO` when retries are exhausted with a positive return value.

Vendor
Linux
Product
Unknown
CVSS
HIGH 7.8
CISA KEV
Not listed in stored evidence
Original CVE published
2026-05-27
Original CVE updated
2026-06-16
Advisory published
2026-05-27
Advisory updated
2026-06-16

Who should care

System administrators running Linux on hardware with PT5161L temperature sensors; embedded systems developers using I2C-connected hwmon devices; security teams assessing physical attack surface on systems with exposed I2C buses

Technical summary

The PT5161L hwmon driver in the Linux kernel contains a stack buffer overflow in `pt5161l_read_block_data()` due to undersized local buffer (24 bytes vs. 32 byte maximum I2C block transfer). The overflow occurs because `i2c_smbus_read_block_data()` writes data before return value validation. A secondary bug causes the function to return success (positive byte count) when all retries are exhausted due to unexpected data length, leading callers to process invalid data. The fix increases buffer size to `I2C_SMBUS_BLOCK_MAX` and returns `-EIO` on exhausted retries.

Defensive priority

medium

Recommended defensive actions

  • Apply kernel updates containing the fix commits once available from your Linux distribution
  • Audit systems for presence of PT5161L temperature sensors and review I2C bus access controls
  • Monitor kernel logs for unexpected PT5161L read failures that may indicate probing attempts
  • Restrict physical access to I2C buses to prevent attachment of malicious devices

Evidence notes

The CVE description and kernel commit references confirm the vulnerability is in `pt5161l_read_block_data()` within the Linux kernel hwmon subsystem. The buffer overrun is exploitable only when a malicious or compromised I2C device is present on the bus, limiting attack surface to systems with untrusted hardware attached. The logic error could cause incorrect sensor readings but does not directly enable code execution.

Sources and references

Verified primary and authoritative sources

  • CVE-2026-46001 CVE Program record

    Publisher, destination, and source semantics verified

    URL: https://www.cve.org/CVERecord?id=CVE-2026-46001

    CVE Program - Official CVE Program record with source-provided CVE metadata.

  • CVE-2026-46001 NVD vulnerability detail

    Publisher, destination, and source semantics verified

    URL: https://nvd.nist.gov/vuln/detail/CVE-2026-46001

    NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.

Supplemental references

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/24c73e93d6a756e1b8626bb259d2e07c5b89b370

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/7eccabff1c9ec15e4b6fe186d5c147b13a9cdb4e

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/95d48e37a1304d6148406c799479c0fb505aefa7

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

  • Source reference

    Unverified legacy reference

    URL: https://git.kernel.org/stable/c/a11aa9c5fd9dfe62be7cfec1f2a7546afb77254c

    416baaa9-dc9f-4396-8d5f-8c081fb06d67

Methodology and review provenance

AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.