Skip to content

Commit e242e9b

Browse files
fix(angular.merge): do not merge __proto__ property
By blocking `__proto__` on deep merging, this commit prevents the `Object` prototype from being polluted.
1 parent 33b5c50 commit e242e9b

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

src/Angular.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,10 @@ function baseExtend(dst, objs, deep) {
386386
} else if (isElement(src)) {
387387
dst[key] = src.clone();
388388
} else {
389-
if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {};
390-
baseExtend(dst[key], [src], true);
389+
if (key !== '__proto__') {
390+
if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {};
391+
baseExtend(dst[key], [src], true);
392+
}
391393
}
392394
} else {
393395
dst[key] = src;

test/AngularSpec.js

+13
Original file line numberDiff line numberDiff line change
@@ -811,6 +811,19 @@ describe('angular', function() {
811811
expect(isElement(dst.jqObject)).toBeTruthy();
812812
expect(dst.jqObject.nodeName).toBeUndefined(); // i.e it is a jqLite/jQuery object
813813
});
814+
815+
it('should not merge the __proto__ property', function() {
816+
var src = JSON.parse('{ "__proto__": { "xxx": "polluted" } }');
817+
var dst = {};
818+
819+
merge(dst, src);
820+
821+
if (typeof dst.__proto__ !== 'undefined') { // eslint-disable-line
822+
// Should not overwrite the __proto__ property or pollute the Object prototype
823+
expect(dst.__proto__).toBe(Object.prototype); // eslint-disable-line
824+
}
825+
expect(({}).xxx).toBeUndefined();
826+
});
814827
});
815828

816829

0 commit comments

Comments
 (0)