SecBoard
Zurück zur CVE-Übersicht

CVE-2021-33771

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

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

10.2%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

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

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

Beschreibung

Windows Kernel Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV)

Threat-Hunting-Queries

Die Schwachstelle ist eine Windows Kernel Elevation of Privilege (EoP). Eine Verhaltenserkennung sollte auf ungewöhnliche Prozessaktivitäten abzielen, die auf eine Privilegienerhöhung hindeuten, wie z.B. das Starten von Prozessen mit erhöhten Rechten aus einem Kontext, der dies normalerweise nicht tun sollte, oder das Ausführen von Systembefehlen durch nicht-privilegierte Benutzerkonten. Da die ge

Sentinel/Defender KQL

SecurityEvent
| where EventID == 4688 // Process Creation
| where ParentProcessName has_any ("explorer.exe", "cmd.exe", "powershell.exe")
| where ProcessName in~ ("cmd.exe", "powershell.exe", "wmic.exe", "sc.exe", "net.exe")
| where CommandLine has_any ("/c", "-c", "-command", "create", "start")
| where SubjectUserSid != "S-1-5-18" // Not SYSTEM account
| project TimeGenerated, Computer, SubjectUserName, ParentProcessName, ProcessName, CommandLine, ProcessId, ParentProcessId

Splunk SPL

index=windows sourcetype=WinEventLog:Security EventCode=4688
| where ParentProcessName IN ("explorer.exe", "cmd.exe", "powershell.exe")
| where ProcessName IN ("cmd.exe", "powershell.exe", "wmic.exe", "sc.exe", "net.exe")
| where CommandLine LIKE "* /c *" OR CommandLine LIKE "* -c *" OR CommandLine LIKE "* -command *" OR CommandLine LIKE "* create *" OR CommandLine LIKE "* start *"
| where NOT SubjectUserSid="S-1-5-18"
| table _time, ComputerName, SubjectUserName, ParentProcessName, ProcessName, CommandLine, ProcessId, ParentProcessId

Sigma

title: Windows Kernel EoP Behavioral Detection
status: experimental
description: Detects unusual process creation patterns indicative of privilege escalation attempts related to Windows Kernel vulnerabilities.
author: SecBoard Operations
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentProcessName|endswith:
      - 'explorer.exe'
      - 'cmd.exe'
      - 'powershell.exe'
    Image|endswith:
      - 'cmd.exe'
      - 'powershell.exe'
      - 'wmic.exe'
      - 'sc.exe'
      - 'net.exe'
    CommandLine|contains:
      - '/c'
      - '-c'
      - '-command'
      - 'create'
      - 'start'
  filter:
    UserSID: 'S-1-5-18'
  condition: selection and not filter
level: high

Elastic ES|QL

from logs-windows.security-*
| where event.code == 4688
| where process.parent.name in ('explorer.exe', 'cmd.exe', 'powershell.exe')
| where process.name in ('cmd.exe', 'powershell.exe', 'wmic.exe', 'sc.exe', 'net.exe')
| where process.command_line matches any ('* /c *', '* -c *', '* -command *', '* create *', '* start *')
| where user.sid != 'S-1-5-18'
| project @timestamp, host.name, user.name, process.parent.name, process.name, process.command_line, process.pid, process.parent.pid

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:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1909:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_2004:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h1:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_rt_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2004:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2012:-:r2:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2016:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2019:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_20h2:*:*:*:*:*:*:*:*

Referenzen