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
    • 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-11965

CVE-2025-11965: Eclipse Vert.x Auth Bypass Vulnerability

CVE-2025-11965 is an authentication bypass flaw in Eclipse Vert.x that allows unauthorized access to hidden directories like .git. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 15, 2026

CVE-2025-11965 Overview

CVE-2025-11965 is a path traversal and access control bypass vulnerability in Eclipse Vert.x, a popular reactive toolkit for building applications on the JVM. The vulnerability exists in the StaticHandler component, where configuration designed to restrict access to hidden files fails to properly restrict access to hidden directories. This allows unauthorized users to retrieve sensitive files within hidden directories, such as .git/config, potentially exposing credentials, repository configurations, and other sensitive information.

Critical Impact

Unauthorized access to hidden directories can expose sensitive configuration files, credentials, and source code repository information to attackers, potentially leading to further compromise of development infrastructure and deployed applications.

Affected Products

  • Eclipse Vert.x versions 4.0.0 through 4.5.21
  • Eclipse Vert.x versions 5.0.0 through 5.0.4

Discovery Timeline

  • 2025-10-22 - CVE CVE-2025-11965 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2025-11965

Vulnerability Analysis

This vulnerability is classified under CWE-552 (Files or Directories Accessible to External Parties), which describes a condition where files or directories are accessible to unauthorized actors. The flaw resides in the StaticHandler component of Eclipse Vert.x, which is commonly used to serve static content in web applications built with the framework.

When developers configure the StaticHandler to block access to hidden files (files starting with a dot, such as .htaccess or .env), the implementation only enforces this restriction at the file level. Hidden directories, which also begin with a dot character, are not subject to the same access controls. This inconsistency allows attackers to craft requests that access files within hidden directories, even when hidden file access is explicitly disabled.

The vulnerability is exploitable over the network without requiring authentication or user interaction. The impact includes potential exposure of confidential configuration data and the ability to modify application behavior if write operations are also exposed.

Root Cause

The root cause of this vulnerability is an incomplete implementation of access control logic in the StaticHandler component. The code responsible for checking whether a requested resource is hidden only evaluates the final file component of the path, rather than checking all path segments for hidden directory indicators. This means that while a request for /.env would be blocked, a request for /.git/config would be permitted because config is not a hidden file, even though it resides within the hidden .git directory.

Attack Vector

The attack vector is network-based and can be exploited remotely by any unauthenticated user who can send HTTP requests to a vulnerable Vert.x application. An attacker would craft HTTP requests targeting hidden directories that commonly contain sensitive information.

Common targets for exploitation include:

  • .git/config - Contains repository configuration, potentially including remote URLs with credentials
  • .git/HEAD - Reveals the current branch reference
  • .svn/entries - Subversion repository metadata
  • .env files within hidden directories - Environment configuration with secrets

The exploitation is straightforward: an attacker simply needs to enumerate common hidden directory paths and request files within them. No special tools or complex exploitation chains are required.

Detection Methods for CVE-2025-11965

Indicators of Compromise

  • HTTP requests containing paths with hidden directory patterns (e.g., /.git/, /.svn/, /.hg/)
  • Unusual access patterns targeting configuration files within hidden directories
  • Successful HTTP responses (200 OK) for requests to hidden directory contents
  • Log entries showing access to files like .git/config, .git/HEAD, or .gitignore

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing hidden directory path patterns
  • Configure log analysis to alert on requests matching regex patterns like /\.[a-zA-Z]+/ in URL paths
  • Monitor for reconnaissance activity involving sequential requests to common hidden directory paths
  • Deploy intrusion detection signatures for known hidden directory enumeration tools

Monitoring Recommendations

  • Enable detailed access logging for all static content requests in Vert.x applications
  • Set up alerts for HTTP 200 responses to requests containing hidden directory paths
  • Review web server logs regularly for attempts to access .git, .svn, .hg, or similar directories
  • Implement file integrity monitoring on sensitive configuration files that may have been exposed

How to Mitigate CVE-2025-11965

Immediate Actions Required

  • Upgrade Eclipse Vert.x to version 4.5.22 or later for the 4.x branch, or version 5.0.5 or later for the 5.x branch
  • Audit application configurations to identify any StaticHandler instances serving directories that may contain hidden subdirectories
  • Review web server access logs for evidence of exploitation attempts or successful unauthorized access
  • Rotate any credentials that may have been exposed in hidden directory files such as .git/config

Patch Information

Eclipse has released patched versions that properly enforce hidden file restrictions on hidden directories as well. Organizations should upgrade to Eclipse Vert.x 4.5.22 or later for the 4.x series, or 5.0.5 or later for the 5.x series. The security advisory with additional details is available at the Eclipse GitLab Vulnerability Report.

Workarounds

  • Configure web server or reverse proxy rules to explicitly block access to hidden directories at the infrastructure level
  • Remove hidden directories (such as .git) from web-accessible static content directories during deployment
  • Implement additional access control middleware that validates path segments before serving static content
  • Use a dedicated CDN or object storage service for static content that does not include hidden directories
bash
# Example nginx configuration to block hidden directories
location ~ /\. {
    deny all;
    return 404;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechEclipse Vert.x

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/VI:L/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-552
  • Vendor Resources
  • Eclipse GitLab Vulnerability Report
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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