The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-41211

CVE-2026-41211: Voidzero Vite+ Path Traversal Vulnerability

CVE-2026-41211 is a path traversal vulnerability in Voidzero Vite+ that allows attackers to escape cache directories and manipulate files outside intended locations. This article covers technical details, affected versions, and mitigation.

Updated: May 14, 2026

CVE-2026-41211 Overview

CVE-2026-41211 is a path traversal vulnerability [CWE-22] in Vite+, a unified toolchain and entry point for web development from Voidzero. The flaw resides in the downloadPackageManager() function, which accepts an untrusted version string and uses it directly in filesystem paths. An attacker who controls the version value can supply ../ segments or an absolute path to escape the VP_HOME/package_manager/<pm>/ cache root. This allows Vite+ to delete, replace, and populate directories outside the intended cache location. Versions prior to 0.1.17 are affected, and version 0.1.17 contains the patch.

Critical Impact

Local attackers can manipulate filesystem paths through unsanitized version input, leading to arbitrary directory deletion, replacement, and content injection outside the intended cache scope.

Affected Products

  • Voidzero Vite+ versions prior to 0.1.17
  • Node.js-based deployments of Vite+ toolchain
  • Development environments using Vite+ package manager download functionality

Discovery Timeline

  • 2026-04-23 - CVE-2026-41211 published to NVD
  • 2026-04-29 - Last updated in NVD database

Technical Details for CVE-2026-41211

Vulnerability Analysis

The vulnerability stems from improper neutralization of path elements in the downloadPackageManager() function within Vite+. The function receives a version string from caller-controlled input and concatenates it into a filesystem path without sanitization or validation. The intended target directory is VP_HOME/package_manager/<pm>/, which serves as a cache root for downloaded package managers.

Because the version parameter is appended directly to this path, attackers can inject directory traversal sequences such as ../ or supply absolute paths. The resulting path escapes the cache root entirely. Vite+ then performs destructive filesystem operations on the resolved location, including directory deletion, replacement, and population with downloaded content.

The attack vector is local, meaning the attacker must have a means to influence the version argument passed to the vulnerable function. The integrity and availability impact on the affected system are high, while confidentiality is not directly affected.

Root Cause

The root cause is missing input validation on the version parameter consumed by downloadPackageManager(). The function trusts caller-supplied data and uses string concatenation to build filesystem paths. There is no canonicalization step to verify the resolved path remains within VP_HOME/package_manager/<pm>/.

Attack Vector

An attacker influences the version string passed into downloadPackageManager(). By supplying values containing ../../../../etc or an absolute path such as /etc/vite-config, the attacker redirects Vite+ filesystem operations to arbitrary locations. Vite+ then deletes the targeted directory, recreates it, and populates it with downloaded package manager artifacts. This can overwrite configuration files, corrupt application data, or stage malicious content for later execution by other processes. See the GitHub Security Advisory GHSA-33r3-4whc-44c2 for additional technical context.

Detection Methods for CVE-2026-41211

Indicators of Compromise

  • Unexpected directories created or deleted outside VP_HOME/package_manager/
  • Vite+ process performing filesystem writes to system directories or user configuration paths
  • Package manager binaries or archives appearing in unrelated filesystem locations
  • Log entries showing version strings containing ../ sequences or absolute paths

Detection Strategies

  • Audit Vite+ invocation contexts for caller-controlled version parameters reaching downloadPackageManager()
  • Monitor filesystem activity by the Vite+ process for writes outside the expected cache root
  • Inspect CI/CD pipeline logs and developer workstation telemetry for anomalous Vite+ directory operations
  • Compare installed Vite+ version against the patched release 0.1.17

Monitoring Recommendations

  • Enable filesystem auditing on directories adjacent to VP_HOME to capture unauthorized writes
  • Alert on Vite+ child processes deleting or recreating directories outside package_manager/
  • Track package manager download activity and correlate target paths against the expected cache root

How to Mitigate CVE-2026-41211

Immediate Actions Required

  • Upgrade Vite+ to version 0.1.17 or later on all developer workstations and build agents
  • Inventory CI/CD pipelines and identify any automation passing user-controlled version strings to Vite+
  • Review filesystem state under and adjacent to VP_HOME for evidence of unauthorized modification
  • Rotate any secrets or credentials stored in directories that may have been overwritten

Patch Information

Voidzero released the fix in Vite+ version 0.1.17. The patch sanitizes the version parameter consumed by downloadPackageManager() and prevents path traversal outside the cache root. Refer to the GitHub Security Advisory GHSA-33r3-4whc-44c2 for release details.

Workarounds

  • Restrict execution of Vite+ to trusted users and isolated build environments until upgrade is complete
  • Validate or hardcode the version argument supplied to Vite+ tooling rather than accepting external input
  • Run Vite+ under a least-privilege account to limit the scope of filesystem operations
bash
# Upgrade Vite+ to the patched release
npm install vite-plus@0.1.17

# Verify installed version
npm list vite-plus

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechVoidzero Vite

  • SeverityHIGH

  • CVSS Score8.4

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:H/SC:N/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
  • Vendor Resources
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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