PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-44641 microsoft CVE debrief

Microsoft APM (AI Package Manager) versions prior to 0.8.12 contain a path traversal vulnerability in the plugin installation process. The APM tool normalizes marketplace plugins by copying components referenced in plugin.json manifest fields (agents, skills, commands, hooks) into the .apm/ directory. These manifest paths are attacker-controlled without sufficient validation, allowing malicious plugins to specify absolute paths or ../ traversal sequences. This enables arbitrary file or directory read from the installer's host filesystem during apm install execution. The vulnerability is classified as CWE-22 (Path Traversal) and CWE-73 (External Control of File Name or Path). The issue was fixed in version 0.8.12.

Vendor
microsoft
Product
apm
CVSS
HIGH 7.1
CISA KEV
Not listed in stored evidence
Original CVE published
2026-05-15
Original CVE updated
2026-05-18
Advisory published
2026-05-15
Advisory updated
2026-05-18

Who should care

Organizations using Microsoft APM for AI agent dependency management, particularly those installing plugins from public or untrusted marketplace sources. Security teams monitoring supply chain risks in AI/ML tooling infrastructure. Developers integrating APM into automated deployment pipelines.

Technical summary

The vulnerability exists in Microsoft APM's plugin normalization routine. When processing a plugin.json manifest, the tool copies files referenced in four fields (agents, skills, commands, hooks) into a local .apm/ directory. The implementation fails to validate that these paths remain within the plugin's intended directory structure. A malicious actor can craft a plugin with manifest entries like /etc/passwd or ../../../sensitive/path, causing APM to copy arbitrary readable files from the host filesystem during installation. This represents a supply chain attack vector where compromised or malicious marketplace plugins can exfiltrate host data. The fix in 0.8.12 presumably adds path validation to ensure all referenced paths resolve within the plugin directory boundary.

Defensive priority

HIGH

Recommended defensive actions

  • Upgrade Microsoft APM to version 0.8.12 or later
  • Review installed plugins for suspicious manifest entries with absolute or traversal paths
  • Audit .apm/ directory contents for unexpected files copied from outside plugin directories
  • Implement plugin manifest validation in CI/CD pipelines before deployment
  • Restrict apm install execution to isolated environments with minimal filesystem exposure
  • Monitor for plugins referencing system paths in agents, skills, commands, or hooks fields

Evidence notes

Vulnerability confirmed through GitHub Security Advisory GHSA-xhrw-5qxx-jpwr. CVSS 3.1 vector AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N indicates local attack vector with high confidentiality and integrity impact. Fix version 0.8.12 explicitly mentioned in advisory.

Official resources

2026-05-15T17:16:47.633Z