SecBoard
Zurück zur CVE-Übersicht

CVE-2022-21882

HIGH(7.0)KEV — Aktiv ausgenutzt

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

Risk Signal Score65/100 — HOCH
  • CVSS 7 — Hoch
  • EPSS 59%
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

59.2%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7

Technische Schwere

SecBoard-Einordnung

CVE-2022-21882 ist eine Elevation-of-Privilege-Schwachstelle im Win32k-Komponente von Microsoft Windows. Ein Angreifer könnte diese Schwachstelle ausnutzen, um erhöhte Berechtigungen auf einem betroffenen System zu erlangen. Die erfolgreiche Ausnutzung ermöglicht es einem Angreifer, beliebigen Code mit Systemprivilegien auszuführen.

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

Beschreibung

Win32k Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild. CISA added this vulnerability to its Known Exploited Vulnerabilities Catalog on 2022-02-04, with a due date of 2022-02-18 for applying updates.

Threat-Hunting-Queries

This is a Win32k privilege escalation vulnerability. Detection should focus on unusual process creation, especially system-level processes (e.g., cmd.exe, powershell.exe) being spawned by processes that typically run with lower privileges, or unexpected modifications to system configurations/files by such processes. Look for anomalies in process parent-child relationships and elevated privileges.

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName !in ("explorer.exe", "svchost.exe", "winlogon.exe")
| where FileName in ("cmd.exe", "powershell.exe", "pwsh.exe")
| where ProcessCommandLine contains "-NoProfile" or ProcessCommandLine contains "-ExecutionPolicy Bypass"
| where InitiatingProcessIntegrityLevel == "Medium" and ProcessIntegrityLevel == "System"
| project TimeGenerated, DeviceName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, InitiatingProcessIntegrityLevel, ProcessIntegrityLevel

Splunk SPL

index=windows sourcetype=WinEventLog:Security EventCode=4688 New_Process_Name IN ("cmd.exe", "powershell.exe")
| where Parent_Process_Name != "explorer.exe" AND Parent_Process_Name != "svchost.exe" AND Parent_Process_Name != "winlogon.exe"
| search CommandLine IN ("*-NoProfile*", "*-ExecutionPolicy Bypass*")
| table _time, ComputerName, Parent_Process_Name, New_Process_Name, CommandLine

Sigma

title: Win32k EoP Suspicious Process Creation
status: experimental
description: Detects suspicious process creations indicative of Win32k privilege escalation, where a low-privileged process spawns a high-privileged shell.
author: SecBoard
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith:
      - '\system32\svchost.exe'
      - '\Windows\explorer.exe'
      - '\Windows\System32\winlogon.exe'
    Image|endswith:
      - '\cmd.exe'
      - '\powershell.exe'
      - '\pwsh.exe'
  condition: not selection
  falsepositives:
    - Legitimate administrative tools or scripts (requires tuning)
level: high

Elastic ES|QL

from process where event.type == "start" and process.executable.name in ("cmd.exe", "powershell.exe", "pwsh.exe") and not process.parent.executable.name in ("explorer.exe", "svchost.exe", "winlogon.exe") and process.args contains "-NoProfile" or process.args contains "-ExecutionPolicy Bypass"
| project @timestamp, host.name, process.parent.executable.name, process.executable.name, process.args

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_10_1809:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1909:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h1:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2019:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2022:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_20h2:*:*:*:*:*:*:*:*

Referenzen