Publish Advisories

GHSA-q4xc-7cw8-cgfj
GHSA-rxpw-85vw-fx87
GHSA-q4xc-7cw8-cgfj
This commit is contained in:
advisory-database[bot]
2024-02-01 21:05:40 +00:00
parent cb552d97a4
commit 3b059adfa4
3 changed files with 75 additions and 39 deletions
@@ -0,0 +1,74 @@
{
"schema_version": "1.4.0",
"id": "GHSA-q4xc-7cw8-cgfj",
"modified": "2024-02-01T21:04:19Z",
"published": "2022-05-24T17:37:26Z",
"aliases": [
"CVE-2020-28277"
],
"summary": "dset vulnerable to prototype pollution",
"details": "### Overview\nPrototype pollution vulnerability in 'dset' versions 1.0.0 through 2.0.1 allows attacker to cause a denial of service and may lead to remote code execution.\n\n### Details\nThe NPM module 'dset' can be abused by Prototype Pollution vulnerability since the function export ()' did 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.\n\n### PoC\nThe export function accepts three arguments `obj, keys, val`. Due to the absence of validation, at values passed into `keys, val` arguments, an attacker can supply a malicious value by adjusting the `keys` value to include the `__proto__` property. Since there is no validation before assigning property to check whether the assigned `keys` is the Object's own property or not, the property `isAdmin` will be directly be assigned to the empty obj({}) thereby polluting the Object prototype. Later in the code, if there is a check to validate `isAdmin` the valued would be substituted as \"true\" as it had been polluted.\n\n```js\nconst dset = require('dset');\nvar obj = {}\nconsole.log(\"Before : \" + obj.isAdmin);\ndset(obj, '__proto__.polluted', true);\nconsole.log(\"After : \" + obj.polluted);\n```\n",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"
}
],
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "dset"
},
"ecosystem_specific": {
"affected_functions": [
"(dset)"
]
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "1.0.0"
},
{
"fixed": "2.0.1"
}
]
}
]
}
],
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2020-28277"
},
{
"type": "WEB",
"url": "https://github.com/lukeed/dset/issues/11"
},
{
"type": "WEB",
"url": "https://github.com/lukeed/dset/commit/2b9ec49e231107b1a83b04a1bc1a66a8d14cea1c"
},
{
"type": "WEB",
"url": "https://github.com/lukeed/dset/blob/50a6ead172d1466a96035eff00f8eb465ccd050a/src/index.js#L6"
},
{
"type": "WEB",
"url": "https://web.archive.org/web/20210104204657/https://www.whitesourcesoftware.com/vulnerability-database/CVE-2020-28277"
}
],
"database_specific": {
"cwe_ids": [
"CWE-1321"
],
"severity": "CRITICAL",
"github_reviewed": true,
"github_reviewed_at": "2024-02-01T21:04:19Z",
"nvd_published_at": "2020-12-29T17:15:00Z"
}
}
@@ -59,6 +59,7 @@
],
"database_specific": {
"cwe_ids": [
"CWE-401",
"CWE-770"
],
"severity": "MODERATE",
@@ -1,39 +0,0 @@
{
"schema_version": "1.4.0",
"id": "GHSA-q4xc-7cw8-cgfj",
"modified": "2022-05-24T17:37:26Z",
"published": "2022-05-24T17:37:26Z",
"aliases": [
"CVE-2020-28277"
],
"details": "Prototype pollution vulnerability in 'dset' versions 1.0.0 through 2.0.1 allows attacker to cause a denial of service and may lead to remote code execution.",
"severity": [
],
"affected": [
],
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2020-28277"
},
{
"type": "WEB",
"url": "https://github.com/lukeed/dset/blob/50a6ead172d1466a96035eff00f8eb465ccd050a/src/index.js#L6"
},
{
"type": "WEB",
"url": "https://www.whitesourcesoftware.com/vulnerability-database/CVE-2020-28277"
}
],
"database_specific": {
"cwe_ids": [
],
"severity": "CRITICAL",
"github_reviewed": false,
"github_reviewed_at": null,
"nvd_published_at": "2020-12-29T17:15:00Z"
}
}