SecBoard
Zurück zur CVE-Übersicht

CVE-2021-33766

HIGH(7.3)KEV — Aktiv ausgenutzt

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

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

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

98.1%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.3

Technische Schwere

SecBoard-Einordnung

CVE-2021-33766 ist eine Informationslecks-Schwachstelle in Microsoft Exchange Server. Diese Schwachstelle ermöglicht es einem Angreifer, sensible Informationen offenzulegen, was potenziell zu weiteren Angriffen oder dem Diebstahl von Daten führen kann. Betroffen sind Exchange Server 2013 CU23, Exchange Server 2016 CU19 und CU20, sowie Exchange Server 2019 CU8 und CU9.

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

Beschreibung

Microsoft Exchange Server Information Disclosure Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV).

Threat-Hunting-Queries

Die Schwachstelle ermöglicht einen Authentifizierungs-Bypass in der ECP-Webanwendung von Microsoft Exchange Server, um sensible Informationen offenzulegen. Die Detektion konzentriert sich auf ungewöhnliche oder nicht authentifizierte Zugriffe auf ECP-Webdienste, die zu Informationslecks führen könnten.

Sentinel/Defender KQL

ExchangeIISLog
| where csUriStem contains "/ecp/" and scStatus == 200
| where csUserName == "-" or isempty(csUserName)
| summarize count() by cIp, csUriStem, csMethod, csUserAgent
| where count_ > 5 // Adjust threshold based on baseline
| project cIp, csUriStem, csMethod, csUserAgent, count_

Splunk SPL

index=ms_exchange sourcetype=iis_access_log cs_uri_stem="/ecp/*" sc_status=200 (cs_username="-" OR cs_username="")
| stats count by c_ip, cs_uri_stem, cs_method, cs_user_agent
| where count > 5 // Adjust threshold based on baseline

Sigma

title: Exchange ECP Auth Bypass Information Disclosure Attempt
status: experimental
description: Detects potential attempts to exploit CVE-2021-33766 by identifying unauthenticated access to Exchange ECP web services.
references:
    - https://www.zerodayinitiative.com/advisories/ZDI-21-798/
logsource:
    product: exchange
    service: iis
detection:
    selection:
        cs_uri_stem|contains: '/ecp/'
        sc_status: 200
        cs_username: '-'
    condition: selection
falsepositives:
    - Legitimate unauthenticated ECP access (if any, verify environment)
level: high

Elastic ES|QL

from iis_logs
| where cs_uri_stem like '/ecp/%' and sc_status == 200 and (cs_username == '-' or cs_username == null)
| stats count() by c_ip, cs_uri_stem, cs_method, cs_user_agent
| where count > 5 // Adjust threshold based on baseline
| project c_ip, cs_uri_stem, cs_method, cs_user_agent, count

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_23:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_19:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2016:cumulative_update_20:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:cumulative_update_8:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:exchange_server:2019:cumulative_update_9:*:*:*:*:*:*

Referenzen