SecBoard
Zurück zur CVE-Übersicht

CVE-2021-42287

HIGH(7.5)KEV — Aktiv ausgenutzt

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

Risk Signal Score72/100 — HOCH
  • CVSS 7.5 — Hoch
  • EPSS 77% — sehr wahrscheinlich ausgenutzt
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

77.2%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.5

Technische Schwere

SecBoard-Einordnung

CVE-2021-42287 ist eine Schwachstelle zur in Microsoft Active Directory Domain Services. Ein Angreifer könnte durch Ausnutzung dieser Schwachstelle erhöhte Privilegien erlangen. Dies kann weitreichende Auswirkungen auf die Sicherheit und Integrität der Active Directory-Umgebung haben.

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

Beschreibung

Active Directory Domain Services Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild, listed in CISA KEV catalog. Known to be used in ransomware campaigns.

Threat-Hunting-Queries

This vulnerability is a privilege escalation in Active Directory Domain Services. Detection should focus on anomalous account modifications, privilege changes, or unusual authentication patterns that could indicate an attacker exploiting this vulnerability to gain higher privileges. Specific IOCs are not provided in the source text.

Sentinel/Defender KQL

SecurityEvent
| where EventID == 4738 or EventID == 4739 or EventID == 4728 or EventID == 4732 or EventID == 4756 or EventID == 4767 // Account modification, group membership changes
| where Account != "ANONYMOUS LOGON" and Account != "NT AUTHORITY\SYSTEM" // Exclude common system accounts
| summarize count() by EventID, Account, Computer, TargetUserName, MemberName // Adjust fields based on specific event details
| where count_ > 5 // Threshold for anomalous activity, adjust as needed

Splunk SPL

index=windows sourcetype=WinEventLog:Security (EventCode=4738 OR EventCode=4739 OR EventCode=4728 OR EventCode=4732 OR EventCode=4756 OR EventCode=4767) NOT Account="ANONYMOUS LOGON" NOT Account="NT AUTHORITY\\SYSTEM"
| stats count by EventCode, Account, Computer, TargetUserName, MemberName
| where count > 5

Sigma

title: CVE-2021-42287 Active Directory Privilege Escalation Attempt
status: experimental
description: Detects potential exploitation of CVE-2021-42287 by monitoring for anomalous Active Directory account or group modifications.
references:
    - https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2021-42287
logsource:
    product: windows
    service: security
detection:
    selection:
        EventID:
            - 4738 # A user account was changed
            - 4739 # Domain Policy was changed
            - 4728 # A member was added to a security-enabled global group
            - 4732 # A member was added to a security-enabled local group
            - 4756 # A member was added to a security-enabled universal group
            - 4767 # A user account was unlocked
    filter:
        AccountName:
            - 'ANONYMOUS LOGON'
            - 'NT AUTHORITY\\SYSTEM'
    condition: selection and not filter
    timeframe: 5m
    level: high

Elastic ES|QL

FROM logs-windows.security-*
| WHERE event.code IN (4738, 4739, 4728, 4732, 4756, 4767)
| WHERE NOT user.name IN ('ANONYMOUS LOGON', 'NT AUTHORITY\\SYSTEM')
| GROUP BY event.code, user.name, host.name, winlog.event_data.TargetUserName, winlog.event_data.MemberName
| AGG count = COUNT()
| WHERE count > 5

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_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