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

CVE-2025-67487: Static Web Server Path Traversal Flaw

CVE-2025-67487 is a path traversal vulnerability in Static Web Server allowing symlinks to escape the web root directory. Attackers can access unauthorized files. This article covers technical details, affected versions, and patches.

Published: April 22, 2026

CVE-2025-67487 Overview

Static Web Server (SWS) is a production-ready web server designed for serving static web files and assets. A symlink path traversal vulnerability has been identified in versions 2.40.0 and below that allows attackers to access files or directories outside the intended web root folder. The vulnerability stems from SWS not preventing symbolic links from escaping the web server's root directory, enabling unauthorized file access through crafted URL requests or directory listings.

Critical Impact

Attackers with access to the web server's root directory can create symlinks to access sensitive files outside the designated web root, potentially exposing configuration files, credentials, or other sensitive data on the host system.

Affected Products

  • Static Web Server (SWS) versions 2.40.0 and below
  • Static-web-server static_web_server (Rust crate)

Discovery Timeline

  • 2025-12-09 - CVE CVE-2025-67487 published to NVD
  • 2025-12-11 - Last updated in NVD database

Technical Details for CVE-2025-67487

Vulnerability Analysis

This vulnerability is classified under CWE-61 (UNIX Symbolic Link Following) and CWE-59 (Improper Link Resolution Before File Access). The core issue lies in how Static Web Server handles symbolic links within its web root directory. When serving static content, SWS follows symlinks without validating whether the target path remains within the configured web root boundary, creating a path traversal condition.

An attacker who can write files to the web root (either through a separate vulnerability, misconfiguration, or legitimate access) can craft symbolic links pointing to sensitive files elsewhere on the filesystem. These linked files become accessible via HTTP requests or through the directory listing feature, effectively bypassing the web root containment.

Root Cause

The root cause is improper link resolution before file access (CWE-59). Static Web Server fails to implement proper symlink validation that would verify the resolved path remains within the web root boundary. The server follows symbolic links without checking if the ultimate target escapes the designated serving directory, allowing unrestricted filesystem traversal through crafted symlinks.

Attack Vector

The attack vector is network-based, requiring the attacker to either have write access to the web root directory or exploit another vulnerability to create symbolic links. Once a malicious symlink is in place, any remote user can access the linked files through standard HTTP requests.

The exploitation process involves:

  1. Gaining write access to the web server's root directory
  2. Creating a symbolic link pointing to a target file or directory outside the web root (e.g., /etc/passwd, configuration files, or application data)
  3. Accessing the symlink via URL or discovering it through directory listing
  4. Retrieving sensitive file contents through the web server's HTTP response

For example, an attacker could create a symlink like ln -s /etc/passwd ./exposed within the web root, making the system password file accessible via HTTP request.

Detection Methods for CVE-2025-67487

Indicators of Compromise

  • Presence of symbolic links in the web root directory pointing to locations outside the web root
  • Unusual file access patterns in web server logs showing requests for sensitive system paths
  • HTTP requests containing path patterns that correspond to system files (e.g., requests returning content matching /etc/passwd format)
  • Newly created symlinks in web-accessible directories, especially those created by non-administrative users

Detection Strategies

  • Implement file integrity monitoring on the web root directory to detect new symlink creation
  • Configure web application firewalls to detect and block requests for known sensitive file patterns
  • Review web server access logs for requests that return content inconsistent with expected static assets
  • Scan web root directories periodically for symbolic links using find -type l and validate their targets

Monitoring Recommendations

  • Enable enhanced logging on Static Web Server to capture all file access requests
  • Monitor filesystem events in the web root directory for symlink creation operations
  • Set up alerts for any symlink targets that resolve outside the designated web root path
  • Implement continuous security scanning of web-accessible directories for unauthorized symlinks

How to Mitigate CVE-2025-67487

Immediate Actions Required

  • Upgrade Static Web Server to version 2.40.1 or later immediately
  • Audit existing web root directories for any symbolic links and remove unauthorized ones
  • Restrict write access to the web root directory to only essential administrative accounts
  • Review server logs for any evidence of exploitation or suspicious file access patterns

Patch Information

The vulnerability is fixed in Static Web Server version 2.40.1. The patch implements proper symlink validation to prevent links from escaping the web root directory. The fix is available in commit 308f0d26ceb9c2c8bd219315d0f53914763357f2. For detailed information, refer to the GitHub Security Advisory GHSA-459f-x8vq-xjjm and the commit containing the fix.

Workarounds

  • Remove or disable directory listing functionality if not required to reduce attack surface
  • Implement filesystem-level restrictions using mount options like nosymfollow where supported
  • Use a reverse proxy in front of Static Web Server that validates and sanitizes request paths
  • Apply strict file permissions and ownership on the web root to prevent unauthorized symlink creation
  • Consider containerizing the web server with read-only filesystem mounts for the web root
bash
# Find and audit symbolic links in web root directory
find /path/to/webroot -type l -exec ls -la {} \;

# Identify symlinks pointing outside web root
find /path/to/webroot -type l -exec readlink -f {} \; | grep -v "^/path/to/webroot"

# Remove unauthorized symlinks (review before executing)
# find /path/to/webroot -type l -delete

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechStatic Web Server

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.08%

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

  • CWE-59
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-459f-x8vq-xjjm
  • Related CVEs
  • CVE-2026-27480: Static Web Server Auth Bypass 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