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

CVE-2026-29087: Hono Node Server Auth Bypass Vulnerability

CVE-2026-29087 is an authentication bypass flaw in @hono/node-server that allows unauthorized access to protected static files through URL encoding manipulation. This article covers technical details, affected versions, and patches.

Published: March 13, 2026

CVE-2026-29087 Overview

CVE-2026-29087 is an authorization bypass vulnerability in @hono/node-server, a package that enables running Hono applications on Node.js. Prior to version 1.19.10, when using the static file serving feature together with route-based middleware protections (such as protecting /admin/* paths), inconsistent URL decoding allows protected static resources to be accessed without authorization.

Critical Impact

Attackers can bypass authentication and authorization middleware to access protected static files by exploiting URL encoding inconsistencies, potentially exposing sensitive administrative resources, configuration files, or other protected content.

Affected Products

  • @hono/node-server versions prior to 1.19.10
  • Hono applications using static file serving with route-based middleware protection
  • Node.js deployments utilizing affected @hono/node-server versions

Discovery Timeline

  • 2026-03-06 - CVE CVE-2026-29087 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-29087

Vulnerability Analysis

This vulnerability falls under CWE-863 (Incorrect Authorization) and represents an authorization bypass flaw caused by URL decoding inconsistency between middleware routing and static file resolution components.

The core issue arises when URL paths containing encoded characters, particularly encoded slashes (%2F), are processed differently by two separate components within @hono/node-server. The routing and middleware matching logic interprets the URL one way, while the static file path resolution interprets it differently. This discrepancy creates a security gap where authorization checks can be bypassed while still serving the requested static file.

For example, when a path like /admin/config.json is protected by middleware, an attacker might request /admin%2Fconfig.json or similar encoded variations. The middleware may not recognize this as matching the protected /admin/* route pattern, allowing the request to proceed without authorization checks. However, the static file serving component may decode the path and successfully serve the protected file.

Root Cause

The root cause stems from inconsistent URL normalization and decoding practices between the middleware routing layer and the static file serving layer. When the routing system evaluates whether a request matches a protected route pattern, it may use the raw (encoded) URL path. Meanwhile, the static file serving component decodes the URL path to resolve the actual file on the filesystem.

This architectural inconsistency violates the security principle that authorization decisions should be made on the same representation of data that is ultimately acted upon.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by crafting HTTP requests with URL-encoded characters in the path, specifically targeting protected routes that serve static files.

The attack flow involves sending requests with paths containing encoded slashes (%2F) or other URL-encoded characters to bypass middleware route matching while still resolving to protected static files. This allows unauthorized access to files that should be protected by authentication or authorization middleware.

For detailed technical information about the vulnerability mechanism, refer to the GitHub Security Advisory GHSA-wc8c-qw6v-h7f6.

Detection Methods for CVE-2026-29087

Indicators of Compromise

  • HTTP access logs showing requests with URL-encoded slashes (%2F) targeting protected directories
  • Unusual access patterns to static files in administrative or protected paths
  • Requests containing multiple levels of URL encoding (double encoding) in path segments
  • Successful responses (HTTP 200) to encoded paths that should be protected

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests with suspicious URL encoding patterns
  • Enable detailed HTTP access logging and monitor for requests containing %2F or other encoded path separators
  • Deploy SentinelOne Singularity to detect anomalous access patterns to protected resources
  • Audit application logs for successful access to files in protected directories from unauthenticated sessions

Monitoring Recommendations

  • Configure alerts for access attempts to sensitive paths using encoded characters
  • Monitor for reconnaissance activities scanning for path traversal or encoding bypass opportunities
  • Track changes in access patterns to administrative static resources
  • Implement file integrity monitoring on protected static file directories

How to Mitigate CVE-2026-29087

Immediate Actions Required

  • Upgrade @hono/node-server to version 1.19.10 or later immediately
  • Audit access logs for potential exploitation attempts using encoded path characters
  • Review all route-based middleware protections to ensure they cannot be bypassed
  • Consider implementing additional authorization checks at the static file serving layer

Patch Information

The vulnerability has been patched in @hono/node-server version 1.19.10. The fix ensures consistent URL decoding between the middleware routing layer and static file resolution, preventing the bypass condition.

The patch is available in commit 455015be1697dd89974a68b70350ea7b2d126d2e. Organizations should update their dependencies by running npm update @hono/node-server or explicitly installing the patched version with npm install @hono/node-server@1.19.10.

Workarounds

  • Normalize and decode URLs before middleware route matching to ensure consistent evaluation
  • Implement authorization checks directly in the static file serving handler rather than relying solely on route-based middleware
  • Use a reverse proxy that normalizes URL encoding before requests reach the application
  • Temporarily disable static file serving for sensitive directories until the patch can be applied
bash
# Update @hono/node-server to patched version
npm update @hono/node-server

# Or explicitly install the fixed version
npm install @hono/node-server@1.19.10

# Verify installed version
npm list @hono/node-server

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechHono

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-wc8c-qw6v-h7f6
  • Related CVEs
  • CVE-2026-39410: Hono Framework Auth Bypass Vulnerability

  • CVE-2026-39406: Hono Node.js Auth Bypass Vulnerability

  • CVE-2026-39409: Hono Auth Bypass Vulnerability

  • CVE-2026-29045: Hono Framework 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