CVE-2026-64271

Linux kernel (GCP) vulnerabilities

Beschreibung

Im Linux-Kernel wurde folgende Schwachstelle behoben:

Eingabe: touchwin - setze den Paketindex bei jedem vollständigen Paket zurück

tw_interrupt() sammelt jeden nicht-null-Byte des seriellen Datenstroms in einen festen dreibyte-Puffer mit einem laufenden Index, der nur zurückgesetzt wird, wenn ein vollständiges Paket empfangen wurde und die beiden Y-Bytes des Geräts übereinstimmen:

tw->data[tw->idx++] = data;
if (tw->idx == TW_LENGTH && tw->data[1] == tw->data[2]) {
    ...
    tw->idx = 0;
}

Der Rücksetzvorgang ist davon abhängig, dass tw->data[1] == tw->data[2], ein Wert, den das Gerät steuert. Ein böswilliges, fehlerhaftes oder gefälschtes Touchwindow-Peripheriegerät kann eine Sequenz von nicht-null-Bytes streamen, bei denen die 2. und 3. Bytes unterschiedlich sind: Der Index erreicht TW_LENGTH, ohne dass die Gleichheit besteht, wird nie zurückgesetzt und wächst weiter an, sodass tw->data[tw->idx++] am Ende des dreibyte-Arrays vorbeigeht und den Rest der heap-allocated Struktur struct tw ein Byte nach dem anderen überschreibt – eine ungebundene, gerätegesteuerte Heap-Out-of-Bounds-Schreiboperation.

Setze den Index bei jedem vollständigen Paket zurück und melde ein Ereignis nur dann, wenn die beiden Y-Bytes übereinstimmen, wie es auch andere serio Touchscreen-Treiber tun.

Metriken

Severity
high
kein öffentlicher PoC bekannt
7.8
Quelle: nvd-v3
6.4 %
Niedrig — CVE gehört zu den unteren 10 % der heute bewerteten CVEs.
0.2 %
Niedrig — Modell schätzt < 1 % Ausnutzungs-Wahrscheinlichkeit.
Veröffentlicht
2026-09-07 09:05 UTC

Re-Analyse & Statuswechsel

Chronologie der NVD-Audit-Events für diese CVE — Reanalyses, CVSS-Updates, CPE-Diffs.

  1. CVE Modified2026-08-17 05:17 UTC· 416baaa9-dc9f-4396-8d5f-8c081fb06d67
    • Affected: Linux, LinuxLinux, Linux
  2. New CVE Received2026-07-25 10:17 UTC· 416baaa9-dc9f-4396-8d5f-8c081fb06d67
    • Affected: Linux, Linux
    • Description: In the Linux kernel, the following vulnerability has been resolved: Input: touchwin - reset the packet index on every complete packet tw_interrupt() accumulates each non-zero serial byte into a fixed three-byte buffer with a running index that is only reset once a full packet has been received *and* the device's two Y bytes agree: tw->data[tw->idx++] = data; if (tw->idx == TW_LENGTH && tw->data[1] == tw->data[2]) { ... tw->idx = 0; } The reset is gated on tw->data[1] == tw->data[2], a value the device controls. A malicious, malfunctioning or counterfeit Touchwindow peripheral can stream non-zero bytes whose 2nd and 3rd bytes differ: the index reaches TW_LENGTH without the equality holding, is never reset, and keeps growing, so tw->data[tw->idx++] walks off the end of the three-byte array and the rest of the heap-allocated struct tw, one attacker-chosen byte at a time -- an unbounded, device-driven heap out-of-bounds write. Reset the index on every completed packet and report an event only when the two Y bytes match, like the other serio touchscreen drivers do.
    • Reference: https://git.kernel.org/stable/c/044167cba2384bcd783547ad5e30ecd292b30919
    • Reference: https://git.kernel.org/stable/c/3e6f007b43e2fc6546e21fa74ee62c38984a6672

Betroffene Betriebssysteme

  • linux

    redhat / enterprise_linux10.0

  • linux

    redhat / enterprise_linux7.0

  • linux

    redhat / enterprise_linux8.0

  • linux

    redhat / enterprise_linux9.0

  • linux

    ubuntu / linux-aws-6.8jammy

  • linux

    ubuntu / linux-azureresolute

  • linux

    ubuntu / linux-azuretrusty

  • linux

    ubuntu / linux-azurexenial

  • linux

    ubuntu / linux-azure-4.15bionic

  • linux

    ubuntu / linux-azure-5.4bionic

  • linux

    ubuntu / linux-azure-fdenoble

  • linux

    ubuntu / linux-azure-fderesolute

  • linux

    ubuntu / linux-azure-fde-6.8jammy

  • linux

    ubuntu / linux-azure-fipsbionic

  • linux

    ubuntu / linux-azure-fipsfocal

  • linux

    ubuntu / linux-azure-fipsnoble

  • linux

    ubuntu / linux-fipsjammy

  • linux

    ubuntu / linux-gcp-7.0noble

  • linux

    ubuntu / linux-gkejammy

  • linux

    ubuntu / linux-nvidia-tegranoble

  • linux

    ubuntu / linux-raspinoble

  • linux

    ubuntu / linux-raspi-realtimenoble

  • linux

    linux / linux_kernel2.6.12

  • linux

    linux / linux_kernel2.6.15

Quellen & Referenzen

Verknüpfte CVEs

1392 weitere CVEs anzeigen
IDCVE-2026-64271
Linux kernel (GCP) vulnerabilities — CVE-2026-64271 | NEOSEC Intel