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

CVE-2025-41368: Smallsrv Path Traversal Vulnerability

CVE-2025-41368 is a path traversal flaw in Smallsrv Small Http Server v3.06.36 that allows authenticated attackers to bypass SecurityManager restrictions and access files outside the document root. This post covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2025-41368 Overview

CVE-2025-41368 is an authenticated path traversal vulnerability affecting Small HTTP Server v3.06.36. This security flaw allows remote authenticated users to bypass the SecurityManager's intended restrictions and access arbitrary files outside the configured document root. By manipulating the root path (/), attackers with valid credentials can read sensitive files on the server that should otherwise be protected.

Critical Impact

Authenticated attackers can bypass access controls to read arbitrary files outside the web root, potentially exposing sensitive configuration files, credentials, and system data.

Affected Products

  • Smallsrv Small HTTP Server v3.06.36
  • Small HTTP Server versions prior to security patch

Discovery Timeline

  • March 26, 2026 - CVE-2025-41368 published to NVD
  • March 26, 2026 - Last updated in NVD database

Technical Details for CVE-2025-41368

Vulnerability Analysis

This path traversal vulnerability (CWE-22) exists in the Small HTTP Server's request handling mechanism. The server fails to properly sanitize user-supplied input when processing file path requests through the root endpoint. Although the SecurityManager component is designed to restrict file access to the configured document root, authenticated users can craft malicious requests that traverse outside this boundary.

The vulnerability requires authentication, meaning only users with valid credentials can exploit it. However, once authenticated, an attacker can potentially access any file readable by the web server process, including configuration files, application source code, database credentials, and other sensitive system files.

Root Cause

The root cause lies in insufficient input validation and path canonicalization when processing requests through the / endpoint. The SecurityManager's access control checks do not adequately prevent directory traversal sequences (such as ../) from escaping the document root. This allows authenticated users to construct request paths that resolve to locations outside the intended web directory.

Attack Vector

The attack is network-based and requires low complexity to execute. An attacker must first authenticate to the Small HTTP Server, then craft HTTP requests containing path traversal sequences. By sending requests with specially crafted paths through the root endpoint, the attacker can read arbitrary files from the underlying system, limited only by the file system permissions of the web server process.

The vulnerability allows access to files outside the document root when an attacker includes directory traversal sequences in their HTTP requests. For example, requests targeting parent directory paths can escape the configured web root and access sensitive system files such as /etc/passwd on Linux systems or configuration files on Windows systems. See the INCIBE Security Notice for technical details.

Detection Methods for CVE-2025-41368

Indicators of Compromise

  • HTTP access logs showing requests containing ../ or ..%2f sequences from authenticated users
  • Unusual file access patterns in server logs indicating access to files outside the document root
  • Multiple sequential requests targeting sensitive system paths such as /etc/passwd, /etc/shadow, or Windows configuration files

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in HTTP requests
  • Monitor HTTP request logs for directory traversal sequences including encoded variants (%2e%2e%2f, ..%5c)
  • Configure intrusion detection systems (IDS) to alert on requests containing path traversal indicators
  • Review authentication logs for accounts making suspicious file access requests

Monitoring Recommendations

  • Enable verbose logging on the Small HTTP Server to capture full request paths
  • Set up alerting for any 200 OK responses to requests containing traversal patterns
  • Monitor file system access logs for the web server process accessing files outside the document root
  • Implement real-time log analysis to correlate authentication events with suspicious file access attempts

How to Mitigate CVE-2025-41368

Immediate Actions Required

  • Restrict network access to the Small HTTP Server to trusted IP addresses only
  • Implement additional authentication controls and review user account privileges
  • Deploy a web application firewall (WAF) with rules to block path traversal attempts
  • Consider taking the server offline or replacing it with a more secure alternative until a patch is available

Patch Information

Consult the vendor for patch availability. Review the INCIBE Security Notice for the latest information on updates and remediation guidance. If no patch is available, consider migrating to an alternative HTTP server solution.

Workarounds

  • Configure external access controls (firewall rules) to limit who can reach the server
  • Implement a reverse proxy with path validation to filter malicious requests before they reach the vulnerable server
  • Restrict the web server process to run with minimal filesystem permissions
  • Monitor and audit all authenticated user access for suspicious activity
bash
# Example: Block path traversal patterns using iptables string matching
iptables -A INPUT -p tcp --dport 80 -m string --string "../" --algo bm -j DROP
iptables -A INPUT -p tcp --dport 80 -m string --string "..%2f" --algo bm -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/TechSmallsrv

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • INCIBE Security Notice
  • Related CVEs
  • CVE-2025-41359: Smallsrv Small Http Server RCE Vulnerability
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