Skip to content

Commit 93e60f7

Browse files
authored
add trusted-origins cli argument (#6319)
1 parent 7926647 commit 93e60f7

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

src/node/cli.ts

+6
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export interface UserProvidedArgs extends UserProvidedCodeArgs {
7979
"bind-addr"?: string
8080
socket?: string
8181
"socket-mode"?: string
82+
"trusted-origins"?: string[]
8283
version?: boolean
8384
"proxy-domain"?: string[]
8485
"reuse-window"?: boolean
@@ -208,6 +209,11 @@ export const options: Options<Required<UserProvidedArgs>> = {
208209

209210
socket: { type: "string", path: true, description: "Path to a socket (bind-addr will be ignored)." },
210211
"socket-mode": { type: "string", description: "File mode of the socket." },
212+
"trusted-origins": {
213+
type: "string[]",
214+
description:
215+
"Disables authenticate origin check for trusted origin. Useful if not able to access reverse proxy configuration.",
216+
},
211217
version: { type: "boolean", short: "v", description: "Display version information." },
212218
_: { type: "string[]" },
213219

src/node/http.ts

+5
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,11 @@ export function authenticateOrigin(req: express.Request): void {
355355
throw new Error(`unable to parse malformed origin "${originRaw}"`)
356356
}
357357

358+
const trustedOrigins = req.args["trusted-origins"] || []
359+
if (trustedOrigins.includes(origin) || trustedOrigins.includes("*")) {
360+
return
361+
}
362+
358363
const host = getHost(req)
359364
if (typeof host === "undefined") {
360365
// A missing host likely means the reverse proxy has not been configured to

test/unit/node/http.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ describe("http", () => {
7070
origin: test.origin,
7171
[key]: value,
7272
},
73+
args: {},
7374
})
7475
if (typeof test.expected === "string") {
7576
expect(() => http.authenticateOrigin(req)).toThrow(test.expected)

0 commit comments

Comments
 (0)