SecBoard
Zurück zur CVE-Übersicht

CVE-2021-38645

HIGH(7.8)KEV — Aktiv ausgenutzt

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

Risk Signal Score50/100 — HOCH
  • CVSS 7.8 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

2.7%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2021-38645 ist eine Elevation-of-Privilege-Schwachstelle in der Open Management Infrastructure (OMI) von Microsoft. Ein Angreifer könnte diese Schwachstelle ausnutzen, um erhöhte Berechtigungen auf einem betroffenen System zu erlangen. Dies könnte weitreichende Auswirkungen auf die Sicherheit und Integrität der betroffenen Azure-Dienste und -Lösungen haben.

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

Beschreibung

Open Management Infrastructure Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild, as confirmed by CISA KEV. Known To Be Used in Ransomware Campaigns? Unknown.

Threat-Hunting-Queries

This is a privilege escalation vulnerability in Open Management Infrastructure (OMI). Detection should focus on unusual process execution or privilege changes related to OMI processes, especially those originating from Azure VM Management Extensions. Specific IOCs are not provided in the source.

Sentinel/Defender KQL

SecurityEvent
| where EventID == 4688 // Process Creation
| where NewProcessName contains "omi" or CommandLine contains "omi"
| where ParentProcessName contains "Azure" or ParentProcessName contains "Management"
| where not (NewProcessName has_any ("omiserver", "omiprovider")) // Exclude known legitimate OMI processes if they are not the direct cause
| project TimeGenerated, Computer, Account, NewProcessName, CommandLine, ParentProcessName

Splunk SPL

index=windows sourcetype=WinEventLog:Security EventCode=4688 (New_Process_Name=*omi* OR CommandLine=*omi*)
| where Parent_Process_Name=*Azure* OR Parent_Process_Name=*Management*
| where NOT (New_Process_Name IN ("omiserver", "omiprovider"))
| table _time, host, Account_Name, New_Process_Name, CommandLine, Parent_Process_Name

Sigma

title: OMI Privilege Escalation Attempt
status: experimental
description: Detects suspicious process creation related to Open Management Infrastructure (OMI) that could indicate privilege escalation, especially from Azure VM Management Extensions.
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentProcessName|contains: # Adjust based on specific Azure VM Management Extension process names
      - 'Azure'
      - 'Management'
    CommandLine|contains:
      - 'omi'
    NewProcessName|contains:
      - 'omi'
  filter:
    NewProcessName|endswith:
      - 'omiserver.exe'
      - 'omiprovider.exe'
  condition: selection and not filter
level: high

Elastic ES|QL

from winlog.eventdata
| where event.code == 4688
| where process.executable.text_value like '%omi%' or process.command_line.text_value like '%omi%'
| where process.parent.executable.text_value like '%Azure%' or process.parent.executable.text_value like '%Management%'
| where not (process.executable.text_value in ('omiserver.exe', 'omiprovider.exe'))
| select @timestamp, host.name, user.name, process.executable, process.command_line, process.parent.executable

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:azure_automation_state_configuration:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:azure_automation_update_management:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:azure_diagnostics_\(lad\):-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:azure_security_center:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:azure_sentinel:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:azure_stack_hub:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:container_monitoring_solution:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:log_analytics_agent:-:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:open_management_infrastructure:*:*:*:*:*:*:*:*
  • cpe:2.3:a:microsoft:system_center_operations_manager:-:*:*:*:*:*:*:*

Referenzen