SecBoard
Zurück zur CVE-Übersicht

CVE-2019-1385

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

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

3.6%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2019-1385 beschreibt eine Schwachstelle zur Privilegienerhöhung in den Windows AppX Deployment Extensions. Ein authentifizierter Angreifer könnte durch Ausführen einer speziell präparierten Anwendung unberechtigten Zugriff auf Systemdateien erlangen. Die Ursache liegt in einer fehlerhaften Privilegienverwaltung innerhalb der AppX Deployment Extensions.

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

Beschreibung

An elevation of privilege vulnerability exists when the Windows AppX Deployment Extensions improperly performs privilege management, resulting in access to system files.To exploit this vulnerability, an authenticated attacker would need to run a specially crafted application to elevate privileges.The security update addresses the vulnerability by correcting how AppX Deployment Extensions manages privileges., aka 'Windows AppX Deployment Extensions Elevation of Privilege Vulnerability'.

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild (CISA KEV).

Threat-Hunting-Queries

This vulnerability involves a low-privileged user creating a hard link to overwrite system files via the AppX Deployment service. Detection should focus on unusual hard link creation followed by attempts to modify system files by low-privileged processes associated with AppX Deployment.

Sentinel/Defender KQL

DeviceFileEvents
| where ActionType == "HardlinkCreated" or ActionType == "FileCreated"
| where InitiatingProcessCommandLine contains "AppXDeploymentServer.exe" or InitiatingProcessFileName =~ "AppXDeploymentServer.exe"
| where FileName has_any ("system32", "windows", "program files") // Adjust paths to critical system files
| where InitiatingProcessIntegrityLevel == "Low" or InitiatingProcessIntegrityLevel == "Medium"
| project Timestamp, DeviceName, InitiatingProcessCommandLine, InitiatingProcessFileName, FileName, FolderPath, InitiatingProcessIntegrityLevel, ActionType

Splunk SPL

index=windows (EventCode=1 OR EventCode=11) (Image="*AppXDeploymentServer.exe" OR ParentImage="*AppXDeploymentServer.exe") (TargetFilename="*system32*" OR TargetFilename="*windows*" OR TargetFilename="*program files*")
| where (IntegrityLevel="Low" OR IntegrityLevel="Medium")
| table _time, Hostname, Image, ParentImage, TargetFilename, IntegrityLevel, EventCode

Sigma

title: Windows AppX Hard Link DoS
author: SecBoard
description: Detects potential exploitation of CVE-2019-1385 involving hard link creation by the AppX Deployment service to overwrite system files.
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    Image|endswith: '\AppXDeploymentServer.exe'
    CommandLine|contains: 'hardlink'
    TargetFilename|contains:
      - '\Windows\System32\'
      - '\Windows\'
      - '\Program Files\'
  condition: selection
fields:
  - Image
  - CommandLine
  - TargetFilename
  - User
level: high

Elastic ES|QL

from logs-windows.*
| where event.category == "process"
| where process.executable : "*AppXDeploymentServer.exe"
| where process.command_line : "*hardlink*"
| where file.path : ("*\\Windows\\System32\\*", "*\\Windows\\*", "*\\Program Files\\*")
| select @timestamp, host.name, process.executable, process.command_line, file.path, user.name

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:o:microsoft:windows_10_1709:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1803:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1809:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1903:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2016:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2019:-:*:*:*:*:*:*:*

Referenzen