SecBoard
Zurück zur CVE-Übersicht

CVE-2021-26857

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 96% — sehr wahrscheinlich ausgenutzt
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

95.8%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2021-26857 ist eine () Schwachstelle in Microsoft Exchange Server. Ein Angreifer kann diese Schwachstelle ausnutzen, um beliebigen Code auf dem betroffenen Server auszuführen. Dies kann zu einer vollständigen Kompromittierung des Systems führen, einschließlich Datenexfiltration oder der Installation weiterer Malware.

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 für den Einsatz in Ransomware-Kampagnen.

Threat-Hunting-Queries

Die Schwachstelle ist Teil der ProxyLogon-Exploit-Kette und ermöglicht Remote Code Execution auf Microsoft Exchange Servern. Die Detektion sollte sich auf ungewöhnliche Prozesse, Netzwerkverbindungen oder Dateierstellungen konzentrieren, die auf eine Kompromittierung des Exchange Servers hindeuten.

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName in~ ("powershell.exe", "cmd.exe", "wscript.exe", "cscript.exe", "mshta.exe")
| where InitiatingProcessFileName =~ "w3wp.exe" // IIS Worker Process for Exchange
| where InitiatingProcessCommandLine contains "Exchange"
| project Timestamp, DeviceName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, FolderPath, SHA256

Splunk SPL

index=windows sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational EventCode=1
| where ParentImage="C:\Program Files\Microsoft\Exchange Server\V15\Bin\w3wp.exe"
| where Image IN ("C:\Windows\System32\cmd.exe", "C:\Windows\System32\powershell.exe", "C:\Windows\System32\wscript.exe", "C:\Windows\System32\cscript.exe", "C:\Windows\System32\mshta.exe")
| table _time, Host, ParentImage, Image, CommandLine, Hashes

Sigma

title: Exchange ProxyLogon RCE Behavioral Detection
id: 7e7f8e8d-9c0b-4d1a-8e7f-8e8d9c0b4d1a
status: experimental
description: Detects suspicious process creation originating from the Exchange IIS worker process (w3wp.exe), indicative of successful exploitation of vulnerabilities like ProxyLogon (CVE-2021-26857).
author: SecBoard
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith: '\w3wp.exe'
    Image|endswith:
      - '\cmd.exe'
      - '\powershell.exe'
      - '\wscript.exe'
      - '\cscript.exe'
      - '\mshta.exe'
  condition: selection
fields:
  - CommandLine
  - ParentCommandLine
  - Image
  - ParentImage
tags:
  - attack.execution
  - cve.2021.26857
  - cisa_kev

Elastic ES|QL

from process where event.type == "start" and 
  process.parent.executable.path : "*\\w3wp.exe" and 
  process.executable.path : ("*\\cmd.exe", "*\\powershell.exe", "*\\wscript.exe", "*\\cscript.exe", "*\\mshta.exe")
| select @timestamp, host.name, process.parent.executable.path, process.executable.path, process.command_line, process.hash.sha256

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:2010:sp3:*:*:*:*:*:*
  • 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:2013:sp1:*:*:*:*:*:*
  • 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:*:*:*:*:*:*

Referenzen