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-2025-67030

CVE-2025-67030: Plexus Utils Path Traversal Vulnerability

CVE-2025-67030 is a directory traversal flaw in plexus-utils that enables arbitrary code execution through the extractFile method. This article covers the technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2025-67030 Overview

CVE-2025-67030 is a Directory Traversal vulnerability in the extractFile method of org.codehaus.plexus.util.Expand in plexus-utils. This vulnerability exists in versions prior to commit 6d780b3378829318ba5c2d29547e0012d5b29642. When exploited, this flaw allows an attacker to execute arbitrary code by crafting malicious archive files that can write files outside of the intended extraction directory.

Critical Impact

This vulnerability enables arbitrary code execution through path traversal during archive extraction, potentially allowing attackers to overwrite critical system files or plant malicious executables in sensitive locations.

Affected Products

  • plexus-utils versions prior to commit 6d780b3378829318ba5c2d29547e0012d5b29642
  • Applications utilizing the org.codehaus.plexus.util.Expand class for archive extraction
  • Maven-based build systems that depend on vulnerable plexus-utils versions

Discovery Timeline

  • 2026-03-25 - CVE-2025-67030 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2025-67030

Vulnerability Analysis

The vulnerability resides in the extractFile method within the org.codehaus.plexus.util.Expand class of the plexus-utils library. This method is responsible for extracting files from archive formats but fails to properly validate and sanitize file paths contained within the archive. When processing archive entries, the method does not adequately check for directory traversal sequences such as ../ in file names.

This oversight allows a maliciously crafted archive to contain entries with path traversal sequences that, when extracted, write files to arbitrary locations on the filesystem outside of the intended destination directory. This classic "Zip Slip" style vulnerability is particularly dangerous in build systems and automated pipelines where archives from untrusted sources may be processed.

Root Cause

The root cause of this vulnerability is insufficient input validation in the extractFile method. The method accepts file paths from archive entries without properly canonicalizing or validating that the resulting extraction path remains within the designated target directory. The absence of path normalization checks allows relative path sequences to escape the extraction directory boundary.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious archive file (such as ZIP, TAR, or JAR) containing entries with directory traversal sequences in their file names. When a vulnerable application processes this archive using the affected extractFile method, files are written to locations outside the intended extraction directory. This can lead to:

  • Overwriting configuration files to modify application behavior
  • Placing malicious executables in startup directories for persistent access
  • Overwriting scripts or binaries that are subsequently executed with elevated privileges
  • Writing web shells to accessible web directories

The attack requires the victim to extract a malicious archive, which can be achieved through supply chain attacks, compromised dependencies, or social engineering.

Detection Methods for CVE-2025-67030

Indicators of Compromise

  • Presence of files in unexpected locations following archive extraction operations
  • Archive files containing entries with ../ or similar path traversal sequences
  • Unexpected file modifications in directories outside of normal extraction targets
  • Log entries indicating file operations in sensitive system directories during archive processing

Detection Strategies

  • Implement file integrity monitoring on critical system directories and configuration files
  • Monitor archive extraction operations for attempts to write outside designated directories
  • Scan incoming archive files for entries containing path traversal sequences before processing
  • Deploy application security monitoring to detect anomalous file system operations

Monitoring Recommendations

  • Enable detailed logging for all archive extraction operations in applications using plexus-utils
  • Configure security information and event management (SIEM) rules to alert on path traversal patterns
  • Implement behavioral analysis to detect unexpected file write operations during build processes
  • Monitor Maven build logs for unusual extraction activities or file placement warnings

How to Mitigate CVE-2025-67030

Immediate Actions Required

  • Update plexus-utils to a version containing commit 6d780b3378829318ba5c2d29547e0012d5b29642 or later
  • Audit applications and build systems for usage of the vulnerable org.codehaus.plexus.util.Expand class
  • Implement input validation for archive extraction operations as an additional defense layer
  • Review recent archive processing activities for signs of exploitation

Patch Information

The vulnerability has been addressed in the plexus-utils repository. The fix is available in commit 6d780b3378829318ba5c2d29547e0012d5b29642. Organizations should update their dependencies to include this fix. For detailed information about the patch and related discussions, refer to the GitHub Commit Log, GitHub Issue Discussion, and related pull requests #295 and #296.

Workarounds

  • Implement wrapper functions that validate extraction paths before calling the vulnerable method
  • Use alternative archive extraction libraries that include built-in path traversal protection
  • Pre-scan archive contents and reject any entries containing path traversal sequences
  • Restrict file system permissions for processes that perform archive extraction operations
  • Isolate archive extraction in sandboxed environments with limited file system access
bash
# Configuration example - Verify plexus-utils version in Maven dependencies
mvn dependency:tree | grep plexus-utils
# Update pom.xml to use patched version
# Check for transitive dependencies that may include vulnerable versions
mvn dependency:analyze -DignoreNonCompile

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechPlexus Utils

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.04%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • GitHub Gist Code Snippet

  • GitHub Commit Log

  • GitHub Issue Discussion

  • GitHub Pull Request #295

  • GitHub Pull Request #296
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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