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

CVE-2025-58362: Hono Path Traversal Vulnerability

CVE-2025-58362 is a path traversal flaw in Hono framework affecting versions 4.8.0-4.9.5 that enables proxy ACL bypass. This article covers the technical details, affected versions, potential impact, and mitigation.

Published: April 14, 2026

CVE-2025-58362 Overview

CVE-2025-58362 is a path confusion vulnerability affecting Hono, a popular Web application framework that provides support for any JavaScript runtime. The vulnerability exists in the getPath utility function and could allow attackers to bypass proxy-level Access Control Lists (ACLs) such as Nginx location blocks. This authorization bypass vulnerability affects Hono versions 4.8.0 through 4.9.5 and has been addressed in version 4.9.6.

Critical Impact

Unauthorized access to protected endpoints (e.g., /admin) could expose sensitive administrative data, potentially leading to full application compromise.

Affected Products

  • Hono versions 4.8.0 through 4.9.5
  • Hono for Node.js runtime environments
  • Applications using proxy-level ACLs with vulnerable Hono versions

Discovery Timeline

  • 2025-09-05 - CVE CVE-2025-58362 published to NVD
  • 2025-09-17 - Last updated in NVD database

Technical Details for CVE-2025-58362

Vulnerability Analysis

The vulnerability stems from a flaw in how the getPath utility function parses request URLs. The original implementation relied on fixed character offsets when extracting paths from request URIs. When handling certain malformed absolute-form Request-URIs, this approach could result in incorrect path extraction, creating a path confusion condition.

This path confusion can be exploited to bypass proxy-level access controls. For example, if an Nginx reverse proxy is configured with location blocks to restrict access to sensitive endpoints like /admin, an attacker could craft a malformed request URI that causes Hono to interpret the path differently than the proxy. The proxy would allow the request through based on its interpretation, while Hono would route it to a restricted endpoint based on its flawed path extraction.

The confidentiality impact varies depending on what data is exposed behind the protected endpoints. If sensitive administrative data or privileged functionality is accessible, the impact could be severe.

Root Cause

The root cause is improper input validation and inconsistent path parsing in the getPath utility function (CWE-706: Use of Incorrectly-Resolved Name or Reference). The function used fixed character offsets to parse URLs rather than properly handling all valid and malformed URI formats, leading to discrepancies between how the proxy and application interpret the same request path.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can craft malformed absolute-form Request-URIs that exploit the path parsing discrepancy between a reverse proxy (such as Nginx) and the Hono application. This enables unauthorized access to endpoints that should be protected by proxy-level ACL rules.

The attack flow involves:

  1. Identifying a target application using Hono behind a reverse proxy with ACL-protected paths
  2. Crafting a malformed absolute-form Request-URI that bypasses the proxy's location block matching
  3. The proxy forwards the request believing it targets an allowed path
  4. Hono's flawed getPath function extracts a different path, routing the request to a protected endpoint

Detection Methods for CVE-2025-58362

Indicators of Compromise

  • Unusual or malformed absolute-form Request-URIs in web server access logs
  • Unexpected access attempts to administrative endpoints (/admin, /api/admin, etc.) from unauthorized sources
  • Discrepancies between proxy logs and application logs regarding requested paths
  • Access log entries showing successful requests to protected endpoints without corresponding authentication events

Detection Strategies

  • Implement log correlation between reverse proxy logs and application logs to identify path interpretation discrepancies
  • Deploy Web Application Firewall (WAF) rules to detect malformed absolute-form Request-URIs
  • Monitor for requests containing unusual URI encoding or path manipulation patterns
  • Enable verbose logging in both the proxy layer and Hono application to capture full request details

Monitoring Recommendations

  • Audit access patterns to sensitive endpoints for any anomalous traffic from unexpected sources
  • Set up alerts for access to administrative endpoints that don't follow expected authentication flows
  • Review Hono dependency versions across all applications in your environment
  • Implement runtime application self-protection (RASP) to detect path traversal and confusion attacks

How to Mitigate CVE-2025-58362

Immediate Actions Required

  • Upgrade Hono to version 4.9.6 or later immediately
  • Review access logs for any signs of exploitation targeting protected endpoints
  • Audit proxy ACL configurations to ensure defense-in-depth beyond the application layer
  • Implement additional authentication checks at the application level for sensitive endpoints

Patch Information

The vulnerability has been fixed in Hono version 4.9.6. The fix addresses the path parsing logic in the getPath utility function to properly handle absolute-form Request-URIs. The patch is available via the GitHub Release v4.9.6. For technical details on the changes, review the GitHub Commit and the GitHub Security Advisory GHSA-9hp6-4448-45g2.

Workarounds

  • Implement application-level authentication and authorization checks for all sensitive endpoints rather than relying solely on proxy ACLs
  • Add duplicate access control rules in the Hono application to validate paths independently of proxy configuration
  • Consider normalizing request paths at the proxy layer before forwarding to the application
  • Deploy a WAF with rules to block requests containing malformed absolute-form URIs
bash
# Update Hono to the patched version
npm update hono@4.9.6

# Or specify the exact version in package.json
npm install hono@^4.9.6 --save

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechHono Hono

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • 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-706
  • Technical References
  • GitHub Release v4.9.6
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-9hp6-4448-45g2
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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