SecBoard
Zurück zur CVE-Übersicht

CVE-2021-26858

HIGH(7.8)KEV — Aktiv ausgenutzt

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

Risk Signal Score78/100 — KRITISCH
  • CVSS 7.8 — Hoch
  • EPSS 94% — sehr wahrscheinlich ausgenutzt
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

93.7%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2021-26858 ist eine () Schwachstelle in Microsoft Exchange Server. Ein erfolgreicher ermöglicht einem Angreifer die Ausführung von beliebigem Code auf dem betroffenen Server, was zu einer vollständigen Kompromittierung des Systems führen kann. Diese Schwachstelle betrifft verschiedene kumulative Updates von Exchange Server 2013 und 2016.

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

Beschreibung

Microsoft Exchange Server Remote Code Execution Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV). Teil der ProxyLogon-Exploit-Kette. Bekannt in Ransomware-Kampagnen verwendet.

Threat-Hunting-Queries

Diese Schwachstelle ist Teil der ProxyLogon-Exploit-Kette, die in der Regel serverseitige Request Forgery (SSRF) nutzt, um Remote Code Execution (RCE) zu erreichen. Die Erkennung sollte sich auf ungewöhnliche Prozessausführungen, Netzwerkverbindungen von Exchange-Servern zu externen Zielen oder das Erstellen/Ändern von Dateien in kritischen Exchange-Verzeichnissen konzentrieren.

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName has_any ("w3wp.exe", "powershell.exe", "cmd.exe")
| where FileName has_any ("powershell.exe", "cmd.exe", "mshta.exe", "bitsadmin.exe", "certutil.exe")
| where FolderPath contains "\Exchange Server\"
| project Timestamp, DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine, FolderPath

Splunk SPL

index=windows sourcetype=WinEventLog:Security EventCode=4688 (ParentProcessName="w3wp.exe" OR ParentProcessName="powershell.exe" OR ParentProcessName="cmd.exe") (NewProcessName="powershell.exe" OR NewProcessName="cmd.exe" OR NewProcessName="mshta.exe" OR NewProcessName="bitsadmin.exe" OR NewProcessName="certutil.exe") CommandLine="*Exchange Server*" | table _time, Host, ParentProcessName, NewProcessName, CommandLine

Sigma

title: Exchange ProxyLogon RCE Behavioral Detection
status: experimental
description: Detects suspicious process creation patterns indicative of ProxyLogon RCE on Exchange servers.
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith:
      - '\w3wp.exe'
      - '\powershell.exe'
      - '\cmd.exe'
    Image|endswith:
      - '\powershell.exe'
      - '\cmd.exe'
      - '\mshta.exe'
      - '\bitsadmin.exe'
      - '\certutil.exe'
    CommandLine|contains: 'Exchange Server'
  condition: selection
level: high

Elastic ES|QL

from process where event.type == "start" and
  (process.parent.executable.endswith("w3wp.exe") or
   process.parent.executable.endswith("powershell.exe") or
   process.parent.executable.endswith("cmd.exe")) and
  (process.executable.endswith("powershell.exe") or
   process.executable.endswith("cmd.exe") or
   process.executable.endswith("mshta.exe") or
   process.executable.endswith("bitsadmin.exe") or
   process.executable.endswith("certutil.exe")) and
  process.args contains "Exchange Server"
| select @timestamp, host.name, process.parent.executable, process.executable, 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:a:microsoft:exchange_server:2013:cumulative_update_21:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_22:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_10:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_11:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_12:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_13:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_14:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_15:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_16:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_17:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_18:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_19:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_8:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_9:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:-:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:cumulative_update_1:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:cumulative_update_2:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:cumulative_update_3:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:cumulative_update_4:*:*:*:*:*:*

Referenzen