SecBoard
Zurück zur CVE-Übersicht

CVE-2023-21823

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 Score51/100 — HOCH
  • CVSS 7.8 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

5.6%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2023-21823 ist eine () Schwachstelle in der Windows Graphics Component. Ein erfolgreicher dieser Schwachstelle ermöglicht es einem Angreifer, beliebigen Code auf dem betroffenen System auszuführen. Dies kann zu einer vollständigen Kompromittierung des Systems führen.

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

Beschreibung

Windows Graphics Component Remote Code Execution Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV)

Threat-Hunting-Queries

Die Schwachstelle betrifft die Windows Graphics Component und ermöglicht eine Privilege Escalation. Eine verhaltensbasierte Erkennung könnte auf ungewöhnliche Prozessaktivitäten oder Berechtigungsänderungen im Zusammenhang mit Grafikkomponenten abzielen, da keine spezifischen IOCs genannt werden.

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName has_any ("dwm.exe", "csrss.exe", "winlogon.exe") // Beispiel: Prozesse, die mit Grafikkomponenten interagieren könnten
| where ProcessCommandLine has_any ("powershell", "cmd", "wmic") // Beispiel: Ungewöhnliche Befehle nach Prozessstart
| where ActionType == "ProcessCreated" or ActionType == "FileCreated" or ActionType == "RegistryValueSet"
| summarize count() by DeviceName, InitiatingProcessFileName, ProcessCommandLine, ActionType

Splunk SPL

index=windows (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational)
| (Image="*\\dwm.exe" OR Image="*\\csrss.exe" OR Image="*\\winlogon.exe") // Beispiel: Prozesse, die mit Grafikkomponenten interagieren könnten
| (CommandLine="*powershell*" OR CommandLine="*cmd*" OR CommandLine="*wmic*") // Beispiel: Ungewöhnliche Befehle nach Prozessstart
| stats count by host, Image, CommandLine, EventCode

Sigma

title: Windows Graphics Component Privilege Escalation Attempt
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith:
      - '\dwm.exe'
      - '\csrss.exe'
      - '\winlogon.exe'
    CommandLine|contains:
      - 'powershell'
      - 'cmd'
      - 'wmic'
  condition: selection
falsepositives:
  - Legitimate administrative activity (requires tuning)
level: high

Elastic ES|QL

from logs-windows.*
| where event.category == "process"
| where process.parent.executable.endswith("dwm.exe") or process.parent.executable.endswith("csrss.exe") or process.parent.executable.endswith("winlogon.exe")
| where process.command_line.contains("powershell") or process.command_line.contains("cmd") or process.command_line.contains("wmic")
| stats count() by host.name, process.parent.executable, process.command_line, event.action

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_1507:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1507:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:arm64:*
  • 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_20h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_11_21h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_21h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_22h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_22h2:*:*:*:*:*:*:x64:*

Referenzen