SecBoard
Zurück zur CVE-Übersicht

CVE-2021-38646

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 Score52/100 — HOCH
  • CVSS 7.8 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

8.0%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2021-38646 ist eine () Schwachstelle in der Microsoft Office Access Connectivity Engine. Ein erfolgreicher ermöglicht es einem Angreifer, beliebigen Code im Kontext des aktuellen Benutzers auszuführen. Dies kann zu Datenkompromittierung oder vollständiger Systemkontrolle führen, abhängig von den Berechtigungen des Benutzers.

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

Beschreibung

Microsoft Office Access Connectivity Engine Remote Code Execution Vulnerability

Erkennung & Indikatoren

Ausnutzung

Actively exploited (CISA KEV). Known to be used in ransomware campaigns.

Threat-Hunting-Queries

This vulnerability affects the Microsoft Office Access Connectivity Engine and allows for remote code execution. Detection should focus on unusual process creation or network activity originating from Office applications, especially Access or components that interact with the Access Connectivity Engine.

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName in~ ("MSACCESS.EXE", "EXCEL.EXE", "WINWORD.EXE", "OUTLOOK.EXE")
| where FileName in~ ("powershell.exe", "cmd.exe", "wscript.exe", "cscript.exe", "mshta.exe")
| where ProcessCommandLine has_any ("http", "https", "ftp", "smb") or ProcessCommandLine has_any (".exe", ".dll")
| project TimeGenerated, DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine, FolderPath, InitiatingProcessCommandLine

Splunk SPL

index=your_windows_logs (ParentProcessName="msaccess.exe" OR ParentProcessName="excel.exe" OR ParentProcessName="winword.exe" OR ParentProcessName="outlook.exe") (ProcessName="powershell.exe" OR ProcessName="cmd.exe" OR ProcessName="wscript.exe" OR ProcessName="cscript.exe" OR ProcessName="mshta.exe") (CommandLine=*http* OR CommandLine=*https* OR CommandLine=*ftp* OR CommandLine=*smb* OR CommandLine=*.exe* OR CommandLine=*.dll*)
| table _time, host, ParentProcessName, ProcessName, CommandLine, ProcessPath

Sigma

title: Microsoft Office ACE RCE Behavioral Detection
id: 00000000-0000-0000-0000-000000000001
status: experimental
description: Detects suspicious process creation by Microsoft Office applications, potentially indicating exploitation of CVE-2021-38646.
author: SecBoard
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith:
      - '\MSACCESS.EXE'
      - '\EXCEL.EXE'
      - '\WINWORD.EXE'
      - '\OUTLOOK.EXE'
    Image|endswith:
      - '\powershell.exe'
      - '\cmd.exe'
      - '\wscript.exe'
      - '\cscript.exe'
      - '\mshta.exe'
  condition: selection
fields:
  - CommandLine
  - ParentCommandLine
  - Image
  - ParentImage
tags:
  - attack.execution
  - cve.2021.38646

Elastic ES|QL

from process where
  (process.parent.executable.full_path : "*\\MSACCESS.EXE" or
   process.parent.executable.full_path : "*\\EXCEL.EXE" or
   process.parent.executable.full_path : "*\\WINWORD.EXE" or
   process.parent.executable.full_path : "*\\OUTLOOK.EXE") and
  (process.executable.full_path : "*\\powershell.exe" or
   process.executable.full_path : "*\\cmd.exe" or
   process.executable.full_path : "*\\wscript.exe" or
   process.executable.full_path : "*\\cscript.exe" or
   process.executable.full_path : "*\\mshta.exe") and
  (process.args : "*http*" or process.args : "*https*" or process.args : "*ftp*" or process.args : "*smb*" or process.args : "*.exe*" or process.args : "*.dll*")
| project @timestamp, host.name, process.parent.executable.full_path, process.executable.full_path, 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:365_apps:-:*:*:*:enterprise:*:*:*
  • cpe:2.3:a:microsoft:office:2013:sp1:*:*:-:*:*:*
  • cpe:2.3:a:microsoft:office:2013:sp1:*:*:rt:*:*:*
  • cpe:2.3:a:microsoft:office_2016:-:*:*:*:-:*:x64:*
  • cpe:2.3:a:microsoft:office_2016:-:*:*:*:-:*:x86:*
  • cpe:2.3:a:microsoft:office_2019:-:*:*:*:*:*:*:*

Referenzen