Skip to content

Commit

Permalink
Ensure Object.prototype is not augmented by _.merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Aug 31, 2018
1 parent 67389a8 commit 90e6199
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 14 deletions.
37 changes: 23 additions & 14 deletions lodash.js
Expand Up @@ -1224,20 +1224,6 @@
return result;
}

/**
* Gets the value at `key`, unless `key` is "__proto__".
*
* @private
* @param {Object} object The object to query.
* @param {string} key The key of the property to get.
* @returns {*} Returns the property value.
*/
function safeGet(object, key) {
return key == '__proto__'
? undefined
: object[key];
}

/**
* Converts `set` to an array of its values.
*
Expand Down Expand Up @@ -6618,6 +6604,29 @@
return array;
}

/**
* Gets the value at `key`, unless `key` is "__proto__" or "prototype".
*
* @private
* @param {Object} object The object to query.
* @param {string} key The key of the property to get.
* @returns {*} Returns the property value.
*/
function safeGet(object, key) {
if (key == '__proto__') {
return;
}

var value = object[key];

if (key == 'prototype' &&
value === objectProto) {
return;
}

return value;
}

/**
* Sets metadata for `func`.
*
Expand Down
11 changes: 11 additions & 0 deletions test/test.js
Expand Up @@ -7554,6 +7554,17 @@
skipAssert(assert);
}
});

QUnit.test('should not merge `Object.prototype` properties', function(assert) {
assert.expect(1);

_.merge({}, { 'constructor': { 'prototype': { 'a': 1 } } });

var actual = 'a' in objectProto;
delete objectProto.a;

assert.notOk(actual);
});
}());

/*--------------------------------------------------------------------------*/
Expand Down

0 comments on commit 90e6199

Please sign in to comment.