Skip to content

Commit b14383a

Browse files
huntr.dev | the place to protect open sourced3v53cJamieSlome
authored andcommitted
fix: 🐛 Security Fix for Prototype Pollution - huntr.dev (#13)
* prototype pollution fix * added testcase Co-authored-by: d3v53c <[email protected]> Co-authored-by: Jamie Slome <[email protected]>
1 parent 00630e4 commit b14383a

File tree

8 files changed

+38
-6
lines changed

8 files changed

+38
-6
lines changed

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict = true
2+
registry = https://registry.npmjs.org/

dist/index.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jsonuri v2.4.1
2+
* jsonuri v2.4.2
33
* (c) 2021 @aligay
44
* Released under the MIT License.
55
*/
@@ -164,6 +164,12 @@ var get = (function (data, path) {
164164
return ret;
165165
});
166166

167+
/**
168+
* Returns true, if given key is included in the blacklisted
169+
* keys.
170+
* @param key key for check, string.
171+
*/
172+
var isPrototypePolluted = function (key) { return ['__proto__', 'prototype', 'constructor'].includes(key); };
167173
var set = (function (data, path, value) {
168174
path = toString(path);
169175
if (!(data && path))
@@ -173,6 +179,8 @@ var set = (function (data, path, value) {
173179
var keys = combingPathKey({ path: path }).keys;
174180
for (var i = 0, len = keys.length; i < len; i++) {
175181
var key = keys[i];
182+
if (isPrototypePolluted(key))
183+
continue;
176184
if (data[key] == null) {
177185
data[key] = {};
178186
}

dist/index.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.mjs

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jsonuri v2.4.1
2+
* jsonuri v2.4.2
33
* (c) 2021 @aligay
44
* Released under the MIT License.
55
*/
@@ -150,13 +150,20 @@ var get = function (data, path) {
150150
return ret
151151
}
152152

153+
/**
154+
* Returns true, if given key is included in the blacklisted
155+
* keys.
156+
* @param key key for check, string.
157+
*/
158+
var isPrototypePolluted = function (key) { return ['__proto__', 'prototype', 'constructor'].includes(key) }
153159
var set = function (data, path, value) {
154160
path = toString(path)
155161
if (!(data && path)) { return showError(THE_PARAMETER_IS_ILLEGAL) }
156162
if (!isComplexPath(path)) { return setValue(data, path, value) }
157163
var keys = combingPathKey({ path: path }).keys
158164
for (var i = 0, len = keys.length; i < len; i++) {
159165
var key = keys[i]
166+
if (isPrototypePolluted(key)) { continue }
160167
if (data[key] == null) {
161168
data[key] = {}
162169
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonuri",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"description": "Use URI path to get or set data",
55
"keywords": [
66
"array",

src/methods/set.ts

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
import { THE_PARAMETER_IS_ILLEGAL, setValue, combingPathKey, isComplexPath, showError, toString } from '../util'
22

3+
/**
4+
* Returns true, if given key is included in the blacklisted
5+
* keys.
6+
* @param key key for check, string.
7+
*/
8+
const isPrototypePolluted = (key: string): Boolean => ['__proto__', 'prototype', 'constructor'].includes(key)
9+
310
export default (data: any, path: string | number, value: any): void => {
411
path = toString(path)
512
if (!(data && path)) return showError(THE_PARAMETER_IS_ILLEGAL)
@@ -10,6 +17,8 @@ export default (data: any, path: string | number, value: any): void => {
1017
for (let i = 0, len = keys.length; i < len; i++) {
1118
let key = keys[i]
1219

20+
if (isPrototypePolluted(key)) continue
21+
1322
if (data[key] == null) {
1423
data[key] = {}
1524
}

test/spec/set_spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,10 @@ describe('jsonuri.set', () => {
128128
jsonuri.set(o, 5, 1)
129129
expect(o).toEqual([undefined, undefined, undefined, undefined, undefined, 1])
130130
})
131+
// ==========
132+
it('check prototype pollution', () => {
133+
jsonuri.set(obj, '__proto__/polluted', 'Yes! Its Polluted')
134+
expect(obj.polluted).toEqual('Yes! Its Polluted')
135+
expect({}.polluted).toEqual(undefined)
136+
})
131137
})

www/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<title>JSON URI - A better way to manipulate data,friendly support Vue-like frameworks</title>
66
<script src="//cdn.jsdelivr.net/npm/vue"></script>
7-
<script src="//cdn.jsdelivr.net/npm/[email protected].1/dist/index.min.js"></script>
7+
<script src="//cdn.jsdelivr.net/npm/[email protected].2/dist/index.min.js"></script>
88
<style>
99
*{margin: 0; padding: 0; font-family: monospace;}
1010
body{
@@ -190,7 +190,7 @@
190190
<body>
191191
<div style="display: none"><script src="https://s13.cnzz.com/z_stat.php?id=1273470337&web_id=1273470337" language="JavaScript"></script></div>
192192
<div class="tips">
193-
jsonuri <a href="//www.npmjs.com/package/jsonuri">2.4.1</a> is now available. Download our latest version today!
193+
jsonuri <a href="//www.npmjs.com/package/jsonuri">2.4.2</a> is now available. Download our latest version today!
194194
</div>
195195
<div style="width: 1100px; margin:0 auto; overflow: hidden;">
196196
<h1>

0 commit comments

Comments
 (0)