SecBoard
Zurück zur CVE-Übersicht

CVE-2021-36955

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

4.0%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2021-36955 ist eine Elevation-of-Privilege-Schwachstelle im Windows Common Log File System (CLFS) Treiber. Ein lokal authentifizierter Angreifer könnte diese Schwachstelle ausnutzen, um Systemprivilegien zu erlangen. Dies ermöglicht dem Angreifer, beliebigen Code mit erhöhten Rechten auszuführen und die vollständige Kontrolle über das betroffene System zu übernehmen.

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

Beschreibung

Windows Common Log File System Driver Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV).

Threat-Hunting-Queries

Die Schwachstelle betrifft den Windows Common Log File System (CLFS) Treiber und ermöglicht eine Privilege Escalation. Eine IOC-basierte Detektion ist ohne konkrete Angreifer-Indikatoren nicht möglich. Die verhaltensbasierte Detektion konzentriert sich auf ungewöhnliche Prozessaktivitäten, die auf eine Privilege Escalation hindeuten könnten, insbesondere im Kontext von Systemprozessen oder dem CLF

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName =~ "cmd.exe" or FileName =~ "powershell.exe" or FileName =~ "wmic.exe"
| where InitiatingProcessFileName =~ "lsass.exe" or InitiatingProcessFileName =~ "services.exe" or InitiatingProcessFileName =~ "winlogon.exe" // Beispiel für ungewöhnliche Initiatoren
| where ProcessCommandLine has_any ("net user", "taskkill", "sc create", "schtasks") // Beispiel für potenziell bösartige Befehle nach Privilege Escalation
| project TimeGenerated, DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine, InitiatingProcessParentFileName

Splunk SPL

index=windows (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational)
| (EventCode=4688 OR EventCode=1) (New_Process_Name="*cmd.exe" OR New_Process_Name="*powershell.exe" OR New_Process_Name="*wmic.exe")
| (Parent_Process_Name="*lsass.exe" OR Parent_Process_Name="*services.exe" OR Parent_Process_Name="*winlogon.exe")
| (CommandLine="*net user*" OR CommandLine="*taskkill*" OR CommandLine="*sc create*" OR CommandLine="*schtasks*")
| table _time, Host, Parent_Process_Name, New_Process_Name, CommandLine

Sigma

title: Windows CLFS Privilege Escalation Behavioral Detection
status: experimental
description: Detects suspicious process creation patterns indicative of privilege escalation via CLFS driver vulnerability.
references:
    - https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-36955
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
            - '\wmic.exe'
    parent_process_selection:
        ParentImage|endswith:
            - '\lsass.exe'
            - '\services.exe'
            - '\winlogon.exe'
    command_line_keywords:
        CommandLine|contains:
            - 'net user'
            - 'taskkill'
            - 'sc create'
            - 'schtasks'
    condition: selection and parent_process_selection and command_line_keywords
level: high

Elastic ES|QL

from process where event.category == "process" and event.type == "start"
| where process.executable.name in ("cmd.exe", "powershell.exe", "wmic.exe")
| where process.parent.executable.name in ("lsass.exe", "services.exe", "winlogon.exe")
| where process.args contains any ("net user", "taskkill", "sc create", "schtasks")
| select @timestamp, host.name, process.parent.executable.name, process.executable.name, process.command_line

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_7:-:sp1:*:*:-:*:-:*
  • 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_2008:-:sp2:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:r2:sp1:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2012:-:*:*:*:*:*:*:*
  • 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_2022:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_20h2:*:*:*:*:*:*:*:*

Referenzen