A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2018-25421

CVE-2018-25421: Open STA Manager Path Traversal Flaw

CVE-2018-25421 is a path traversal vulnerability in Open STA Manager 2.3 that lets authenticated attackers download arbitrary files. This article covers the technical details, affected versions, impact, and mitigation.

Published: June 4, 2026

CVE-2018-25421 Overview

CVE-2018-25421 is a path traversal vulnerability in Open STA Manager (OpenStamanager) 2.3. The flaw resides in modules/backup/actions.php, where the file parameter passed alongside op=getfile is not validated against directory traversal sequences. Authenticated users can send crafted GET requests containing ../ sequences to read arbitrary files from the underlying server filesystem. The vulnerability is tracked under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory).

Critical Impact

Authenticated attackers can download arbitrary files from the host filesystem, exposing configuration files, credentials, and sensitive business data managed by OpenStamanager.

Affected Products

  • OpenStamanager 2.3
  • Web-based business management deployments using the affected backup module
  • Self-hosted installations sourced from the OpenStamanager Project Homepage and SourceForge distribution

Discovery Timeline

  • 2026-05-30 - CVE-2018-25421 published to NVD
  • 2026-06-01 - Last updated in NVD database
  • A public proof-of-concept is indexed as Exploit-DB #45693, and the issue is documented in the VulnCheck Advisory

Technical Details for CVE-2018-25421

Vulnerability Analysis

The vulnerability lives in the backup module endpoint modules/backup/actions.php. When the endpoint receives op=getfile, it reads the file query parameter and returns the requested file to the client. The application fails to canonicalize the path or restrict reads to the intended backup directory. An authenticated user can substitute the expected backup filename with a traversal payload to climb outside the backup root and reach files anywhere the PHP process can read.

Because the read happens server-side and the response streams file contents directly to the requester, the bug functions as an arbitrary file download primitive. Successful exploitation does not require chaining with another flaw; a single GET request returns the targeted file.

Root Cause

The root cause is missing input validation on the file parameter. The handler concatenates user input into a filesystem path without rejecting ../ sequences, absolute paths, or null-byte tricks, and without enforcing an allow-list of legitimate backup filenames. This is a textbook CWE-22 defect.

Attack Vector

Exploitation requires network access to the OpenStamanager web interface and a valid authenticated session. The attacker issues a GET request to modules/backup/actions.php?op=getfile&file= followed by a traversal sequence pointing at a target such as ../../config.inc.php or system files readable by the web server. The server responds with the raw file contents. Targets of interest include OpenStamanager configuration files containing database credentials, web server configuration, and operating system files such as /etc/passwd. Technical reproduction steps are available in the Exploit-DB entry.

Detection Methods for CVE-2018-25421

Indicators of Compromise

  • HTTP access log entries containing the substring modules/backup/actions.php combined with op=getfile and any ../ or URL-encoded %2e%2e%2f sequence in the file parameter
  • Requests to the getfile action where the file value references paths outside the backup directory or known system files such as config.inc.php, /etc/passwd, or .env
  • Unexpected outbound data volume from the OpenStamanager host correlated with authenticated sessions

Detection Strategies

  • Inspect web server and application logs for op=getfile requests and alert on any file parameter containing .., %2e, backslashes, or absolute path prefixes
  • Deploy a web application firewall rule that blocks path traversal patterns against the /modules/backup/actions.php endpoint
  • Correlate authentication events with file download activity to surface low-privilege accounts pulling large volumes of files

Monitoring Recommendations

  • Forward OpenStamanager and reverse-proxy access logs to a centralized SIEM or data lake for retention and pattern matching
  • Track read access to OpenStamanager configuration files and PHP source files at the host filesystem level using file integrity monitoring
  • Alert on authenticated sessions issuing repeated getfile requests in short windows, which indicates automated enumeration

How to Mitigate CVE-2018-25421

Immediate Actions Required

  • Upgrade OpenStamanager to a version later than 2.3 that addresses the traversal in modules/backup/actions.php
  • Restrict access to the OpenStamanager web interface to trusted networks or VPN users until patching is complete
  • Audit account inventory and disable unused or shared accounts that could be abused to reach the authenticated endpoint
  • Review web server logs for prior exploitation attempts targeting the getfile action

Patch Information

Review the OpenStamanager Project Homepage and the SourceForge download page for the latest release. Apply the most recent stable version and validate that modules/backup/actions.php canonicalizes user-supplied filenames and constrains reads to the backup directory. Additional technical context is available in the VulnCheck Advisory.

Workarounds

  • Block requests containing .., %2e%2e, or absolute paths in the file query parameter at the reverse proxy or WAF
  • Deny external access to /modules/backup/ at the web server layer and limit it to administrative source IP addresses
  • Reduce filesystem exposure by running the PHP-FPM or web server worker under a least-privilege account that cannot read sensitive system files
bash
# Example nginx rule blocking traversal against the vulnerable endpoint
location ~* /modules/backup/actions\.php$ {
    if ($arg_file ~* "(\.\./|%2e%2e|^/)") {
        return 403;
    }
    # Optional: restrict to admin networks
    allow 10.0.0.0/8;
    deny all;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOpen Sta Manager

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • OpenStamanager Project Homepage

  • OpenStamanager Latest Download

  • Exploit-DB #45693

  • VulnCheck Advisory: Open Sta Manager Path Traversal
  • Latest CVEs
  • CVE-2026-49199: Acer Predator Connect W6x Firmware RCE Flaw

  • CVE-2026-46344: Openquantumsafe Liboqs DOS Vulnerability

  • CVE-2026-44518: Openquantumsafe Liboqs DoS Vulnerability

  • CVE-2026-42951: MacGregor VDR Information Disclosure Flaw
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