-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable prototype pollution on returned diff object
- Loading branch information
1 parent
e37b759
commit 04c06f8
Showing
6 changed files
with
66 additions
and
80 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
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
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 |
---|---|---|
@@ -1,85 +1,70 @@ | ||
import addedDiff from "../src/added"; | ||
import updatedDiff from "../src/updated"; | ||
import diff from "../src/diff"; | ||
import deletedDiff from "../src/deleted"; | ||
|
||
describe("Prototype pollution", () => { | ||
test("Demonstrate prototype pollution globally across all objects", () => { | ||
const a = {}; | ||
const b = new Object(); | ||
|
||
expect(a.hello).toBeUndefined(); | ||
expect(b.hello).toBeUndefined(); | ||
expect({}.hello).toBeUndefined(); | ||
|
||
b.__proto__.hello = "world"; | ||
|
||
expect(a.hello).toBe("world"); | ||
expect(b.hello).toBe("world"); | ||
expect({}.hello).toBe("world"); | ||
describe("diff", () => { | ||
test("should not pollute returned diffs prototype", () => { | ||
const l = { role: "user" }; | ||
const r = JSON.parse('{ "role": "user", "__proto__": { "role": "admin" } }'); | ||
const difference = diff(l, r); | ||
|
||
expect(l.role).toBe("user"); | ||
expect(r.role).toBe("user"); | ||
expect(difference.role).toBeUndefined(); | ||
}); | ||
|
||
test("should not pollute returned diffs prototype on nested diffs", () => { | ||
const l = { about: { role: "user" } }; | ||
const r = JSON.parse('{ "about": { "__proto__": { "role": "admin" } } }'); | ||
const difference = addedDiff(l, r); | ||
|
||
expect(l.about.role).toBe("user"); | ||
expect(r.about.role).toBeUndefined(); | ||
expect(difference.about.role).toBeUndefined(); | ||
}); | ||
}); | ||
|
||
test("addedDiff does not pollute global prototype when running diff with added `__proto__` key", () => { | ||
const a = { role: "user" }; | ||
const b = JSON.parse('{ "__proto__": { "role": "admin" } }'); | ||
|
||
expect(a.role).toBe("user"); | ||
expect(a.__proto__.role).toBeUndefined(); | ||
expect(b.role).toBeUndefined(); | ||
expect(b.__proto__.role).toBe("admin"); | ||
expect({}.role).toBeUndefined(); | ||
expect({}.__proto__role).toBeUndefined(); | ||
|
||
const difference = addedDiff(a, b); | ||
|
||
expect(a.role).toBe("user"); | ||
expect(a.__proto__.role).toBeUndefined(); | ||
expect(b.__proto__.role).toBe("admin"); | ||
expect(b.role).toBeUndefined(); | ||
expect({}.role).toBeUndefined(); | ||
expect({}.__proto__role).toBeUndefined(); | ||
|
||
expect(difference).toEqual({ __proto__: { role: "admin" } }); | ||
describe("addedDiff", () => { | ||
test("addedDiff should not pollute returned diffs prototype", () => { | ||
const l = { role: "user" }; | ||
const r = JSON.parse('{ "__proto__": { "role": "admin" } }'); | ||
const difference = addedDiff(l, r); | ||
|
||
expect(l.role).toBe("user"); | ||
expect(r.role).toBeUndefined(); | ||
expect(difference.role).toBeUndefined(); | ||
}); | ||
|
||
test("should not pollute returned diffs prototype on nested diffs", () => { | ||
const l = { about: { role: "user" } }; | ||
const r = JSON.parse('{ "about": { "__proto__": { "role": "admin" } } }'); | ||
const difference = addedDiff(l, r); | ||
|
||
expect(l.about.role).toBe("user"); | ||
expect(r.about.role).toBeUndefined(); | ||
expect(difference.about.role).toBeUndefined(); | ||
}); | ||
}); | ||
|
||
test("addedDiff does not pollute global prototype when running diff with added `__proto__` key generated from JSON.parse and mutating original left hand object", () => { | ||
let a = { role: "user" }; | ||
// Note: Don't trust `JSON.parse`!!! | ||
const b = JSON.parse('{ "__proto__": { "role": "admin" } }'); | ||
|
||
expect(a.role).toBe("user"); | ||
expect(a.__proto__.role).toBeUndefined(); | ||
expect(b.role).toBeUndefined(); | ||
expect(b.__proto__.role).toBe("admin"); | ||
expect({}.role).toBeUndefined(); | ||
expect({}.__proto__role).toBeUndefined(); | ||
|
||
// Note: although this does not pollute the global proto, it does pollute the original object. (Don't mutate kids!) | ||
a = addedDiff(a, b); | ||
test("updatedDiff should not pollute returned diffs prototype", () => { | ||
const l = { role: "user" }; | ||
const r = JSON.parse('{ "role": "user", "__proto__": { "role": "admin" } }'); | ||
const difference = updatedDiff(l, r); | ||
|
||
expect(a.role).toBe("admin"); | ||
expect(a.__proto__.role).toBe("admin"); | ||
expect(b.__proto__.role).toBe("admin"); | ||
expect(b.role).toBeUndefined(); | ||
expect({}.role).toBeUndefined(); | ||
expect({}.__proto__role).toBeUndefined(); | ||
expect(l.role).toBe("user"); | ||
expect(r.role).toBe("user"); | ||
expect(difference.role).toBeUndefined(); | ||
}); | ||
|
||
test("addedDiff does not pollute global prototype or original object when running diff with added `__proto__` key", () => { | ||
let a = { role: "user" }; | ||
const b = { __proto__: { role: "admin" } }; | ||
|
||
expect(a.role).toBe("user"); | ||
expect(a.__proto__.role).toBeUndefined(); | ||
expect(b.role).toBe("admin"); | ||
expect(b.__proto__.role).toBe("admin"); | ||
expect({}.role).toBeUndefined(); | ||
expect({}.__proto__role).toBeUndefined(); | ||
|
||
a = addedDiff(a, b); | ||
test("deletedDiff should not pollute returned diffs prototype", () => { | ||
const l = { role: "user" }; | ||
const r = JSON.parse('{ "__proto__": { "role": "admin" } }'); | ||
const difference = deletedDiff(l, r); | ||
|
||
expect(a.role).toBeUndefined(); | ||
expect(a.__proto__.role).toBeUndefined(); | ||
expect(b.role).toBe("admin"); | ||
expect(b.__proto__.role).toBe("admin"); | ||
expect({}.role).toBeUndefined(); | ||
expect({}.__proto__role).toBeUndefined(); | ||
expect(l.role).toBe("user"); | ||
expect(r.role).toBeUndefined(); | ||
expect(difference.role).toBeUndefined(); | ||
}); | ||
}); |