Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit ebe9005

Browse files
fix(Angular): do not auto bootstrap if the currentScript has been clobbered
1 parent a649758 commit ebe9005

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/Angular.js

+5
Original file line numberDiff line numberDiff line change
@@ -1538,6 +1538,11 @@ function allowAutoBootstrap(document) {
15381538
return true;
15391539
}
15401540

1541+
// If the `currentScript` property has been clobbered just return false, since this indicates a probable attack
1542+
if (!(script instanceof window.HTMLScriptElement || script instanceof window.SVGScriptElement)) {
1543+
return false;
1544+
}
1545+
15411546
var srcs = [script.getAttribute('src'), script.getAttribute('href'), script.getAttribute('xlink:href')];
15421547

15431548
return srcs.every(function(src) {

test/AngularSpec.js

+7
Original file line numberDiff line numberDiff line change
@@ -1784,6 +1784,13 @@ describe('angular', function() {
17841784
expect(allowAutoBootstrap(createFakeDoc({src: 'resource://something', href: 'http://something', 'xlink:href': 'http://something'}))).toBe(false);
17851785
});
17861786

1787+
it('should not bootstrap if the currentScript property has been clobbered', function() {
1788+
1789+
var img = document.createElement('img');
1790+
img.setAttribute('src', '');
1791+
expect(allowAutoBootstrap(createFakeDoc({}, 'http:', img))).toBe(false);
1792+
});
1793+
17871794
it('should not bootstrap if bootstrapping is disabled', function() {
17881795
isAutoBootstrapAllowed = false;
17891796
angularInit(jqLite('<div ng-app></div>')[0], bootstrapSpy);

0 commit comments

Comments
 (0)