CVE-2026-72135
Last modified
CVE-2026-72135 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: tpm: Make the TPM character devices non-seekable The TPM character devices expose a sequential command/response interface, but their open handlers leave FMODE_PREAD and FMODE_PWRITE enabled. After a command leaves a response pending, pread(fd, buf, 16, 0x1400) passes 0x1400 as *off to tpm_common_read(). The transfer length is bounded by response_length, but the offset is used unchecked when forming data_buffer + *off. EPSS estimates a 0.21% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: tpm: Make the TPM character devices non-seekable The TPM character devices expose a sequential command/response interface, but their open handlers leave FMODE_PREAD and FMODE_PWRITE enabled. After a command leaves a response pending, pread(fd, buf, 16, 0x1400) passes 0x1400 as *off to tpm_common_read(). The transfer length is bounded by response_length, but the offset is used unchecked when forming data_buffer + *off. A sufficiently large offset therefore causes an out-of-bounds heap read through copy_to_user() and, if the copy succeeds, an out-of-bounds zero-write through the following memset(). Positional I/O does not provide coherent semantics for this interface. An arbitrary pread offset cannot represent how much of a response has been consumed sequentially. The write callback always stores a command at the start of data_buffer, while pwrite() does not update file->f_pos and can leave the sequential read cursor stale. Call nonseekable_open() from both open handlers. This removes FMODE_PREAD and FMODE_PWRITE, causing positional reads and writes to fail with -ESPIPE before reaching the TPM callbacks, and explicitly marks the files non-seekable. Normal read() and write() continue to use the existing sequential f_pos cursor, leaving the response state machine unchanged. Tested on Linux 6.12 with KASAN and a swtpm TPM2 device: - sequential partial reads returned the complete response - pread() and preadv() with offset 0x1400 returned -ESPIPE - pwrite() and pwritev() with offset zero returned -ESPIPE - the pending response remained intact after the rejected operations - a subsequent normal command/response cycle completed normally - no KASAN report was produced.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 9488585b21bef0df1217e510c7134905d1d376a7, < ed0ffc2c016629e40ba041ed0424a772d8b02e2c; >= 9488585b21bef0df1217e510c7134905d1d376a7, < 232dcf908eb7eb9d8046a9597975caf44270966e; >= 9488585b21bef0df1217e510c7134905d1d376a7, < dda695fab5e21f923d29e8cb01df256468ddfbd1; >= 9488585b21bef0df1217e510c7134905d1d376a7, < 9c513dabd4540f811585a2087f23069767a284da; >= 9488585b21bef0df1217e510c7134905d1d376a7, < 21a13f932972bc9836f58c44fcd47c62abdecd95; >= 9488585b21bef0df1217e510c7134905d1d376a7, < ada4b9a5087ea7f30dd8e4c6411a4fb6547eb1ed; >= 9488585b21bef0df1217e510c7134905d1d376a7, < 947b773caaa548672184df025271b29bdc80b0f1; >= 9488585b21bef0df1217e510c7134905d1d376a7, < f20d61c22bcaf172d6790b6500e3838e532e71c8 |
| Linux | Linux | 5.0 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-72135?
How severe is CVE-2026-72135?
How do I fix CVE-2026-72135?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-7213A vulnerability was detected in ef10007 MLOps_MCP 1.0.0. Thi…7.3
- CVE-2026-72130In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72131In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72132In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72133In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-72134In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-72136In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-72137In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72138In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72139In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-7214A vulnerability was identified in eghuzefa engineer-your-dat…7.3
- CVE-2026-72140In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-72135?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
