CVE-2026-22817: JWT Algorithm Confusion via Unsafe Default (HS256) in Hono JWT Middleware Allows Token Forgery and Auth Bypass
Summary
A flaw in Hono’s JWK/JWKS JWT verification middleware allowed the JWT header’s alg value to influence signature verification when the selected JWK did not explicitly specify an algorithm. This could enable JWT algorithm confusion and, in certain configurations, allow forged tokens to be accepted.
Details
When verifying JWTs using JWKs or a JWKS endpoint, the middleware selected the verification algorithm based on the JWK’s alg field if present, but otherwise fell back to the alg value provided in the unverified JWT header.
Because the alg field in a JWK is optional and often omitted in real-world JWKS configurations, this behavior could allow an attacker to control the algorithm used for verification. In some environments, this may lead to authentication or authorization bypass through crafted tokens.
The practical impact depends on application configuration, including which algorithms are accepted and how JWTs are used for authorization decisions.
Impact
In affected configurations, an attacker may be able to forge JWTs with attacker-controlled claims, potentially resulting in authentication or authorization bypass.
Applications that do not use the JWK/JWKS middleware, do not rely on JWT-based authentication, or explicitly restrict allowed algorithms are not affected.
Resolution
Update to the latest patched release.
Breaking change:
As part of this fix, the JWT middleware now requires the alg option to be explicitly specified. This prevents algorithm confusion by ensuring that the verification algorithm is not derived from untrusted JWT header values.
Applications upgrading must update their configuration accordingly.
Before (vulnerable configuration)
ts import { jwt } from 'hono/jwt'
app.use( '/auth/', jwt({ secret: 'it-is-very-secret', // alg was optional }) )
After (patched configuration)
ts import { jwt } from 'hono/jwt'
app.use( '/auth/', jwt({ secret: 'it-is-very-secret', alg: 'HS256', // required }) )
Other sources
Hono is a Web application framework that provides support for any JavaScript runtime. Prior to 4.11.4, there is a flaw in Hono’s JWK/JWKS JWT verification middleware allowed the JWT header’s alg value to influence signature verification when the selected JWK did not explicitly specify an algorithm. This could enable JWT algorithm confusion and, in certain configurations, allow forged tokens to be accepted. As part of this fix, the JWT middleware now requires the alg option to be explicitly specified. This prevents algorithm confusion by ensuring that the verification algorithm is not derived from untrusted JWT header values. This vulnerability is fixed in 4.11.4.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-22817?
CVE-2026-22817 is rated as a high severity vulnerability due to its potential for token forgery and authentication bypass.
How do I fix CVE-2026-22817?
To fix CVE-2026-22817, upgrade Hono to version 4.11.4 or later where the vulnerability has been addressed.
What are the consequences of exploiting CVE-2026-22817?
Exploiting CVE-2026-22817 may allow attackers to forge JWT tokens and bypass authentication mechanisms in affected applications.
Which versions of Hono are affected by CVE-2026-22817?
CVE-2026-22817 affects Hono versions prior to 4.11.4.
What is the nature of the vulnerability in CVE-2026-22817?
The vulnerability in CVE-2026-22817 is related to JWT algorithm confusion allowing unsafe defaults for the HS256 algorithm.