forked from cure53/DOMPurify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurify.js
524 lines (443 loc) · 20.8 KB
/
purify.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
/* jshint boss: true */
/* global Text, module */
;(function(root, factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
define(factory);
} else if (typeof module !== 'undefined') {
module.exports = factory();
} else {
root.DOMPurify = factory();
}
}(this, function() {
'use strict';
var DOMPurify = {};
var hooks = {};
/**
* Version label, exposed for easier checks
* if DOMPurfy is up to date or not
*/
DOMPurify.version = '0.6.0';
/**
* sanitize
* Public method providing core sanitation functionality
*
* @param {mixed} dirty string or DOM
* @param {Object} configuration object
*/
DOMPurify.sanitize = function(dirty, cfg) {
/**
* We consider the elements and attributes below to be safe. Ideally
* don't add any new ones but feel free to remove unwanted ones.
*/
/* allowed element names */
var ALLOWED_TAGS = [
// HTML
'a','abbr','acronym','address','area','article','aside','audio','b',
'bdi','bdo','big','blink','blockquote','body','br','button','canvas',
'caption','center','cite','code','col','colgroup','content','data',
'datalist','dd','decorator','del','details','dfn','dir','div','dl','dt',
'element','em','fieldset','figcaption','figure','font','footer','form',
'h1','h2','h3','h4','h5','h6','head','header','hgroup','hr','html','i',
'img','input','ins','kbd','label','legend','li','main','map','mark',
'marquee','menu','menuitem','meter','nav','nobr','ol','optgroup',
'option','output','p','pre','progress','q','rp','rt','ruby','s','samp',
'section','select','shadow','small','source','spacer','span','strike',
'strong','style','sub','summary','sup','table','tbody','td','template',
'textarea','tfoot','th','thead','time','tr','track','tt','u','ul','var',
'video','wbr',
// SVG
'svg','altglyph','altglyphdef','altglyphitem','animatecolor',
'animatemotion','animatetransform','circle','clippath','defs','desc',
'ellipse','font','g','glyph','glyphref','hkern','image','line',
'lineargradient','marker','mask','metadata','mpath','path','pattern',
'polygon','polyline','radialgradient','rect','stop','switch','symbol',
'text','textpath','title','tref','tspan','view','vkern',
//MathML
'math','menclose','merror','mfenced','mfrac','mglyph','mi','mlabeledtr',
'mmuliscripts','mn','mo','mover','mpadded','mphantom','mroot','mrow',
'ms','mpspace','msqrt','mystyle','msub','msup','msubsup','mtable','mtd',
'mtext','mtr','munder','munderover',
//Text
'#text'
];
/* Decide if custom data attributes are okay */
var ALLOW_DATA_ATTR = true;
/* Allowed attribute names */
var ALLOWED_ATTR = [
// HTML
'accept','action','align','alt','autocomplete','bgcolor','border',
'checked','cite','class','color','cols','colspan','coords','datetime',
'default','dir','disabled','download','enctype','for','headers','height',
'hidden','high','href','hreflang','id','ismap','label','lang','list',
'loop', 'low','max','maxlength','media','method','min','multiple',
'name','novalidate','open','optimum','pattern','placeholder','poster',
'preload','pubdate','radiogroup','readonly','rel','required','rev',
'reversed','rows','rowspan','spellcheck','scope','selected','shape',
'size','span','srclang','start','src','step','style','summary','tabindex',
'title','type','usemap','valign','value','width','xmlns',
// SVG
'accent-height','accumulate','additivive','alignment-baseline',
'ascent','azimuth','baseline-shift','bias','clip','clip-path',
'clip-rule','color','color-interpolation','color-interpolation-filters',
'color-profile','color-rendering','cx','cy','d','dy','dy','direction',
'display','divisor','dur','elevation','end','fill','fill-opacity',
'fill-rule','filter','flood-color','flood-opacity','font-family',
'font-size','font-size-adjust','font-stretch','font-style','font-variant',
'front-weight','image-rendering','in','in2','k1','k2','k3','k4','kerning',
'letter-spacing','lighting-color','local','marker-end','marker-mid',
'marker-start','max','mask','mode','min','operator','opacity','order',
'overflow','paint-order','path','points','r','rx','ry','radius','restart',
'scale','seed','shape-rendering','stop-color','stop-opacity',
'stroke-dasharray','stroke-dashoffset','stroke-linecap','stroke-linejoin',
'stroke-miterlimit','stroke-opacity','stroke','stroke-width','transform',
'text-anchor','text-decoration','text-rendering','u1','u2','viewbox',
'visibility','word-spacing','wrap','writing-mode','x','x1','x2','y',
'y1','y2','z',
// MathML
'accent','accentunder','bevelled','close','columnsalign','columnlines',
'columnspan','denomalign','depth','display','displaystyle','fence',
'frame','largeop','length','linethickness','lspace','lquote',
'mathbackground','mathcolor','mathsize','mathvariant','maxsize',
'minsize','movablelimits','notation','numalign','open','rowalign',
'rowlines','rowspacing','rowspan','rspace','rquote','scriptlevel',
'scriptminsize','scriptsizemultiplier','selection','separator',
'separators','stretchy','subscriptshift','supscriptshift','symmetric',
'voffset',
// XML
'xlink:href','xml:id','xlink:title','xml:space'
];
/* Explicitly forbidden attributes (overrides ALLOWED_ATTR/ADD_ATTR) */
var FORBID_ATTR = [];
/* Explicitly forbidden tags (overrides ALLOWED_TAGS/ADD_TAGS) */
var FORBID_TAGS = [];
/* Decide if document with <html>... should be returned */
var WHOLE_DOCUMENT = false;
/* Decide if a DOM node or a string should be returned */
var RETURN_DOM = false;
/* Output should be safe for jQuery's $() factory? */
var SAFE_FOR_JQUERY = false;
/* Output should be free from DOM clobbering attacks? */
var SANITIZE_DOM = true;
/* Keep element content when removing element? */
var KEEP_CONTENT = true;
/* Tags to keep content from (when KEEP_CONTENT is true) */
var CONTENT_TAGS = [
'a','abbr','acronym','address','article','aside','b','bdi','bdo',
'big','blink','blockquote','caption','center','cite','code','col',
'dd','del','details','dfn','dir','div','dl','dt','em','figcaption',
'figure','footer','h1','h2','h3','h4','h5','h6','header','i','ins',
'kbd','label','legend','li','main','mark','marquee','nav','ol',
'output','p','pre','q','rp','rt','ruby','s','samp','section','small',
'span','strike','strong','sub','summary','sup','table','tbody','td',
'tfoot','th','thead','time','tr','tt','u','ul','var'
];
var DEBUG_OUTPUT = false;
/* Ideally, do not touch anything below this line */
/* ______________________________________________ */
/**
* _parseConfig
*
* @param optional config literal
*/
var _parseConfig = function(cfg) {
/* Shield configuration object from tampering */
if (typeof cfg !== 'object') {
cfg = {};
}
/* Set configuration parameters */
'ALLOWED_ATTR' in cfg ? ALLOWED_ATTR = cfg.ALLOWED_ATTR : null;
'ALLOWED_TAGS' in cfg ? ALLOWED_TAGS = cfg.ALLOWED_TAGS : null;
'FORBID_ATTR' in cfg ? FORBID_ATTR = cfg.FORBID_ATTR : null;
'FORBID_TAGS' in cfg ? FORBID_TAGS = cfg.FORBID_TAGS : null;
'ALLOW_DATA_ATTR' in cfg ? ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR : null;
'SAFE_FOR_JQUERY' in cfg ? SAFE_FOR_JQUERY = cfg.SAFE_FOR_JQUERY : null;
'WHOLE_DOCUMENT' in cfg ? WHOLE_DOCUMENT = cfg.WHOLE_DOCUMENT : null;
'RETURN_DOM' in cfg ? RETURN_DOM = cfg.RETURN_DOM : null;
'SANITIZE_DOM' in cfg ? SANITIZE_DOM = cfg.SANITIZE_DOM : null;
'KEEP_CONTENT' in cfg ? KEEP_CONTENT = cfg.KEEP_CONTENT : null;
'DEBUG_OUTPUT' in cfg ? DEBUG_OUTPUT = cfg.DEBUG_OUTPUT : null;
/* Merge configuration parameters */
cfg.ADD_ATTR ? ALLOWED_ATTR = ALLOWED_ATTR.concat(cfg.ADD_ATTR) : null;
cfg.ADD_TAGS ? ALLOWED_TAGS = ALLOWED_TAGS.concat(cfg.ADD_TAGS) : null;
/* Add #text in case KEEP_CONTENT is set to true */
KEEP_CONTENT ? ALLOWED_TAGS.push('#text') : null;
// Prevent further manipulation of configuration.
// Not available in IE8, Safari 5, etc.
if (Object && 'freeze' in Object) { Object.freeze(cfg); }
};
/**
* _initDocument
*
* @param a string of dirty markup
* @return a DOM, filled with the dirty markup
*/
var _initDocument = function(dirty) {
/* Exit directly if we have nothing to do */
if (typeof dirty === 'string' && dirty.indexOf('<') === -1) {
return dirty;
}
/* Create documents to map markup to */
var dom = document.implementation.createHTMLDocument('');
dom.body.parentNode.removeChild(dom.body.parentNode.firstElementChild);
dom.body.outerHTML = dirty;
/* Work on whole document or just its body */
var body = WHOLE_DOCUMENT ? dom.body.parentNode : dom.body;
if (
!(dom.body instanceof HTMLBodyElement) ||
!(dom.body instanceof HTMLHtmlElement)
) {
var freshdom = document.implementation.createHTMLDocument('');
body = WHOLE_DOCUMENT
? freshdom.getElementsByTagName.call(dom,'html')[0]
: freshdom.getElementsByTagName.call(dom,'body')[0];
}
return body;
};
/**
* _createIterator
*
* @param document/fragment to create iterator for
* @return iterator instance
*/
var _createIterator = function(doc) {
return document.createNodeIterator(
doc,
NodeFilter.SHOW_ELEMENT
| NodeFilter.SHOW_COMMENT
| NodeFilter.SHOW_TEXT,
function() { return NodeFilter.FILTER_ACCEPT; },
false
);
};
/**
* _isClobbered
*
* @param element to check for clobbering attacks
* @return true if clobbered, false if safe
*/
var _isClobbered = function(elm) {
if (elm instanceof Text) {
return false;
}
if (
(elm.children && !(elm.children instanceof HTMLCollection))
|| (elm.attributes instanceof HTMLCollection)
|| (elm.attributes instanceof NodeList)
|| (elm.insertAdjacentHTML && typeof elm.insertAdjacentHTML !== 'function')
|| (elm.outerHTML && typeof elm.outerHTML !== 'string')
|| typeof elm.nodeName !== 'string'
|| typeof elm.textContent !== 'string'
|| typeof elm.nodeType !== 'number'
|| typeof elm.COMMENT_NODE !== 'number'
|| typeof elm.setAttribute !== 'function'
|| typeof elm.cloneNode !== 'function'
|| typeof elm.removeAttributeNode !== 'function'
|| typeof elm.removeChild !== 'function'
|| typeof elm.attributes.item !== 'function'
|| (elm.id === 'implementation' || elm.name === 'implementation')
|| (elm.id === 'createNodeIterator' || elm.name === 'createNodeIterator')
) {
return true;
}
return false;
};
/**
* _sanitizeElements
*
* @protect removeChild
* @protect nodeType
* @protect nodeName
* @protect textContent
* @protect outerHTML
* @protect currentNode
* @protect insertAdjacentHTML
*
* @param node to check for permission to exist
* @return true if node was killed, false if left alive
*/
var _sanitizeElements = function(currentNode) {
/* Execute a hook if present */
_executeHook('beforeSantitizeElements', currentNode);
/* Check if element is clobbered or can clobber */
if (_isClobbered(currentNode)) {
/* Be harsh with clobbered content, element has to go! */
try{
currentNode.parentNode.removeChild(currentNode);
} catch(e){
currentNode.outerHTML='';
}
return true;
}
/* Now let's check the element's type and name */
if (currentNode.nodeType === currentNode.COMMENT_NODE
|| ALLOWED_TAGS.indexOf(currentNode.nodeName.toLowerCase()) === -1
|| FORBID_TAGS.indexOf(currentNode.nodeName.toLowerCase()) > -1
) {
/* Keep content for white-listed elements */
if (KEEP_CONTENT && currentNode.insertAdjacentHTML
&& currentNode.nodeName.toLowerCase
&& CONTENT_TAGS.indexOf(currentNode.nodeName.toLowerCase()) !== -1){
try {
currentNode.insertAdjacentHTML('AfterEnd', currentNode.innerHTML);
} catch(e) {}
}
/* Remove element if anything permits its presence */
currentNode.parentNode.removeChild(currentNode);
return true;
}
/* Finally, convert markup to cover jQuery behavior */
if (SAFE_FOR_JQUERY && !currentNode.firstElementChild) {
currentNode.innerHTML = currentNode.textContent.replace(/</g, '<');
}
/* Execute a hook if present */
_executeHook('afterSantitizeElements', currentNode);
return false;
};
/**
* _sanitizeAttributes
*
* @protect attributes
* @protect removeAttribiuteNode
* @protect setAttribute
* @protect cloneNode
*
* @param node to sanitize
* @return void
*/
var _sanitizeAttributes = function(currentNode) {
/* Execute a hook if present */
_executeHook('beforeSantitizeAttributes', currentNode);
var regex = /^(\w+script|data):/gi,
clonedNode = currentNode.cloneNode(true),
tmp, clobbering;
/* This needs to be extensive thanks to Webkit/Blink's behavior */
var whitespace = /[\x00-\x20\xA0\u1680\u180E\u2000-\u2029\u205f\u3000]/g;
/* Check if we have attributes; if not we might have a text node */
if (!currentNode.attributes) { return; }
/* Go backwards over all attributes; safely remove bad ones */
for (var attr = currentNode.attributes.length-1; attr >= 0; attr--) {
tmp = clonedNode.attributes[attr];
clobbering = false;
currentNode.removeAttribute(currentNode.attributes[attr].name);
if (!tmp instanceof Attr) { continue; }
if(SANITIZE_DOM) {
if((tmp.name === 'id' || tmp.name === 'name')
&& (tmp.value in window || tmp.value in document)) {
clobbering = true;
}
}
/* Safely handle attributes */
if (
((ALLOWED_ATTR.indexOf(tmp.name.toLowerCase()) > -1 &&
FORBID_ATTR.indexOf(tmp.name.toLowerCase()) === -1) ||
(ALLOW_DATA_ATTR && tmp.name.match(/^data-[\w-]+/i)))
/* Get rid of script and data URIs */
&& (!tmp.value.replace(whitespace,'').match(regex)
/* Keep image data URIs alive if src is allowed */
|| (tmp.name === 'src'
&& tmp.value.indexOf('data:') === 0
&& currentNode.nodeName === 'IMG'))
/* Make sure attribute cannot clobber */
&& !clobbering
) {
/* Handle invalid data attributes safely by try-catching it and do nothing */
try {
currentNode.setAttribute(tmp.name, tmp.value);
} catch (e) {}
}
}
/* Execute a hook if present */
_executeHook('afterSantitizeAttributes', currentNode);
};
/**
* _sanitizeShadowDOM
*
* @param fragment to iterate over recursively
* @return void
*/
var _sanitizeShadowDOM = function(fragment) {
var shadowNode;
var shadowIterator = _createIterator(fragment);
/* Execute a hook if present */
_executeHook('beforeSantitizeShadowDOM', currentNode);
while (shadowNode = shadowIterator.nextNode()) {
/* Sanitize tags and elements */
if (_sanitizeElements(shadowNode)) {
continue;
}
/* Deep shadow DOM detected */
if (shadowNode.content instanceof DocumentFragment) {
_sanitizeShadowDOM(shadowNode.content);
}
/* Check attributes, sanitize if necessary */
_sanitizeAttributes(shadowNode);
}
/* Execute a hook if present */
_executeHook('afterSantitizeShadowDOM', currentNode);
};
/**
* _executeHook
* Execute user configurable hooks
*
* @param {String} entryPoint Name of the hook's entry point
* @param {Node} currentNode
*/
var _executeHook = function(entryPoint, currentNode) {
if (!hooks[entryPoint]) { return; }
hooks[entryPoint].forEach(function(hook) {
hook.call(DOMPurify, currentNode, cfg);
});
};
/* Feature check and untouched opt-out return */
if (typeof document.implementation.createHTMLDocument === 'undefined'
|| (typeof document.documentMode === 'number' && document.documentMode === 9)) {
if (typeof window.toStaticHTML === 'function' && typeof dirty === 'string') {
return window.toStaticHTML(dirty);
}
return dirty;
}
/* Assign config vars */
cfg ? _parseConfig(cfg) : null;
/* Initialize the document to work on */
var body = _initDocument(dirty);
/* Early exit in case document is empty */
if (typeof body !== 'object') {
return body ? body : '';
}
/* Get node iterator */
var currentNode;
var nodeIterator = _createIterator(body);
/* Now start iterating over the created document */
while (currentNode = nodeIterator.nextNode()) {
/* Sanitize tags and elements */
if (_sanitizeElements(currentNode)) {
continue;
}
/* Shadow DOM detected, sanitize it */
if (currentNode.content instanceof DocumentFragment) {
_sanitizeShadowDOM(currentNode.content);
}
/* Check attributes, sanitize if necessary */
_sanitizeAttributes(currentNode);
}
/* Return sanitized string or DOM */
if (RETURN_DOM) {
return body;
}
return WHOLE_DOCUMENT ? body.outerHTML : body.innerHTML;
};
/**
* addHook
* Public method to add DOMPurify hooks
*
* @param {String} entryPoint
* @param {Function} hookFunction
*/
DOMPurify.addHook = function(entryPoint, hookFunction) {
if (typeof hookFunction !== 'function') { return; }
hooks[entryPoint] = hooks[entryPoint] || [];
hooks[entryPoint].push(hookFunction);
};
return DOMPurify;
}));