2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2017-03-02 15:12:46 -05:00
|
|
|
import * as t from '@angular/core/testing/src/testing_internal';
|
|
|
|
import {browserDetection} from '@angular/platform-browser/testing/src/browser_util';
|
2016-04-30 22:02:05 -04:00
|
|
|
|
|
|
|
import {getDOM} from '../../src/dom/dom_adapter';
|
|
|
|
import {sanitizeHtml} from '../../src/security/html_sanitizer';
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
t.describe('HTML sanitizer', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
let defaultDoc: any;
|
2016-04-30 22:02:05 -04:00
|
|
|
let originalLog: (msg: any) => any = null;
|
|
|
|
let logMsgs: string[];
|
|
|
|
|
|
|
|
t.beforeEach(() => {
|
2017-02-14 19:14:40 -05:00
|
|
|
defaultDoc = getDOM().supportsDOMEvents() ? document : getDOM().createHtmlDocument();
|
2016-04-30 22:02:05 -04:00
|
|
|
logMsgs = [];
|
|
|
|
originalLog = getDOM().log; // Monkey patch DOM.log.
|
|
|
|
getDOM().log = (msg) => logMsgs.push(msg);
|
|
|
|
});
|
|
|
|
t.afterEach(() => { getDOM().log = originalLog; });
|
|
|
|
|
|
|
|
t.it('serializes nested structures', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<div alt="x"><p>a</p>b<b>c<a alt="more">d</a></b>e</div>'))
|
2016-04-30 22:02:05 -04:00
|
|
|
.toEqual('<div alt="x"><p>a</p>b<b>c<a alt="more">d</a></b>e</div>');
|
|
|
|
t.expect(logMsgs).toEqual([]);
|
|
|
|
});
|
|
|
|
t.it('serializes self closing elements', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<p>Hello <br> World</p>'))
|
|
|
|
.toEqual('<p>Hello <br> World</p>');
|
2016-04-30 22:02:05 -04:00
|
|
|
});
|
2016-06-08 19:38:52 -04:00
|
|
|
t.it('supports namespaced elements', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, 'a<my:hr/><my:div>b</my:div>c')).toEqual('abc');
|
2016-06-08 19:38:52 -04:00
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
t.it('supports namespaced attributes', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<a xlink:href="something">t</a>'))
|
2016-04-30 22:02:05 -04:00
|
|
|
.toEqual('<a xlink:href="something">t</a>');
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<a xlink:evil="something">t</a>')).toEqual('<a>t</a>');
|
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<a xlink:href="javascript:foo()">t</a>'))
|
2016-04-30 22:02:05 -04:00
|
|
|
.toEqual('<a xlink:href="unsafe:javascript:foo()">t</a>');
|
|
|
|
});
|
2016-06-27 15:18:48 -04:00
|
|
|
t.it('supports HTML5 elements', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<main><summary>Works</summary></main>'))
|
2016-06-27 15:18:48 -04:00
|
|
|
.toEqual('<main><summary>Works</summary></main>');
|
|
|
|
});
|
|
|
|
t.it('sanitizes srcset attributes', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<img srcset="/foo.png 400px, javascript:evil() 23px">'))
|
2016-06-27 15:18:48 -04:00
|
|
|
.toEqual('<img srcset="/foo.png 400px, unsafe:javascript:evil() 23px">');
|
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
t.it('supports sanitizing plain text', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, 'Hello, World')).toEqual('Hello, World');
|
2016-06-08 19:38:52 -04:00
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
t.it('ignores non-element, non-attribute nodes', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<!-- comments? -->no.')).toEqual('no.');
|
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<?pi nodes?>no.')).toEqual('no.');
|
2016-05-09 10:46:31 -04:00
|
|
|
t.expect(logMsgs.join('\n')).toMatch(/sanitizing HTML stripped some content/);
|
2016-04-30 22:02:05 -04:00
|
|
|
});
|
2016-06-23 16:06:19 -04:00
|
|
|
t.it('supports sanitizing escaped entities', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '🚀')).toEqual('🚀');
|
2016-06-23 16:06:19 -04:00
|
|
|
t.expect(logMsgs).toEqual([]);
|
|
|
|
});
|
2016-07-26 14:39:09 -04:00
|
|
|
t.it('does not warn when just re-encoding text', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<p>Hellö Wörld</p>'))
|
|
|
|
.toEqual('<p>Hellö Wörld</p>');
|
2016-07-26 14:39:09 -04:00
|
|
|
t.expect(logMsgs).toEqual([]);
|
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
t.it('escapes entities', () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<p>Hello < World</p>'))
|
|
|
|
.toEqual('<p>Hello < World</p>');
|
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<p>Hello < World</p>')).toEqual('<p>Hello < World</p>');
|
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<p alt="% & " !">Hello</p>'))
|
2016-04-30 22:02:05 -04:00
|
|
|
.toEqual('<p alt="% & " !">Hello</p>'); // NB: quote encoded as ASCII ".
|
|
|
|
});
|
|
|
|
t.describe('should strip dangerous elements', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const dangerousTags = [
|
2016-06-08 19:38:52 -04:00
|
|
|
'frameset', 'form', 'param', 'object', 'embed', 'textarea', 'input', 'button', 'option',
|
|
|
|
'select', 'script', 'style', 'link', 'base', 'basefont'
|
2016-04-30 22:02:05 -04:00
|
|
|
];
|
|
|
|
|
2016-11-12 08:08:58 -05:00
|
|
|
for (const tag of dangerousTags) {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.it(`${tag}`, () => {
|
|
|
|
t.expect(sanitizeHtml(defaultDoc, `<${tag}>evil!</${tag}>`)).toEqual('evil!');
|
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
}
|
2016-06-08 19:38:52 -04:00
|
|
|
t.it(`swallows frame entirely`, () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, `<frame>evil!</frame>`)).not.toContain('<frame>');
|
2016-06-08 19:38:52 -04:00
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
});
|
|
|
|
t.describe('should strip dangerous attributes', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const dangerousAttrs = ['id', 'name', 'style'];
|
2016-04-30 22:02:05 -04:00
|
|
|
|
2016-11-12 08:08:58 -05:00
|
|
|
for (const attr of dangerousAttrs) {
|
2016-06-08 19:38:52 -04:00
|
|
|
t.it(`${attr}`, () => {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, `<a ${attr}="x">evil!</a>`)).toEqual('<a>evil!</a>');
|
2016-06-08 19:38:52 -04:00
|
|
|
});
|
2016-04-30 22:02:05 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (browserDetection.isWebkit) {
|
|
|
|
t.it('should prevent mXSS attacks', function() {
|
2017-02-14 19:14:40 -05:00
|
|
|
t.expect(sanitizeHtml(defaultDoc, '<a href=" javascript:alert(1)">CLICKME</a>'))
|
2016-04-30 22:02:05 -04:00
|
|
|
.toEqual('<a href="unsafe:javascript:alert(1)">CLICKME</a>');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|