SecBoard
Zurück zur CVE-Übersicht

CVE-2019-1130

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.3%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2019-1130 beschreibt eine Schwachstelle zur im Windows AppX Deployment Service (AppXSVC). Diese tritt auf, wenn der Dienst Hardlinks unsachgemäß verarbeitet. Ein erfolgreicher ermöglicht einem Angreifer, erhöhte Privilegien auf dem betroffenen System zu erlangen. Die Schwachstelle wird mit einem CVSS-Score von 7.8 (HIGH) bewertet und ist im () Katalog gelistet, was auf eine aktive Ausnutzung hindeutet. Die EPSS-Wahrscheinlichkeit für eine Ausnutzung liegt bei 2%, was trotz des KEV-Eintrags eine relative Unsicherheit über die breite Verfügbarkeit von Exploits suggeriert, aber die aktive Ausnutzung bestätigt die Relevanz. Security-Teams sollten die betroffenen Windows 10 Versionen umgehend identifizieren und entsprechende Sicherheitsupdates einspielen. Aufgrund der aktiven Ausnutzung und der Möglichkeit zur ist eine schnelle Priorisierung und Behebung dieser Schwachstelle dringend erforderlich, um das Risiko für die Organisation zu minimieren.

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

Beschreibung

An elevation of privilege vulnerability exists when Windows AppX Deployment Service (AppXSVC) improperly handles hard links, aka 'Windows Elevation of Privilege Vulnerability'. This CVE ID is unique from CVE-2019-1129.

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild, listed in CISA KEV catalog. Known to be used in ransomware campaigns.

Threat-Hunting-Queries

This is a privilege escalation vulnerability related to improper handling of hard links by the Windows AppX Deployment Service (AppXSVC). Detection should focus on unusual process creation, file system modifications, or service interactions related to AppXSVC that deviate from normal behavior, especially those involving hard links or attempts to escalate privileges.

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName =~ "AppXSVC.exe" or ProcessCommandLine contains "AppXSVC"
| where InitiatingProcessFileName !in ("svchost.exe", "services.exe") // Filter out legitimate service host processes if AppXSVC is a service
| where ProcessCommandLine contains "hardlink" or ProcessCommandLine contains "junction" or ProcessCommandLine contains "reparse"
| project Timestamp, DeviceName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, FolderPath, SHA256

Splunk SPL

index=windows (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational)
| (Image="*\\AppXSVC.exe" OR CommandLine="*AppXSVC*")
| NOT (ParentImage="*\\svchost.exe" OR ParentImage="*\\services.exe")
| (CommandLine="*hardlink*" OR CommandLine="*junction*" OR CommandLine="*reparse*")
| table _time, host, Image, CommandLine, ParentImage, ParentCommandLine

Sigma

title: Windows AppXSVC Hard Link EoP Attempt
status: experimental
description: Detects suspicious activity related to AppXSVC and hard link manipulation, indicative of CVE-2019-1130 exploitation.
references:
    - https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2019-1130
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\AppXSVC.exe'
        CommandLine|contains:
            - 'hardlink'
            - 'junction'
            - 'reparse'
    filter:
        ParentImage|endswith:
            - '\svchost.exe'
            - '\services.exe'
    condition: selection and not filter
fields:
    - CommandLine
    - ParentCommandLine
    - Image
    - ParentImage
level: high

Elastic ES|QL

from process where process.executable.full_path : "*\\AppXSVC.exe" or process.args : "*AppXSVC*"
| where not (process.parent.executable.full_path : "*\\svchost.exe" or process.parent.executable.full_path : "*\\services.exe")
| where process.args : "*hardlink*" or process.args : "*junction*" or process.args : "*reparse*"
| select @timestamp, host.name, process.executable.full_path, process.command_line, process.parent.executable.full_path, process.parent.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:o:microsoft:windows_10_1507:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1507:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1607:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1607:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1703:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1703:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1709:-:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_1709:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1709:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1803:-:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_1803:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1803:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1809:-:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_1809:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1809:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1903:-:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_1903:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1903:-:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_8.1:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_rt_8.1:-:*:*:*:*:*:*:*

Referenzen