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
    • 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-33528

CVE-2026-33528: GoDoxy Path Traversal Vulnerability

CVE-2026-33528 is a path traversal vulnerability in GoDoxy that allows authenticated attackers to access sensitive files like TLS keys and OAuth tokens. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33528 Overview

GoDoxy, a reverse proxy and container orchestrator for self-hosters, contains a path traversal vulnerability in its file content API endpoint. Prior to version 0.27.5, the /api/v1/file/content endpoint fails to properly sanitize the filename query parameter, allowing authenticated attackers to traverse directory boundaries and access files outside the intended config/ directory.

Critical Impact

An authenticated attacker can leverage ../ sequences to read or write arbitrary files accessible to the container's UID, including TLS private keys, OAuth refresh tokens, and other sensitive configuration data.

Affected Products

  • GoDoxy versions prior to 0.27.5
  • Self-hosted deployments using GoDoxy's file content API
  • Container environments running vulnerable GoDoxy instances

Discovery Timeline

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

Technical Details for CVE-2026-33528

Vulnerability Analysis

This path traversal vulnerability (CWE-22) exists in the file content API endpoint at /api/v1/file/content. The vulnerability stems from insufficient input validation on the filename query parameter. When processing file requests, the application passes the user-supplied filename directly to path.Join(common.ConfigBasePath, filename) where ConfigBasePath is set to "config" as a relative path.

The only validation applied to the filename parameter is a check that the field is non-empty via the binding:"required" constraint. This minimal validation fails to prevent directory traversal sequences, allowing attackers to escape the intended config/ directory and access files elsewhere in the filesystem.

Root Cause

The root cause is the absence of path sanitization or validation logic on user-supplied input before file operations. The application trusts the filename parameter without checking for directory traversal sequences such as ../. The use of a relative path for ConfigBasePath rather than an absolute path compounds the issue, as path.Join() in Go does not prevent traversal when the base path is relative.

Attack Vector

The attack is network-based and requires authentication to the GoDoxy API. An attacker with valid credentials can craft malicious requests to the /api/v1/file/content endpoint using ../ sequences in the filename parameter. This allows reading sensitive files such as TLS private keys and OAuth refresh tokens, or potentially writing malicious content to files accessible by the container's UID.

go
// Security patch from internal/api/v1/file/get.go
// fix(api/file): prevent path traversal in file API
 package fileapi
 
 import (
+	"io"
 	"net/http"
 	"os"
 	"path"

Source: GitHub Commit Update

Detection Methods for CVE-2026-33528

Indicators of Compromise

  • HTTP requests to /api/v1/file/content containing ../ sequences in the filename parameter
  • Unusual file access patterns from the GoDoxy container process
  • Access attempts to files outside the config/ directory such as /etc/passwd, TLS key files, or OAuth token stores
  • Anomalous authenticated API activity targeting file content endpoints

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns (../, ..%2f, ..%252f) in API requests
  • Monitor GoDoxy API logs for requests to /api/v1/file/content with suspicious filename values
  • Deploy file integrity monitoring on sensitive files that may be targeted through this vulnerability
  • Enable audit logging for all file access operations within the container environment

Monitoring Recommendations

  • Configure alerting for any authenticated requests containing directory traversal sequences
  • Monitor container filesystem access patterns for reads outside expected directories
  • Review API access logs regularly for anomalous patterns targeting file endpoints
  • Implement real-time detection for access attempts to sensitive files like TLS keys and OAuth tokens

How to Mitigate CVE-2026-33528

Immediate Actions Required

  • Upgrade GoDoxy to version 0.27.5 or later immediately
  • Review API access logs for any evidence of exploitation attempts prior to patching
  • Rotate any TLS private keys and OAuth refresh tokens that may have been exposed
  • Audit file permissions within the container to minimize the attack surface

Patch Information

Version 0.27.5 of GoDoxy addresses this vulnerability by implementing proper path validation in the file content API. The fix is available in the GitHub Release v0.27.5. For detailed technical information about the vulnerability and remediation, refer to the GitHub Security Advisory GHSA-4753.

Workarounds

  • Restrict network access to the GoDoxy API endpoint using firewall rules or network segmentation
  • Implement a reverse proxy with path traversal filtering in front of GoDoxy
  • Limit the container's filesystem access using read-only mounts where possible
  • Enforce strict authentication and authorization controls to minimize the number of users who can access the file API
bash
# Configuration example - Restrict API access via iptables
# Allow only trusted IP ranges to access GoDoxy API
iptables -A INPUT -p tcp --dport 8080 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -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/TechGodoxy

  • SeverityMEDIUM

  • CVSS Score6.5

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

  • GitHub Release v0.27.5

  • GitHub Security Advisory GHSA-4753
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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