CVE & CISA-KEV Catalog

CVE-2026-64273

HIGH
7.8
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: Input: iforce - bound the device-reported force-feedback effect index iforce_process_packet() handles a status report (packet id 0x02) by taking a force-feedback effect index straight from the device wire and using it to address the per-effect state array: i = data[1] & 0x7f; if (data[1] & 0x80) { if (!test_and_set_bit(FF_CORE_IS_PLAYED, iforce->core_effects[i].flags)) ... } else if (test_and_clear_bit(FF_CORE_IS_PLAYED, iforce->core_effects[i].flags)) { ... } The index is masked only with 0x7f, so it ranges 0..127, but core_effects[] holds only IFORCE_EFFECTS_MAX (32) entries. For an index of 32..127 the test_and_set_bit()/test_and_clear_bit() is an out-of-bounds single-bit read-modify-write past the array. core_effects[] is the second-to-last member of struct iforce, so the write lands in the trailing members and beyond the embedding kzalloc()'d iforce_serio / iforce_usb object. data[1] is unvalidated device payload on both transports (the USB interrupt endpoint and serio), and the status path is not gated on force feedback being present, so a malicious or counterfeit device can set or clear a bit at an attacker-chosen offset past the object. Reject an out-of-range index instead of indexing with it. Bound against the array dimension IFORCE_EFFECTS_MAX rather than dev->ff->max_effects so the check guarantees memory safety regardless of how many effects the device registered. A legitimate "effect started/stopped" status always carries an index below IFORCE_EFFECTS_MAX, so well-formed devices are unaffected; the neighbouring mark_core_as_ready() loop is already bounded and is left untouched.

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.180-1CVE-2026-64273
Fixed in:6.12.96-1CVE-2026-64273
Fixed in:7.1.4-1CVE-2026-64273
linux-aws-7.0Ubuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-gcp-7.0Ubuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-hwe-7.0Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-7.0.0-1011-gcpUbuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-image-7.0.0-1011-gcp-64kUbuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-image-7.0.0-1012-awsUbuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-image-7.0.0-1012-aws-64kUbuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-image-7.0.0-1018-nvidiaUbuntu
Fixed in:7.0.0-1018.18~24.04.1USN-8760-1
linux-image-7.0.0-1018-nvidia-64kUbuntu
Fixed in:7.0.0-1018.18~24.04.1USN-8760-1
linux-image-7.0.0-31-genericUbuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-7.0.0-31-generic-64kUbuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-awsUbuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-image-aws-64kUbuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-image-aws-64k-7.0Ubuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-image-aws-7.0Ubuntu
Fixed in:7.0.0-1012.12~24.04.1USN-8726-1
linux-image-gcpUbuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-image-gcp-64kUbuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-image-gcp-64k-7.0Ubuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-image-gcp-7.0Ubuntu
Fixed in:7.0.0-1011.11~24.04.1USN-8728-1
linux-image-generic-64k-7.0Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-generic-7.0Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-generic-hwe-24.04Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-nvidia-64k-7.0Ubuntu
Fixed in:7.0.0-1018.18~24.04.1USN-8760-1
linux-image-nvidia-7.0Ubuntu
Fixed in:7.0.0-1018.18~24.04.1USN-8760-1
linux-image-virtual-7.0Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:7.0.0-31.31~24.04.1USN-8726-1
linux-nvidia-7.0Ubuntu
Fixed in:7.0.0-1018.18~24.04.1USN-8760-1

TridentStack Control can deploy fixes like this automatically across your Windows, macOS, and Linux fleet. See how it works

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityHigh
IntegrityHigh
AvailabilityHigh

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Exploit Intelligence

0.17%probability of exploitation in 30 days
7thpercentile

Low risk: more likely to be exploited than 7% of all known CVEs.

References

Related Vulnerabilities

Other CWE-129 vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2021-35592Medium6.352%-Fix
CVE-2021-35598Medium6.351%-Fix
CVE-2021-35594Medium6.351%-Fix
CVE-2022-35737High7.521%-Fix
CVE-2014-6317High7.118%--
CVE-2023-0755Critical9.812%--

Common questions

How do I fix CVE-2026-64273?

Published advisories record a fix for 29 affected products. The "How to fix" section on this page lists the fixed version and source advisory for each one, so apply the entry matching what you actually run.

Is CVE-2026-64273 being actively exploited?

Not that we know of. CVE-2026-64273 is not in the CISA Known Exploited Vulnerabilities catalog. Its EPSS score of 0.17% is the estimated probability that it will be exploited in the next 30 days. That is higher than 7% of all scored CVEs.

How severe is CVE-2026-64273?

CVE-2026-64273 has a CVSS v3 base score of 7.8, rated high. CVSS rates the technical impact if the vulnerability is exploited, not how likely that is, so weigh it alongside the exploit-prediction score when you decide what to patch first.

What does CVE-2026-64273 affect?

Published advisories record a fix for linux (Debian), linux-aws-7.0 (Ubuntu), linux-gcp-7.0 (Ubuntu), linux-hwe-7.0 (Ubuntu), and 25 more. Only products with a sourced advisory are listed, so treat this as what we can cite rather than a complete inventory.

Embed a live status badge for CVE-2026-64273
CVE-2026-64273 severity badge

Markdown

[![CVE-2026-64273](https://tridentstack.com/cve/badge/CVE-2026-64273.svg)](https://tridentstack.com/cve/CVE-2026-64273)

HTML

<a href="https://tridentstack.com/cve/CVE-2026-64273"><img src="https://tridentstack.com/cve/badge/CVE-2026-64273.svg" alt="CVE-2026-64273"></a>

Check your Linux endpoints for this class of vulnerability

TridentStack Control continuously scans Linux endpoints for known vulnerabilities and deploys the fixes from the same console. 200 endpoints free forever, no credit card.

Patch your fleet freeStart freeThis CVE lookup is free and always will be.

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2026-08-17.