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

CVE-2026-6410: Fastify Static Path Traversal Vulnerability

CVE-2026-6410 is a path traversal flaw in @fastify/static that allows unauthenticated attackers to access directory listings outside the configured root. This article covers technical details, affected versions, and mitigation.

Published: April 16, 2026

CVE-2026-6410 Overview

A path traversal vulnerability exists in @fastify/static versions 8.0.0 through 9.1.0 that allows remote unauthenticated attackers to obtain directory listings for arbitrary directories when the directory listing feature is enabled. The vulnerability stems from the dirList.path() function which resolves directories outside the configured static root using path.join() without proper containment checks.

Critical Impact

Remote unauthenticated attackers can enumerate directory structures and file names accessible to the Node.js process, potentially exposing sensitive application architecture and file naming conventions.

Affected Products

  • @fastify/static versions 8.0.0 through 8.x
  • @fastify/static versions 9.0.0 through 9.1.0
  • Node.js applications using affected @fastify/static versions with directory listing enabled

Discovery Timeline

  • 2026-04-16 - CVE CVE-2026-6410 published to NVD
  • 2026-04-16 - Last updated in NVD database

Technical Details for CVE-2026-6410

Vulnerability Analysis

This path traversal vulnerability (CWE-22) affects the @fastify/static plugin for the Fastify web framework when directory listing is explicitly enabled via the list configuration option. The vulnerability allows attackers to traverse outside the intended static file directory and enumerate the contents of other directories accessible to the Node.js process.

The attack can be executed remotely over the network without authentication and requires no user interaction. While the vulnerability only exposes directory and file names (not file contents), this information disclosure can be leveraged for reconnaissance purposes to identify sensitive files, understand application structure, or locate additional attack surfaces.

Root Cause

The root cause lies in the dirList.path() function which uses Node.js path.join() to construct directory paths without implementing a containment check to ensure the resolved path remains within the configured static root directory. When user-supplied path segments containing directory traversal sequences (such as ../) are processed, the path.join() function resolves them to paths outside the intended root, and no subsequent validation prevents the directory listing from being returned.

Attack Vector

The attack vector is network-based and requires the target application to have directory listing enabled via the list option in the @fastify/static plugin configuration. An attacker can craft HTTP requests containing path traversal sequences to access directory listings outside the static root. The attack requires no privileges or authentication and can be executed without any user interaction.

A malicious request might target URLs like /static/../../../etc/ or similar paths depending on the application's route configuration. The server responds with a directory listing of the traversed path, exposing directory and file names to the attacker. While file contents cannot be retrieved through this vulnerability, the exposed metadata can facilitate further attacks.

Detection Methods for CVE-2026-6410

Indicators of Compromise

  • HTTP requests to static file endpoints containing path traversal sequences such as ../, ..%2f, or ..%5c
  • Unusual patterns in web server access logs showing repeated attempts to access parent directories
  • Requests targeting system directories like /etc/, /var/, or application configuration directories
  • Error responses or unexpected directory listings returned for non-standard paths

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in request URLs
  • Monitor application logs for requests containing encoded or decoded directory traversal sequences
  • Deploy intrusion detection systems (IDS) with signatures for path traversal attack patterns
  • Review access logs for reconnaissance-style behavior targeting directory structures

Monitoring Recommendations

  • Enable detailed access logging for all Fastify static file routes
  • Configure alerting for requests containing .. sequences in URL paths
  • Monitor for unusual spikes in 4xx/5xx responses on static file endpoints
  • Implement rate limiting on static file routes to slow reconnaissance attempts

How to Mitigate CVE-2026-6410

Immediate Actions Required

  • Upgrade @fastify/static to version 9.1.1 or later immediately
  • Audit application configurations to identify instances where directory listing is enabled
  • If directory listing is not required, disable it by removing the list option from plugin configuration
  • Review access logs to determine if the vulnerability has been exploited

Patch Information

The vulnerability is resolved in @fastify/static version 9.1.1. Organizations should update their dependencies using their package manager. For npm users, run npm update @fastify/static to obtain the latest patched version. Verify the installed version with npm list @fastify/static to confirm remediation.

For additional details, refer to the GitHub Security Advisory GHSA-pr96-94w5-mx2h and the OpenJS Foundation Security Advisories.

Workarounds

  • Disable directory listing entirely by removing the list option from the @fastify/static plugin configuration
  • Implement a reverse proxy with path validation rules to filter malicious requests before they reach the application
  • Deploy a web application firewall to block requests containing path traversal sequences
  • Restrict the Node.js process permissions to limit accessible directories
bash
# Package update commands for remediation
# Update @fastify/static to patched version
npm update @fastify/static

# Verify installed version
npm list @fastify/static

# For yarn users
yarn upgrade @fastify/static

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechFastify

  • SeverityMEDIUM

  • CVSS Score5.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • OpenJS Foundation Security Advisories

  • GitHub Security Advisory GHSA-pr96-94w5-mx2h
  • Related CVEs
  • CVE-2026-33804: Fastify Middie Auth Bypass Vulnerability

  • CVE-2026-6414: Fastify Static Auth Bypass Vulnerability

  • CVE-2026-33805: Fastify Information Disclosure Vulnerability

  • CVE-2026-33806: Fastify 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