SecBoard
Zurück zur CVE-Übersicht

CVE-2024-38226

HIGH(7.3)KEV — Aktiv ausgenutzt

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

Risk Signal Score49/100 — MITTEL
  • CVSS 7.3 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

2.7%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.3

Technische Schwere

SecBoard-Einordnung

CVE-2024-38226 ist eine Schwachstelle zur Umgehung von Sicherheitsfunktionen in Microsoft Publisher. Diese Lücke ermöglicht es einem Angreifer, bestimmte Sicherheitsmechanismen zu umgehen, was potenziell zu unerwünschten Aktionen oder dem Zugriff auf geschützte Ressourcen führen kann. Die genaue Auswirkung hängt von der erfolgreichen Umgehung der Sicherheitsfunktion ab.

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

Beschreibung

Microsoft Publisher Security Feature Bypass Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV).

Threat-Hunting-Queries

Die Schwachstelle ermöglicht das Umgehen von Office-Makro-Richtlinien. Die Detektion sollte auf ungewöhnliche Makro-Ausführungen in Publisher-Dokumenten oder die Umgehung von Sicherheitsmechanismen abzielen.

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName =~ "MSPUB.EXE"
| where ProcessCommandLine contains ".docm" or ProcessCommandLine contains ".xlsm" or ProcessCommandLine contains ".pptm" // Beispiel: Suche nach Publisher, der Office-Makro-Dateien öffnet
| where InitiatingProcessCommandLine contains "/m" // Beispiel: Indikator für Makro-Ausführung
| project Timestamp, DeviceName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, FolderPath

Splunk SPL

index=your_endpoint_logs (process_name="MSPUB.EXE" OR process_name="mspub.exe") (command_line="*.docm*" OR command_line="*.xlsm*" OR command_line="*.pptm*") (parent_command_line="*/m*")
| table _time, host, parent_process_name, parent_command_line, process_name, command_line, file_path

Sigma

title: Microsoft Publisher Macro Bypass Attempt
status: experimental
description: Detects potential attempts to bypass Office macro policies using Microsoft Publisher.
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    Image|endswith: '\MSPUB.EXE'
    CommandLine|contains:
      - '.docm'
      - '.xlsm'
      - '.pptm'
  condition: selection
fields:
  - CommandLine
  - ParentCommandLine
  - Image
level: high

Elastic ES|QL

FROM process
| WHERE process.executable.name == "MSPUB.EXE"
| WHERE process.args LIKE "%.docm%" OR process.args LIKE "%.xlsm%" OR process.args LIKE "%.pptm%"
| WHERE process.parent.args LIKE "% /m %"
| SELECT @timestamp, host.name, process.parent.executable.name, process.parent.args, process.executable.name, process.args, process.working_directory

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:office_2019:-:*:*:*:*:*:x64:*
  • cpe:2.3:a:microsoft:office_2019:-:*:*:*:*:*:x86:*
  • cpe:2.3:a:microsoft:office_long_term_servicing_channel:2021:*:*:*:*:*:x64:*
  • cpe:2.3:a:microsoft:office_long_term_servicing_channel:2021:*:*:*:*:*:x86:*
  • cpe:2.3:a:microsoft:publisher:2016:*:*:*:*:*:x64:*
  • cpe:2.3:a:microsoft:publisher:2016:*:*:*:*:*:x86:*

Referenzen