CVE-2026-64492
Received Received - Intake

Use-After-Free in Linux Kernel IIO Temperature Driver

Vulnerability report for CVE-2026-64492, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-25

Last updated on: 2026-07-25

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: iio: temperature: tmp006: use devm_iio_trigger_register tmp006_probe() allocates the DRDY trigger with devm_iio_trigger_alloc() but registers it with plain iio_trigger_register(). The driver has no .remove() callback, so on module unload the trigger stays in the global trigger list while its memory is freed by devm, leaving a dangling entry. Switch to devm_iio_trigger_register() so the registration is undone in the same devm scope as the allocation.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-25
Last Modified
2026-07-25
Generated
2026-08-14
AI Q&A
2026-07-25
EPSS Evaluated
2026-08-13
NVD
EUVD

Affected Vendors & Products

Showing 2 associated CPEs
Vendor Product Version / Range
linux linux_kernel *
linux_kernel tmp006 *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a Linux kernel vulnerability in the tmp006 temperature sensor driver. The issue occurs because the driver allocates a trigger using devm_iio_trigger_alloc() but registers it with iio_trigger_register() instead of devm_iio_trigger_register(). This mismatch causes the trigger to remain in the global trigger list after module unloading, even though its memory is freed by devm, leading to a dangling entry.

Detection Guidance

This vulnerability is specific to the Linux kernel's tmp006 temperature sensor driver and does not provide direct detection commands. It involves a memory management issue where a dangling trigger entry remains after module unload. Check kernel logs for tmp006-related errors or warnings using 'dmesg | grep tmp006' or 'journalctl -k | grep tmp006'.

Impact Analysis

This vulnerability could cause system instability or crashes when the tmp006 driver module is unloaded. The dangling trigger entry may lead to memory corruption or unexpected behavior in the IIO subsystem, potentially affecting temperature monitoring functionality.

Compliance Impact

This vulnerability does not directly affect compliance with standards like GDPR or HIPAA as it pertains to a Linux kernel driver for temperature sensors. The issue involves a memory management flaw in the tmp006 driver, which could lead to system instability but does not involve data privacy or security breaches typical of GDPR or HIPAA concerns.

Mitigation Strategies

Update the Linux kernel to a patched version where the tmp006 driver uses devm_iio_trigger_register() instead of iio_trigger_register().

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-64492. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart