Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-33529

CVE-2026-33529: Zoraxy Path Traversal Vulnerability

CVE-2026-33529 is a path traversal flaw in Zoraxy HTTP reverse proxy that allows authenticated users to write arbitrary files and potentially execute code. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33529 Overview

CVE-2026-33529 is an authenticated path traversal vulnerability (CWE-22) in Zoraxy, a general-purpose HTTP reverse proxy and forwarding tool. Prior to version 3.3.2, the configuration import endpoint fails to properly sanitize file paths within uploaded ZIP archives, allowing authenticated users to write arbitrary files outside the intended configuration directory. This vulnerability can be exploited to achieve Remote Code Execution (RCE) by creating malicious plugins.

Critical Impact

Authenticated attackers can leverage this path traversal vulnerability to write arbitrary files to the server filesystem, potentially achieving remote code execution through malicious plugin creation.

Affected Products

  • Zoraxy versions prior to 3.3.2

Discovery Timeline

  • 2026-03-26 - CVE-2026-33529 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33529

Vulnerability Analysis

This path traversal vulnerability exists in the configuration import functionality of Zoraxy. The vulnerability is classified under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as "Path Traversal" or "Directory Traversal."

The core issue lies in inadequate sanitization of filenames within ZIP archives during the configuration restore process. While the original code attempted to filter out path traversal sequences by replacing ../ with an empty string, this approach was insufficient to prevent all forms of path traversal attacks, particularly the "zip-slip" technique where specially crafted ZIP archives contain files with directory traversal sequences in their names.

An authenticated attacker could craft a malicious ZIP file containing filenames with path traversal sequences that bypass the simple string replacement. When the configuration import processes this ZIP file, the attacker-controlled files would be written outside the designated conf/ directory to arbitrary locations on the filesystem. The most impactful exploitation scenario involves creating a malicious plugin, which would then be executed by Zoraxy, leading to remote code execution.

Root Cause

The vulnerability stems from inadequate path sanitization in the config.go file. The original implementation used a simple string replacement to remove ../ sequences from filenames:

go
zipFile.Name = strings.ReplaceAll(zipFile.Name, "../", "")

This approach is fundamentally flawed for several reasons:

  1. It does not account for platform-specific path separators (e.g., ..\\ on Windows)
  2. It does not canonicalize paths before validation
  3. It does not verify that the resolved absolute path remains within the target directory

Attack Vector

The attack requires network access and authenticated privileges to the Zoraxy administrative interface. An attacker would:

  1. Authenticate to the Zoraxy web interface
  2. Craft a malicious ZIP archive containing files with path traversal sequences (zip-slip)
  3. Upload the malicious ZIP file through the configuration import endpoint
  4. The server processes the ZIP and writes files to attacker-controlled locations
  5. If the attacker creates a malicious plugin file, it will be loaded and executed by Zoraxy

The following patch demonstrates the security fix implemented in version 3.3.2:

go
		// Sanitize the file name to prevent path traversal (zip-slip)
		cleanedName := filepath.Clean(filepath.FromSlash(zipFile.Name))
		cleanedNameSlash := filepath.ToSlash(cleanedName)
		fmt.Println("Restoring: " + cleanedNameSlash)
		if cleanedNameSlash == "sys.db" {
			//Sysdb replacement. Close the database and restore
			sysdb.Close()
			restoreDatabase = true
		} else if !strings.HasPrefix(cleanedNameSlash, "conf/") {
			//Malformed zip file.
			http.Error(w, "Invalid zip file structure or version too old", http.StatusInternalServerError)
			return
		}

		// Resolve to absolute path and verify it stays within the target directory
		absTargetDir, _ := filepath.Abs(targetDir)
		absFilePath, _ := filepath.Abs(cleanedName)
		if cleanedNameSlash != "sys.db" && !strings.HasPrefix(absFilePath, absTargetDir+string(os.PathSeparator)) {
			http.Error(w, "Invalid file path in zip", http.StatusBadRequest)
			return
		}

Source: GitHub Commit 69ac755

Detection Methods for CVE-2026-33529

Indicators of Compromise

  • Unexpected files appearing outside the Zoraxy conf/ directory following configuration import operations
  • New or modified plugin files in the Zoraxy plugins directory that were not legitimately installed
  • Authentication logs showing configuration import activity followed by suspicious system behavior
  • Web server logs showing POST requests to the configuration import endpoint with unusually large payloads

Detection Strategies

  • Monitor filesystem changes in the Zoraxy installation directory and parent directories for unauthorized file creation
  • Implement file integrity monitoring on critical directories including the plugins folder
  • Review authentication and access logs for the Zoraxy administrative interface for suspicious import activity
  • Deploy web application firewall rules to inspect ZIP file uploads for path traversal sequences

Monitoring Recommendations

  • Enable detailed logging for all configuration import operations in Zoraxy
  • Set up alerts for any file writes outside the designated configuration directory
  • Monitor for new plugin registrations or unexpected plugin executions
  • Implement regular security audits of the Zoraxy installation directory structure

How to Mitigate CVE-2026-33529

Immediate Actions Required

  • Upgrade Zoraxy to version 3.3.2 or later immediately
  • Review Zoraxy access logs for any suspicious configuration import activity
  • Audit the filesystem for any unauthorized files that may have been created through exploitation
  • Restrict administrative access to the Zoraxy interface to trusted users only
  • Consider temporarily disabling the configuration import functionality until the patch is applied

Patch Information

The vulnerability has been patched in Zoraxy version 3.3.2. The fix implements proper path canonicalization using filepath.Clean and filepath.FromSlash, combined with absolute path resolution to verify that extracted files remain within the intended target directory.

For detailed information about the security fix, refer to:

  • GitHub Security Advisory GHSA-7pq3-326h-f8q9
  • GitHub Release v3.3.2
  • Security Patch Commit

Workarounds

  • Restrict access to the Zoraxy administrative interface using network-level controls (firewall rules, VPN)
  • Implement strong authentication and limit the number of users with configuration import privileges
  • Deploy a web application firewall to inspect and filter malicious ZIP uploads
  • Monitor and alert on any file creation events in the Zoraxy installation directory hierarchy
bash
# Example: Restrict access to Zoraxy admin interface via iptables
# Allow only trusted IP addresses to access the admin port
iptables -A INPUT -p tcp --dport 8000 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 8000 -j DROP

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechZoraxy

  • SeverityLOW

  • CVSS Score3.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Commit Changes

  • GitHub Release v3.3.2

  • GitHub Security Advisory GHSA-7pq3-326h-f8q9
  • Latest CVEs
  • CVE-2026-25874: LeRobot RCE Vulnerability

  • CVE-2026-41272: Flowise LLM Builder SSRF Vulnerability

  • CVE-2026-41268: Flowise RCE Vulnerability

  • CVE-2026-41265: Flowise Airtable Agent RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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