Skip to content

Commit e8707b4

Browse files
sohrbEvanHahn
authored andcommitted
getDefaultDirectives should do a deep copy
See [#463] and [#465]. [#463]: #463 [#465]: #465
1 parent 8d493c9 commit e8707b4

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

middlewares/content-security-policy/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const SHOULD_BE_QUOTED: ReadonlySet<string> = new Set([
6868
"wasm-unsafe-eval",
6969
]);
7070

71-
const getDefaultDirectives = () => ({ ...DEFAULT_DIRECTIVES });
71+
const getDefaultDirectives = () => structuredClone(DEFAULT_DIRECTIVES);
7272

7373
const dashify = (str: string): string =>
7474
str.replace(/[A-Z]/g, (capitalLetter) => "-" + capitalLetter.toLowerCase());

test/content-security-policy.test.ts

+10
Original file line numberDiff line numberDiff line change
@@ -581,4 +581,14 @@ describe("getDefaultDirectives", () => {
581581
contentSecurityPolicy.getDefaultDirectives,
582582
);
583583
});
584+
585+
it("returns a new copy each time", () => {
586+
const one = getDefaultDirectives();
587+
one["worker-src"] = ["ignored.example"];
588+
(one["img-src"] as Array<string>).push("ignored.example");
589+
590+
const two = getDefaultDirectives();
591+
expect(two).not.toHaveProperty("worker-src");
592+
expect(two["img-src"]).not.toContain("ignored.example");
593+
});
584594
});

0 commit comments

Comments
 (0)