SecBoard
Zurück zur CVE-Übersicht

CVE-2026-81963

HIGH(7.8)KEV — Aktiv ausgenutzt

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

Risk Signal Score60/100 — HOCH
  • CVSS 7.8 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)
  • Weniger als 24 Stunden alt

Erwähnungen (letzte 60 Tage)

Artikel

CISA KEV

Bestätigt ausgenutzt

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2026-81963 betrifft den Windows Update Stack und ist eine Schwachstelle des Typs 'Improper link resolution before file access' (Link-Following). Ein autorisierter Angreifer kann diese Schwachstelle lokal ausnutzen, um seine Privilegien zu erweitern. Die Auswirkung ist eine lokale Privilegienerhöhung auf betroffenen Windows-Systemen. Diese Schwachstelle wird als kritisch eingestuft, mit einem CVSS-Score von 7.8 (HIGH). Besonders besorgniserregend ist, dass CVE-2026-81963 in 's () Katalog aufgeführt ist, was bedeutet, dass sie aktiv ausgenutzt wird. Security-Teams sollten diese Schwachstelle umgehend priorisieren und entsprechende Patches oder Mitigationen anwenden, sobald diese verfügbar sind. Eine schnelle Reaktion ist aufgrund der aktiven Ausnutzung und der Möglichkeit zur Privilegienerhöhung unerlässlich, um das Risiko für Windows-Systeme zu minimieren.

KI-gestützte Einordnung auf Basis der NVD-Daten.

Beschreibung

Improper link resolution before file access ('link following') in Windows Update Stack allows an authorized attacker to elevate privileges locally.

Erkennung & Indikatoren

Ausnutzung

In the wild (CISA KEV)

Threat-Hunting-Queries

Due to the lack of specific IOCs, detection focuses on unusual process creation or file access patterns related to the Windows Update Stack, which might indicate privilege escalation attempts.

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName in~ ("wuauclt.exe", "svchost.exe")
| where ProcessCommandLine contains "/updatenow" or ProcessCommandLine contains "/install"
| where InitiatingProcessFileName !in~ ("svchost.exe", "explorer.exe") // Legitimate update processes
| project TimeGenerated, DeviceName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, FolderPath, SHA256

Splunk SPL

(sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Security) (EventCode=4688 OR EventCode=1) (New_Process_Name=*wuauclt.exe* OR New_Process_Name=*svchost.exe*) (CommandLine=*updatenow* OR CommandLine=*install*) NOT (Parent_Process_Name=*svchost.exe* OR Parent_Process_Name=*explorer.exe*) | table _time, host, Parent_Process_Name, CommandLine, New_Process_Name, Process_Command_Line, Process_Path, Process_Hash

Sigma

title: Windows Update Stack Privilege Escalation Attempt
id: 00000000-0000-0000-0000-000000000000
status: experimental
description: Detects potential privilege escalation attempts leveraging improper link resolution in the Windows Update Stack.
author: SecBoard
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    Image|endswith:
      - '\wuauclt.exe'
      - '\svchost.exe'
    CommandLine|contains:
      - '/updatenow'
      - '/install'
  filter:
    ParentImage|endswith:
      - '\svchost.exe'
      - '\explorer.exe'
  condition: selection and not filter
level: high

Elastic ES|QL

from process where process.executable in ("wuauclt.exe", "svchost.exe") and (process.args contains "/updatenow" or process.args contains "/install") and not (process.parent.executable in ("svchost.exe", "explorer.exe")) | project @timestamp, host.name, process.parent.executable, process.parent.args, process.executable, process.args, process.working_directory, process.hash.sha256

SecBoard-generated · behavioral · requires customizationVon SecBoard erzeugt und nicht in einer Zielumgebung validiert. Vor dem Einsatz an die eigene Protokollierung anpassen.

Betroffene Produkte

  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2025:*:*:*:*:*:*:*:*

Referenzen