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-32805

CVE-2026-32805: Romeo Path Traversal Vulnerability

CVE-2026-32805 is a path traversal flaw in Romeo, a Go code coverage tool, allowing attackers to write files outside intended directories via crafted tar archives. This post covers technical details, affected versions, and mitigations.

Published: March 20, 2026

CVE-2026-32805 Overview

CVE-2026-32805 is a path traversal vulnerability affecting Romeo, a code coverage tool designed to help measure code coverage for functional and integration tests within GitHub Actions for Go ≥1.20 applications. The vulnerability exists in the sanitizeArchivePath function located in webserver/api/v1/decoder.go (lines 80-88), which is vulnerable to a path traversal bypass due to a missing trailing path separator in the strings.HasPrefix check. This flaw allows a crafted tar archive to write files outside the intended destination directory.

Critical Impact

Attackers can exploit this path traversal vulnerability to write arbitrary files outside the intended extraction directory, potentially leading to code execution or system compromise through malicious file placement.

Affected Products

  • Romeo versions prior to 0.2.2
  • Go applications using Romeo for code coverage (Go ≥1.20)
  • GitHub Actions workflows utilizing vulnerable Romeo versions

Discovery Timeline

  • 2026-03-18 - CVE CVE-2026-32805 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-32805

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal), a common weakness where improper limitation of a pathname to a restricted directory allows attackers to access files outside the intended boundaries. The flaw exists because the sanitizeArchivePath function uses strings.HasPrefix to validate that the resolved file path remains within the designated destination directory, but fails to include a trailing path separator in the comparison.

Without the trailing separator, an attacker can craft archive entries with paths that share a common prefix with the destination directory but resolve to locations outside it. For example, if the destination is /tmp/extract, a malicious path like /tmp/extract_malicious/payload would pass the prefix check since it starts with /tmp/extract, but would write to an entirely different directory.

Root Cause

The root cause of this vulnerability is the incomplete path validation in the sanitizeArchivePath function. The original implementation checked if the resolved path started with the cleaned destination directory path, but did not append the OS-specific path separator before performing the prefix comparison. This oversight creates a classic "Zip Slip" vulnerability pattern where archive entries can escape the intended extraction directory.

Attack Vector

This vulnerability is exploitable over the network with low attack complexity and requires no authentication or user interaction. An attacker can craft a malicious tar or zip archive containing specially crafted file paths that bypass the sanitization check. When the Romeo application processes this archive, files can be written to arbitrary locations on the file system, potentially overwriting critical system files, injecting malicious code into application directories, or establishing persistence mechanisms.

go
// Vulnerable code (before fix):
func sanitizeArchivePath(d, t string) (v string, err error) {
	v = filepath.Join(d, t)
	if strings.HasPrefix(v, filepath.Clean(d)) {
		return v, nil
	}
	return "", &ErrPathTainted{
		Path: t,
	}
}

// Fixed code (after patch):
// Based upon https://security.snyk.io/research/zip-slip-vulnerability#expandable-socPI9fFAJ-title
func sanitizeArchivePath(destination, filePath string) (destpath string, err error) {
	destpath = filepath.Join(destination, filePath)
	if !strings.HasPrefix(destpath, filepath.Clean(destination)+string(os.PathSeparator)) {
		return destpath, &ErrPathTainted{
			Path: destination,
		}
	}
	return
}

Source: GitHub Commit c2ebcfb9f305fd5f6ef68858de82507dbac10263

Detection Methods for CVE-2026-32805

Indicators of Compromise

  • Unexpected files appearing outside designated extraction directories on systems running Romeo
  • Archive processing logs showing unusual or suspicious file paths with directory traversal patterns
  • New or modified files in sensitive system directories following archive extraction operations

Detection Strategies

  • Monitor file system activity during Romeo archive extraction operations for writes outside expected directories
  • Implement file integrity monitoring (FIM) on critical system directories to detect unauthorized modifications
  • Review application logs for path traversal attempts or ErrPathTainted errors indicating blocked exploitation attempts

Monitoring Recommendations

  • Enable verbose logging in Romeo deployments to capture archive extraction activities
  • Set up alerts for file creation events in parent directories of designated extraction paths
  • Monitor GitHub Actions workflow logs for anomalous Romeo behavior or unexpected file operations

How to Mitigate CVE-2026-32805

Immediate Actions Required

  • Upgrade Romeo to version 0.2.2 or later immediately to address this vulnerability
  • Audit systems running vulnerable Romeo versions for evidence of exploitation or unauthorized file modifications
  • Review any archives processed by vulnerable Romeo installations for malicious content

Patch Information

The vulnerability has been fixed in Romeo version 0.2.2. The patch adds the OS-specific path separator (string(os.PathSeparator)) to the destination path before performing the prefix check, ensuring that archive entries cannot escape the intended extraction directory. The fix can be reviewed in the GitHub commit c2ebcfb9f305fd5f6ef68858de82507dbac10263 and the security advisory is available at GHSA-p799-g7vv-f279.

Workarounds

  • If immediate patching is not possible, restrict network access to Romeo instances to trusted sources only
  • Validate all input archives before processing with Romeo using external archive inspection tools
  • Run Romeo in containerized or sandboxed environments to limit potential impact of exploitation
bash
# Upgrade Romeo to patched version
go get github.com/ctfer-io/romeo@v0.2.2

# Verify installed version
go list -m github.com/ctfer-io/romeo

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechRomeo

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:H/VA:H/SC:N/SI:L/SA:L/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
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-p799-g7vv-f279
  • Related CVEs
  • CVE-2026-32737: Romeo Privilege Escalation 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