SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-84364

MEDIUM · CVSS 5.3 EPSS 0.39% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-09-01 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The vulnerability affects the Hono web application framework for Java, specifically in the parseBody() function, which improperly handles dot-separated form field names, allowing for excessive nesting and object creation. This can lead to denial-of-service conditions by exhausting the JavaScript heap, causing the server to crash and become unavailable until restarted. Organizations using Hono versions prior to 4.13.5, particularly those with dot-notation parsing enabled, should prioritize upgrading to mitigate this risk.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-84364
Severity
MEDIUM
CVSS
5.3
EPSS
0.39%
Java

Original NVD Description

Hono is a Web application framework that provides support for any JavaScript runtime. Prior to 4.13.5, when parseBody() expands dot-separated form field names into nested objects with dot-notation parsing enabled, it does not limit the nesting depth or the total number of intermediate objects created. Empty segments are preserved, so one deeply dotted field name can encode one nesting level per byte, while a large number of shallowly dotted fields can create the same amplification across a request. A request body within a normal size limit can therefore allocate an object graph far larger than the request after the body has already been accepted. An unauthenticated attacker who can reach an affected endpoint can send concurrent requests that exhaust the JavaScript heap, terminate the server process, and leave the service unavailable until restart. Dot-notation parsing is not enabled by default, and applications using the default behavior are not affected. This issue is fixed in version 4.13.5.