GHSA-54fx-42gc-7vw4

Suggest an improvement
Source
https://github.com/advisories/GHSA-54fx-42gc-7vw4
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-54fx-42gc-7vw4/GHSA-54fx-42gc-7vw4.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-54fx-42gc-7vw4
Aliases
Downstream
Related
Published
2026-08-07T18:36:31Z
Modified
2026-08-10T21:42:00.485567800Z
Severity
  • 5.3 (Medium) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L CVSS Calculator
Summary
Hono: Algorithmic Complexity DoS in Language Middleware
Details

Summary

The languageDetector middleware is vulnerable to algorithmic complexity denial of service when processing a crafted language tag containing a large number of hyphen-separated subtags.

Details

To implement progressive language-tag truncation, normalizeLanguage() repeatedly calls parts.slice(0, i).join('-') for every possible prefix. The total amount of string processing grows quadratically with the number of subtags.

Language values may come from a query parameter, cookie, Accept-Language header, or URL path, depending on the detector configuration. The default detector order enables query-string, cookie, and header detection, so applications using languageDetector() may expose this processing to unauthenticated requests.

Request-size limits reduce the maximum cost of a single request but do not eliminate the issue. Inputs accepted by common JavaScript runtimes can still cause noticeable synchronous event-loop blocking.

Impact

An attacker may repeatedly send requests containing long, hyphen-separated language tags, causing excessive CPU consumption and preventing unrelated requests from being processed.

The practical impact depends on the runtime's request-size limits, reverse-proxy configuration, and the detectors enabled by the application.

Resolution

The progressive lookup should avoid reconstructing every shorter prefix. The implementation can instead inspect the configured supported languages and select the longest value that matches the input at a hyphen boundary.

Database specific
{
    "cwe_ids": [
        "CWE-407"
    ],
    "github_reviewed_at": "2026-08-07T18:36:31Z",
    "severity": "MODERATE",
    "github_reviewed": true,
    "nvd_published_at": null
}
References

Affected packages

npm / hono

Package

Affected ranges

Type
SEMVER
Events
Introduced
4.12.0
Fixed
4.12.34

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/08/GHSA-54fx-42gc-7vw4/GHSA-54fx-42gc-7vw4.json"