A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-9102

CVE-2026-9102: Altium Enterprise Server Path Traversal

CVE-2026-9102 is a path traversal vulnerability in Altium Enterprise Server ComparisonService that enables authenticated users to write files anywhere on the server, potentially leading to RCE. This post covers technical details, impact, and mitigation.

Published: May 21, 2026

CVE-2026-9102 Overview

CVE-2026-9102 is a path traversal vulnerability [CWE-22] in the Altium Enterprise Server ComparisonService. The flaw exists in the Gerber file upload APIs, which fail to sanitize filenames supplied through the multipart Content-Disposition header. An authenticated workspace user can craft a filename containing directory traversal sequences to escape the temporary upload directory. The attacker can then write arbitrary files anywhere on the server filesystem.

Critical Impact

Authenticated attackers can write attacker-controlled files to web-accessible directories, achieving remote code execution under the service account, or overwrite application binaries and configuration files to cause service takeover or denial of service.

Affected Products

  • Altium Enterprise Server (ComparisonService component)
  • Gerber file upload APIs within the Enterprise Server workspace
  • Deployments accepting authenticated workspace user uploads

Discovery Timeline

  • 2026-05-20 - CVE-2026-9102 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-9102

Vulnerability Analysis

The vulnerability resides in the Gerber file upload handlers of the Altium Enterprise Server ComparisonService. The service accepts multipart form uploads and uses the filename parameter from the Content-Disposition header to construct the destination path on disk. The handler concatenates this attacker-controlled value with the temporary upload directory without normalizing the path or rejecting traversal sequences.

A crafted filename such as one containing ..\ or ../ segments traverses outside the intended directory. Because the service runs with elevated privileges, the write primitive extends across the entire filesystem accessible to the service account. Authentication as any regular workspace user is the only prerequisite, lowering the bar for exploitation in multi-tenant deployments.

Root Cause

The root cause is missing filename sanitization on input received in the multipart Content-Disposition header. The upload handler trusts client-supplied filenames and omits canonicalization, traversal-character filtering, and allowlist validation against the resolved destination directory. This maps to [CWE-22] Improper Limitation of a Pathname to a Restricted Directory.

Attack Vector

The attack vector is network-based and requires low privileges. An attacker authenticates as a standard workspace user and submits a POST request to the Gerber upload endpoint. The multipart body contains a Content-Disposition header where the filename field encodes a traversal payload pointing to a target directory such as a webroot, application binary path, or configuration directory. The server writes attacker-supplied content to that path.

For full exploitation details, refer to the Altium Security Advisory. Public proof-of-concept code is not currently available.

Detection Methods for CVE-2026-9102

Indicators of Compromise

  • Multipart upload requests to ComparisonService Gerber endpoints containing ..\, ../, or URL-encoded traversal sequences in the Content-Disposition filename field
  • Newly created or modified files outside the configured temporary upload directory, particularly under web-accessible paths, application install directories, or service configuration directories
  • Unexpected executable files, scripts, or DLLs appearing in directories owned by the Altium Enterprise Server service account
  • Service binary or configuration file hashes deviating from known-good baselines after upload activity

Detection Strategies

  • Inspect HTTP request logs and reverse proxy logs for multipart uploads where the filename parameter contains traversal characters or absolute path indicators
  • Deploy file integrity monitoring on Altium Enterprise Server installation directories, webroots, and configuration paths
  • Correlate authenticated workspace user sessions with subsequent filesystem write events outside expected upload directories
  • Alert on process executions spawned from directories that should only contain uploaded user content

Monitoring Recommendations

  • Enable verbose logging on the ComparisonService upload endpoints and forward to a centralized logging platform
  • Monitor child process creation under the Altium Enterprise Server service account for anomalous executables
  • Track outbound network connections initiated by the service process to identify post-exploitation command and control activity

How to Mitigate CVE-2026-9102

Immediate Actions Required

  • Apply the vendor patch referenced in the Altium Security Advisory as soon as it is available for your deployment
  • Restrict access to the Altium Enterprise Server workspace to trusted users and enforce strong authentication for all accounts
  • Audit existing workspace user accounts and disable accounts that are unused or no longer required
  • Review the filesystem for unauthorized files written outside expected upload directories since the service was deployed

Patch Information

Altium has published guidance through its security advisory portal. Consult the Altium Security Advisory for the current fixed version, patch identifiers, and upgrade instructions specific to your Enterprise Server release.

Workarounds

  • Place the Altium Enterprise Server behind a web application firewall configured to block multipart requests containing traversal sequences in Content-Disposition filename fields
  • Run the ComparisonService under a least-privileged service account with write access restricted to required directories only
  • Enforce filesystem ACLs that deny the service account write permission to webroots, binary paths, and configuration directories where feasible
  • Temporarily disable the Gerber upload functionality if business operations permit until a patched version is deployed
bash
# Configuration example: WAF rule pattern to block traversal in multipart filenames
# Match Content-Disposition filename values containing traversal sequences
SecRule REQUEST_HEADERS:Content-Disposition "@rx filename=[^;]*(\.\./|\.\.\\|%2e%2e%2f|%2e%2e/)" \
    "id:1009102,phase:2,deny,status:400,log,msg:'CVE-2026-9102 path traversal attempt in upload filename'"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechAltium Enterprise Server

  • SeverityCRITICAL

  • CVSS Score9.4

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • Altium Security Advisory
  • Related CVEs
  • CVE-2025-27380: Altium Enterprise Server XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English