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

CVE-2026-34763: Rack Information Disclosure Vulnerability

CVE-2026-34763 is an information disclosure flaw in Rack that exposes filesystem paths in directory listings when regex metacharacters are present. This article covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-34763 Overview

CVE-2026-34763 is an information disclosure vulnerability in Rack, the modular Ruby web server interface. The vulnerability exists in the Rack::Directory component, which improperly interpolates the configured root path directly into a regular expression when deriving the displayed directory path. When the root path contains regex metacharacters such as +, *, or ., the prefix stripping mechanism can fail, causing the generated directory listing to expose the full filesystem path in the HTML output.

Critical Impact

Attackers can leverage this vulnerability to discover sensitive filesystem paths in deployed Ruby web applications, potentially revealing internal directory structures, deployment paths, and server configurations that could facilitate further attacks.

Affected Products

  • Rack versions prior to 2.2.23
  • Rack versions prior to 3.1.21
  • Rack versions prior to 3.2.6

Discovery Timeline

  • 2026-04-02 - CVE CVE-2026-34763 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-34763

Vulnerability Analysis

This vulnerability falls under CWE-625: Permissive Regular Expression. The core issue stems from how Rack::Directory processes the configured root path when generating directory listings for end users.

When a developer configures Rack::Directory with a root path that contains characters with special meaning in regular expressions (metacharacters), the component fails to properly escape these characters before using them in pattern matching operations. This design flaw causes the regex-based prefix stripping to malfunction.

The practical impact is that when the prefix stripping fails, the full internal filesystem path is exposed in the HTML output rendered to users. This information leakage can reveal sensitive details about the server's directory structure, deployment paths, and potentially usernames or application names embedded in file paths.

Root Cause

The root cause is the direct interpolation of user-configurable root paths into regular expressions without proper escaping. The Rack::Directory component constructs a regex pattern to strip the root path prefix from directory listings, but fails to escape regex metacharacters (+, *, ., ?, [, ], (, ), {, }, |, ^, $, \) present in the path string.

For example, if the root path is configured as /var/www/app+v2/public, the + character is interpreted as a regex quantifier meaning "one or more of the preceding character" rather than a literal plus sign. This causes the pattern match to fail unexpectedly, preventing proper path prefix removal.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker simply needs to access the directory listing functionality of a vulnerable Rack application where the root path contains regex metacharacters.

The vulnerability is exploited passively - the attacker does not need to craft a special payload. Simply requesting a directory listing from an application with a misconfigured root path will expose the full filesystem path in the response. This information disclosure can be leveraged for reconnaissance, potentially revealing:

  • Internal server paths and directory structures
  • Application deployment locations
  • Username or organization names in paths
  • Environment indicators (development, staging, production)

Detection Methods for CVE-2026-34763

Indicators of Compromise

  • HTTP responses from directory listing endpoints containing unexpected full filesystem paths
  • Directory listing HTML output showing paths like /home/username/apps/... or /var/www/production+v2/... instead of relative paths
  • Error logs indicating regex pattern matching failures in Rack::Directory operations

Detection Strategies

  • Review Rack application configurations for Rack::Directory usage with root paths containing regex metacharacters (+, *, ., ?, [, ], etc.)
  • Implement web application firewall rules to detect and alert on responses containing common filesystem path patterns
  • Conduct security audits of Ruby web applications to identify exposed directory listing endpoints

Monitoring Recommendations

  • Monitor HTTP responses for filesystem path disclosure patterns in directory listing pages
  • Set up alerts for error conditions in Rack middleware components
  • Regularly audit application configurations for sensitive path exposure risks

How to Mitigate CVE-2026-34763

Immediate Actions Required

  • Upgrade Rack to patched versions: 2.2.23, 3.1.21, or 3.2.6 depending on your current version branch
  • Review and audit any Rack::Directory configurations for root paths containing regex metacharacters
  • Consider temporarily disabling directory listing functionality until patches can be applied

Patch Information

The vulnerability has been patched in Rack versions 2.2.23, 3.1.21, and 3.2.6. The fix properly escapes regex metacharacters in the root path before using it in pattern matching operations. Organizations should update to the appropriate patched version based on their current Rack version branch.

For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Avoid using root paths containing regex metacharacters (+, *, ., ?, [, ], (, ), {, }, |, ^, $, \) in Rack::Directory configurations
  • Implement a reverse proxy or web server in front of the Rack application to handle static file serving instead of using Rack::Directory
  • If directory listing must be used, manually escape special characters in the configured root path or use symlinks to create paths without metacharacters
bash
# Example: Update Rack gem to patched version
bundle update rack --conservative

# Or specify exact version in Gemfile
# gem 'rack', '>= 3.2.6'  # For Rack 3.2.x users
# gem 'rack', '>= 3.1.21' # For Rack 3.1.x users
# gem 'rack', '>= 2.2.23' # For Rack 2.2.x users

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRack

  • 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-625
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34785: Rack Information Disclosure Vulnerability

  • CVE-2026-39324: Rack::Session Auth Bypass Vulnerability

  • CVE-2026-34835: Rack Auth Bypass Vulnerability

  • CVE-2026-34827: Rack Multipart Parser DoS 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