SecBoard
Zurück zur CVE-Übersicht

CVE-2021-43226

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

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

3.1%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2021-43226 ist eine Elevation-of-Privilege-Schwachstelle im Windows Common Log File System Driver. Ein Angreifer könnte diese Schwachstelle ausnutzen, um erhöhte Berechtigungen auf einem betroffenen System zu erlangen. Dies kann zu einer vollständigen Kompromittierung des Systems führen, da der Angreifer administrative Rechte erlangen könnte.

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

Beschreibung

Windows Common Log File System Driver Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild, including in ransomware campaigns.

Threat-Hunting-Queries

This is a local privilege escalation vulnerability in the Windows Common Log File System (CLFS) driver. Detection should focus on unusual process creation, file system modifications, or privilege changes originating from processes interacting with the CLFS driver, especially if they lead to higher privileges or suspicious activity.

Sentinel/Defender KQL

DeviceProcessEvents
| where ProcessCommandLine contains "CLFS" or InitiatingProcessCommandLine contains "CLFS" // Placeholder, refine based on specific CLFS driver interaction patterns
| where ActionType == "ProcessCreated" or ActionType == "FileCreated" or ActionType == "RegistryValueSet"
| where InitiatingProcessIntegrityLevel != "System" and ProcessIntegrityLevel == "System" // Look for privilege escalation
| project TimeGenerated, DeviceName, InitiatingProcessCommandLine, ProcessCommandLine, FileName, FolderPath, RegistryKey, RegistryValueData, InitiatingProcessIntegrityLevel, ProcessIntegrityLevel, ReportId

Splunk SPL

index=windows (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational)
| (CommandLine="*CLFS*" OR ParentCommandLine="*CLFS*") // Placeholder, refine based on specific CLFS driver interaction patterns
| (EventCode=4688 OR EventCode=1 OR EventCode=12 OR EventCode=13 OR EventCode=14)
| eval is_priv_escalation = if(match(ParentIntegrityLevel, "(Low|Medium|High)") AND IntegrityLevel="System", "true", "false")
| where is_priv_escalation="true"
| table _time, host, CommandLine, ParentCommandLine, Image, ParentImage, EventCode, IntegrityLevel, ParentIntegrityLevel

Sigma

title: Windows CLFS EoP Attempt
status: experimental
description: Detects potential exploitation attempts of CVE-2021-43226 in the Windows Common Log File System (CLFS) driver leading to privilege escalation.
references:
    - https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-43226
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        ParentImage|endswith:
            - '\lsass.exe' # Example, refine based on observed exploitation patterns
            - '\services.exe'
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
            - '\pwsh.exe'
        CommandLine|contains:
            - 'CLFS' # Placeholder, refine based on specific CLFS driver interaction patterns
    condition: selection
level: high

Elastic ES|QL

from logs-windows.*
| where event.category == "process"
| where process.command_line : "*CLFS*" // Placeholder, refine based on specific CLFS driver interaction patterns
| where process.parent.integrity_level != "System" and process.integrity_level == "System" // Look for privilege escalation
| select @timestamp, host.name, process.parent.command_line, process.command_line, process.executable, process.parent.executable, process.integrity_level, process.parent.integrity_level

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:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1909:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_2004:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:x86:*
  • 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_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:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2008:-:sp2:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_server_2008:r2:sp1:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2012:-:*:*:*:*:*:*:*

Referenzen