What is the AppX Deployment Server?
The AppX Deployment Server is the SYSTEM-privileged Windows component responsible for installing, updating, and removing packaged AppX/MSIX applications, including apps from the Microsoft Store. Because it carries out privileged file-system operations on behalf of unprivileged users during app deployment, weaknesses in how it resolves file-system references directly enable a path from standard user to SYSTEM.
Overview
CVE-2019-1253 is a privilege escalation vulnerability in the Windows AppX Deployment Server caused by improper handling of NTFS junction points (directory-level symbolic links) during package deployment operations. A local, low-privileged attacker can place a junction in a location the service is expected to operate on, redirecting a privileged file operation to an attacker-chosen target and escalating to SYSTEM.
Technical Details
The root cause (CWE-59, improper link resolution before file access) is the same broad class of bug as the hard-link issues seen in other 2019 AppXSVC/AppX Deployment Server CVEs, but using NTFS junctions rather than hard links as the redirection primitive. The service checks or creates a path expecting it to be an ordinary directory, but a locally-planted junction can point that path at a sensitive system directory instead; when the service later performs a privileged file operation against the "expected" path, it actually acts on the attacker's chosen target with SYSTEM privileges. Exploitation requires only local access and low privileges, no user interaction, and low attack complexity, consistent with a well-understood and reliably reproducible exploitation technique.
Discovery
This bug was addressed as part of Microsoft's routine September 2019 security update cycle, alongside several related AppX servicing and hard-link/junction-handling fixes patched throughout 2019; the public Microsoft advisory does not name a specific outside researcher for this CVE.
Exploitation Context
CISA's KEV catalog listing confirms real-world exploitation, and the ransomwareUse: true designation indicates this bug has been used by ransomware-affiliated actors as a local privilege-escalation step to reach SYSTEM after an initial, lower-privileged foothold on a Windows endpoint — a common pattern across the several AppX-related LPE bugs patched throughout 2019.
Remediation
- Apply the September 2019 (or later) Windows cumulative update, which fixes the AppX Deployment Server's junction handling.
- Prioritize patching regardless of network exposure, since exploitation only requires local code execution.
- Restrict interactive logon and local account creation privileges to reduce the pool of accounts capable of staging this exploit.
- Deploy EDR tooling able to flag suspicious junction/reparse-point creation targeting privileged service directories.
- Audit endpoints for unexpected SYSTEM-context file modifications correlated with AppX package deployment activity predating patching.
Key Details
| Property | Value |
|---|---|
| CVE ID | CVE-2019-1253 |
| Vendor / Product | Microsoft — Windows |
| NVD Published | 2019-09-11 |
| NVD Last Modified | 2025-10-29 |
| CVSS 3.1 Score | 7.8 |
| CVSS 3.1 Vector | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H |
| Severity | HIGH |
| CISA KEV Added | 2022-03-15 |
| CISA KEV Deadline | 2022-04-05 |
| Known Ransomware Use | ⚠️ Yes |
CVSS 3.1 Breakdown
Required Action
Timeline
| Date | Event |
|---|---|
| 2019-09-10 | Patched in Microsoft's September 2019 Patch Tuesday cumulative update |
| 2022-03-15 | Added to CISA Known Exploited Vulnerabilities catalog |
| 2022-04-05 | CISA BOD 22-01 remediation deadline |
References
| Resource | Type |
|---|---|
| NVD — CVE-2019-1253 | Vulnerability Database |
| CISA KEV Catalog Entry | US Government |