-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed parsing of x-forwarded-* headers (#12130)
* Fixed parsing of x-forwarded-* headers * changeset * remotePort * port fix * port fix * port fix * Update .changeset/slimy-buses-agree.md Co-authored-by: Emanuele Stoppa <[email protected]> * Update packages/astro/src/core/app/node.ts Co-authored-by: Emanuele Stoppa <[email protected]> * Reverted formating change --------- Co-authored-by: Emanuele Stoppa <[email protected]>
- Loading branch information
Showing
4 changed files
with
255 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'astro': patch | ||
--- | ||
|
||
Fixes a bug in the parsing of `x-forwarded-\*` `Request` headers, where multiple values assigned to those headers were not correctly parsed. | ||
|
||
Now, headers like `x-forwarded-proto: https,http` are correctly parsed. |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
import * as assert from 'node:assert/strict'; | ||
import { describe, it } from 'node:test'; | ||
import { NodeApp } from '../../../dist/core/app/node.js'; | ||
|
||
const mockNodeRequest = { | ||
url: '/', | ||
method: 'GET', | ||
headers: { | ||
host: 'example.com', | ||
}, | ||
socket: { | ||
encrypted: true, | ||
remoteAddress: '2.2.2.2', | ||
}, | ||
}; | ||
|
||
describe('NodeApp', () => { | ||
describe('createRequest', () => { | ||
describe('x-forwarded-for', () => { | ||
it('parses client IP from single-value x-forwarded-for header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
'x-forwarded-for': '1.1.1.1', | ||
}, | ||
}); | ||
assert.equal(result[Symbol.for('astro.clientAddress')], '1.1.1.1'); | ||
}); | ||
|
||
it('parses client IP from multi-value x-forwarded-for header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
'x-forwarded-for': '1.1.1.1,8.8.8.8', | ||
}, | ||
}); | ||
assert.equal(result[Symbol.for('astro.clientAddress')], '1.1.1.1'); | ||
}); | ||
|
||
it('parses client IP from multi-value x-forwarded-for header with spaces', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
'x-forwarded-for': ' 1.1.1.1, 8.8.8.8, 8.8.8.2', | ||
}, | ||
}); | ||
assert.equal(result[Symbol.for('astro.clientAddress')], '1.1.1.1'); | ||
}); | ||
|
||
it('fallbacks to remoteAddress when no x-forwarded-for header is present', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: {}, | ||
}); | ||
assert.equal(result[Symbol.for('astro.clientAddress')], '2.2.2.2'); | ||
}); | ||
}); | ||
|
||
describe('x-forwarded-host', () => { | ||
it('parses host from single-value x-forwarded-host header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
'x-forwarded-host': 'www2.example.com', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://www2.example.com/'); | ||
}); | ||
|
||
it('parses host from multi-value x-forwarded-host header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
'x-forwarded-host': 'www2.example.com,www3.example.com', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://www2.example.com/'); | ||
}); | ||
|
||
it('fallbacks to host header when no x-forwarded-host header is present', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://example.com/'); | ||
}); | ||
}); | ||
|
||
describe('x-forwarded-proto', () => { | ||
it('parses protocol from single-value x-forwarded-proto header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com', | ||
'x-forwarded-proto': 'http', | ||
'x-forwarded-port': '80', | ||
}, | ||
}); | ||
assert.equal(result.url, 'http://example.com/'); | ||
}); | ||
|
||
it('parses protocol from multi-value x-forwarded-proto header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com', | ||
'x-forwarded-proto': 'http,https', | ||
'x-forwarded-port': '80,443', | ||
}, | ||
}); | ||
assert.equal(result.url, 'http://example.com/'); | ||
}); | ||
|
||
it('fallbacks to encrypted property when no x-forwarded-proto header is present', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://example.com/'); | ||
}); | ||
}); | ||
|
||
describe('x-forwarded-port', () => { | ||
it('parses port from single-value x-forwarded-port header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com', | ||
'x-forwarded-port': '8443', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://example.com:8443/'); | ||
}); | ||
|
||
it('parses port from multi-value x-forwarded-port header', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com', | ||
'x-forwarded-port': '8443,3000', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://example.com:8443/'); | ||
}); | ||
|
||
it('prefers port from host', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com:3000', | ||
'x-forwarded-port': '443', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://example.com:3000/'); | ||
}); | ||
|
||
|
||
it('prefers port from x-forwarded-host', () => { | ||
const result = NodeApp.createRequest({ | ||
...mockNodeRequest, | ||
headers: { | ||
host: 'example.com:443', | ||
'x-forwarded-host': 'example.com:3000', | ||
'x-forwarded-port': '443', | ||
}, | ||
}); | ||
assert.equal(result.url, 'https://example.com:3000/'); | ||
}); | ||
}); | ||
}); | ||
}); |