diff --git a/src/util/util.mjs b/src/util/util.mjs index 2f893556c5..5c2114d22d 100644 --- a/src/util/util.mjs +++ b/src/util/util.mjs @@ -140,6 +140,9 @@ export const getByPath = function(obj, path, delimiter) { const isGetSafe = function(obj, key) { // Prevent prototype pollution // https://snyk.io/vuln/SNYK-JS-JSON8MERGEPATCH-1038399 + if (typeof key !== 'string' && typeof key !== 'number') { + key = String(key); + } if (key === 'constructor' && typeof obj[key] === 'function') { return false; } diff --git a/test/jointjs/core/util.js b/test/jointjs/core/util.js index 81f5e8ea62..ffd142e563 100644 --- a/test/jointjs/core/util.js +++ b/test/jointjs/core/util.js @@ -336,7 +336,11 @@ QUnit.module('util', function(hooks) { assert.deepEqual(joint.util.setByPath({ object: {}}, 'object/1', 'property'), { object: { '1': 'property' }}, 'define property'); }); - ['__proto__/polluted', 'constructor/prototype/polluted'].forEach(function(path) { + [ + '__proto__/polluted', + 'constructor/prototype/polluted', + [['__proto__'], 'polluted'] + ].forEach(function(path) { QUnit.test('setting "' + path + '" does not pollute prototype' , function(assert) { var obj = {}; assert.notOk(obj.polluted);