Update dependency koa to v2.16.4 [SECURITY]#2321
Open
renovate[bot] wants to merge 1 commit intomei-dolphinfrom
Open
Update dependency koa to v2.16.4 [SECURITY]#2321renovate[bot] wants to merge 1 commit intomei-dolphinfrom
renovate[bot] wants to merge 1 commit intomei-dolphinfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.16.3→2.16.4GitHub Vulnerability Alerts
CVE-2025-25200
Summary
Koa uses an evil regex to parse the
X-Forwarded-ProtoandX-Forwarded-HostHTTP headers. This can be exploited to carry out a Denial-of-Service attack.PoC
Coming soon.
Impact
This is a Regex Denial-of-Service attack and causes memory exhaustion. The regex should be improved and empty values should not be allowed.
CVE-2025-32379
Summary
In koa < 2.16.1 and < 3.0.0-alpha.5, passing untrusted user input to ctx.redirect() even after sanitizing it, may execute javascript code on the user who use the app.
Patches
This issue is patched in 2.16.1 and 3.0.0-alpha.5.
PoC
Coming soon...
Impact
CVE-2025-8129
Summary
In the latest version of Koa, the back method used for redirect operations adopts an insecure implementation, which uses the user-controllable referrer header as the redirect target.
Details
on the API document https://www.koajs.net/api/response#responseredirecturl-alt, we can see:
response.redirect(url, [alt])
however, the "back" method is insecure:
Referrer Header is User-Controlled.
PoC
there is a demo for POC:
Proof Of Concept
Impact
https://learn.snyk.io/lesson/open-redirect/
CVE-2026-27959
Summary
Koa's
ctx.hostnameAPI performs naive parsing of the HTTP Host header, extracting everything before the first colon without validating the input conforms to RFC 3986 hostname syntax. When a malformed Host header containing a@symbol (e.g.,evil.com:fake@legitimate.com) is received,ctx.hostnamereturnsevil.com- an attacker-controlled value. Applications usingctx.hostnamefor URL generation, password reset links, email verification URLs, or routing decisions are vulnerable to Host header injection attacks.Details
The vulnerability exists in Koa's hostname getter in
lib/request.js:The
hostgetter retrieves the raw header value with HTTP/2 and proxy support:The Problem
The parsing logic simply splits on the first
:and returns the first segment. There is no validation that the resulting string is a valid hostname per RFC 3986 Section 3.2.2.RFC 3986 Section 3.2.2 defines the host component as:
The
@character is explicitly NOT permitted in the host component - it is the delimiter separating userinfo from host in the authority component.Attack Vector
When an attacker sends:
Koa parses this as:
ctx.get('Host')"evil.com:fake@legitimate.com:3000"ctx.hostname"evil.com"ctx.host"evil.com:fake@legitimate.com:3000"ctx.origin"http://evil.com:fake@legitimate.com:3000"The
ctx.hostnameAPI returnsevil.combecause the parser splits on the first:without understanding thatevil.com:fake@legitimate.comis a malformed authority component whereevil.com:fakewould be interpreted as userinfo by a proper URI parser.Additional Concern:
ctx.originKoa's
ctx.originproperty concatenates protocol and host without validation:Applications using
ctx.originfor URL generation receive the full malformed Host header value, creating URLs with embedded credentials that browsers may interpret as userinfo.HTTP/2 Consideration
Koa explicitly checks
httpVersionMajor >= 2to read the:authoritypseudo-header:The same vulnerability applies - malformed
:authorityvalues containing userinfo would be accepted and parsed identically.PoC
Setup
Exploit
curl -H "Host: evil.com:fake@localhost:3000" http://localhost:3000/forgot-passwordResult
{ "message": "Password reset link generated", "resetUrl": "http://evil.com/reset?token=abc123securtoken", "debug": { "rawHost": "evil.com:fake@localhost:3000", "parsedHostname": "evil.com", "origin": "http://evil.com:fake@localhost:3000", "protocol": "http" } }The password reset URL points to
evil.cominstead of the legitimate server. In a real attack:ctx.hostname→https://evil.com/reset?token=SECRETAdditional Test Cases
Deployment Consideration
For this attack to succeed in production, the malicious Host header must reach the Koa application. This occurs when:
app.proxy = true) -X-Forwarded-Hostcan be injectedImpact
Vulnerability Type
Attack Scenarios
1. Password Reset Poisoning (High Severity)
2. Email Verification Bypass
3. OAuth/SSO Callback Manipulation
ctx.hostnamefor OAuth redirect URIs4. Web Cache Poisoning
5. Server-Side Request Forgery (SSRF)
ctx.hostnameWho Is Impacted
ctx.hostnameorctx.originfor URL generation without additional validationRelease Notes
koajs/koa (koa)
v2.16.4Compare Source
What's Changed
ctx.hostnameby @killagu GHSA-7gcc-r8m5-44qmConfiguration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.