!6 [sync] PR-2: fix CVE-2020-7598
From: @openeuler-sync-bot Reviewed-by: @solarhu Signed-off-by: @solarhu
This commit is contained in:
commit
9411e948d9
40
CVE-2020-7598.patch
Normal file
40
CVE-2020-7598.patch
Normal file
@ -0,0 +1,40 @@
|
||||
From 38a4d1caead72ef99e824bb420a2528eec03d9ab Mon Sep 17 00:00:00 2001
|
||||
From: substack <substack@bits.coop>
|
||||
Date: Tue, 10 Mar 2020 09:08:00 -1000
|
||||
Subject: [PATCH] even more aggressive checks for protocol pollution
|
||||
|
||||
---
|
||||
index.js | 13 +++++++++++--
|
||||
1 file changed, 11 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/index.js b/index.js
|
||||
index 6a0559d..cfdf0a5 100644
|
||||
--- a/index.js
|
||||
+++ b/index.js
|
||||
@@ -68,12 +68,21 @@ module.exports = function (args, opts) {
|
||||
|
||||
function setKey (obj, keys, value) {
|
||||
var o = obj;
|
||||
- keys.slice(0,-1).forEach(function (key) {
|
||||
+ for (var i = 0; i < keys.length-1; i++) {
|
||||
+ var key = keys[i];
|
||||
+ if (key === '__proto__') return;
|
||||
if (o[key] === undefined) o[key] = {};
|
||||
+ if (o[key] === Object.prototype || o[key] === Number.prototype
|
||||
+ || o[key] === String.prototype) o[key] = {};
|
||||
+ if (o[key] === Array.prototype) o[key] = [];
|
||||
o = o[key];
|
||||
- });
|
||||
+ }
|
||||
|
||||
var key = keys[keys.length - 1];
|
||||
+ if (key === '__proto__') return;
|
||||
+ if (o === Object.prototype || o === Number.prototype
|
||||
+ || o === String.prototype) o = {};
|
||||
+ if (o === Array.prototype) o = [];
|
||||
if (o[key] === undefined || flags.bools[key] || typeof o[key] === 'boolean') {
|
||||
o[key] = value;
|
||||
}
|
||||
--
|
||||
2.23.0
|
||||
|
||||
@ -2,11 +2,12 @@
|
||||
%global enable_tests 1
|
||||
Name: nodejs-minimist
|
||||
Version: 1.2.0
|
||||
Release: 1
|
||||
Release: 2
|
||||
Summary: Parse argument options in Node.js
|
||||
License: MIT
|
||||
URL: https://github.com/substack/minimist
|
||||
Source0: https://registry.npmjs.org/minimist/-/minimist-%{version}.tgz
|
||||
patch0: CVE-2020-7598.patch
|
||||
BuildArch: noarch
|
||||
ExclusiveArch: %{nodejs_arches} noarch
|
||||
BuildRequires: nodejs-packaging
|
||||
@ -20,6 +21,7 @@ fanciful decoration.
|
||||
|
||||
%prep
|
||||
%setup -q -n package
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
|
||||
@ -39,5 +41,8 @@ cp -pr package.json index.js %{buildroot}%{nodejs_sitelib}/minimist
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
* Wed Oct 13 2021 houyingchao <houyingchao@huawei.com> - 1.2.0-2
|
||||
- Fix CVE-2020-7598
|
||||
|
||||
* Mon Aug 17 2020 wutao <wutao61@huawei.com> - 1.2.0-1
|
||||
- Package init
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user