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-2026-44456

CVE-2026-44456: Hono Web Framework DOS Vulnerability

CVE-2026-44456 is a denial of service vulnerability in Hono web framework where bodyLimit() fails to enforce size limits on chunked requests. This article covers the technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-44456 Overview

CVE-2026-44456 is a resource exhaustion vulnerability in Hono, a JavaScript web application framework that runs on any JavaScript runtime. The bodyLimit() middleware fails to reliably enforce its maxSize setting for requests that lack a usable Content-Length header. Requests using Transfer-Encoding: chunked can bypass the limit. Oversized payloads reach downstream handlers and receive a 200 OK response instead of the expected 413 Payload Too Large. The flaw is tracked as [CWE-400] Uncontrolled Resource Consumption and affects Hono releases prior to 4.12.16. The maintainers published a fix in version 4.12.16.

Critical Impact

Remote attackers can submit chunked requests that exceed configured body size limits, consuming memory and bandwidth on Hono-based services and undermining a primary denial-of-service control.

Affected Products

  • Hono framework versions prior to 4.12.16
  • Node.js runtime deployments using hono:hono package
  • Any JavaScript runtime application relying on Hono bodyLimit() middleware for request size enforcement

Discovery Timeline

  • 2026-05-13 - CVE-2026-44456 published to the National Vulnerability Database (NVD)
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44456

Vulnerability Analysis

Hono provides a bodyLimit() middleware that rejects requests whose body exceeds a configured maxSize. The enforcement logic relies on the Content-Length header to short-circuit oversized requests before reading the body stream. When a client omits Content-Length and uses Transfer-Encoding: chunked, the middleware does not consistently measure bytes as chunks arrive. The middleware allows the request to pass through to user-defined handlers. Handlers then process the oversized payload and respond with 200 OK, defeating the purpose of the size guard.

The issue maps to [CWE-400] Uncontrolled Resource Consumption. Confidentiality and integrity impacts are limited, but availability degradation is possible when many oversized requests are processed concurrently.

Root Cause

The root cause is incomplete streaming enforcement in bodyLimit(). The middleware trusts header-based length signaling and does not maintain a running byte count for chunked transfers. Without that running tally, the middleware cannot abort a request mid-stream when the accumulated body exceeds maxSize.

Attack Vector

The vulnerability is exploitable over the network without authentication or user interaction. An attacker sends an HTTP request with Transfer-Encoding: chunked, omits Content-Length, and streams a body larger than the configured maxSize. The Hono application accepts the body, invokes the route handler, and returns a successful response. Repeated requests can amplify resource usage on the target service. Technical specifics are documented in the Hono GitHub Security Advisory GHSA-9vqf-7f2p-gf9v.

No public proof-of-concept is referenced in the advisory metadata and the CVE is not listed in CISA KEV.

Detection Methods for CVE-2026-44456

Indicators of Compromise

  • HTTP requests with Transfer-Encoding: chunked and no Content-Length header targeting Hono endpoints
  • Successful 200 OK responses to requests whose aggregate body size exceeds the documented bodyLimit()maxSize
  • Spikes in memory or event loop latency on Node.js Hono workers without a corresponding increase in legitimate request volume

Detection Strategies

  • Inventory deployed Hono versions and flag any instance running below 4.12.16
  • Inspect reverse proxy or application logs for chunked requests that produced successful responses on endpoints protected by bodyLimit()
  • Add application-level instrumentation that records actual body bytes read per request and compares the value to the configured maxSize

Monitoring Recommendations

  • Forward Hono and upstream proxy access logs to a centralized analytics platform and alert on chunked POST or PUT requests exceeding expected payload sizes
  • Track Node.js process memory and event loop lag metrics to identify resource exhaustion patterns tied to oversized requests
  • Correlate source IP behavior across endpoints to identify clients repeatedly submitting chunked oversized payloads

How to Mitigate CVE-2026-44456

Immediate Actions Required

  • Upgrade the hono package to version 4.12.16 or later in all affected services
  • Audit routes that depend on bodyLimit() and confirm the updated middleware is loaded before handlers
  • Enforce request size limits at the reverse proxy or API gateway as a defense-in-depth control until upgrades complete

Patch Information

The vulnerability is fixed in Hono 4.12.16. The maintainers published remediation details in the Hono GitHub Security Advisory GHSA-9vqf-7f2p-gf9v. Update package manifests and rebuild deployment artifacts to ensure the patched version is shipped to production.

Workarounds

  • Configure an upstream proxy such as NGINX or a managed API gateway to reject requests with bodies exceeding the application's maxSize
  • Strip or normalize Transfer-Encoding: chunked requests at the edge when a known Content-Length is required by the application contract
  • Add a custom middleware that streams the request body, counts bytes, and aborts the request with 413 once the configured limit is exceeded
bash
# Configuration example
npm install hono@^4.12.16
npm ls hono

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechHono

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-400
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44455: Hono Web Framework XSS Vulnerability

  • CVE-2026-44457: Hono Auth Bypass Vulnerability

  • CVE-2026-44458: Hono Web Framework XSS Vulnerability

  • CVE-2026-44459: Hono JWT Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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