UNPKG

18.7 kBMarkdownView Raw
1# DOMPurify
2
3[![Bower version](https://badge.fury.io/bo/dompurify.svg)](http://badge.fury.io/bo/dompurify) · [![npm version](https://badge.fury.io/js/dompurify.svg)](http://badge.fury.io/js/dompurify) · [![Build Status](https://travis-ci.org/cure53/DOMPurify.svg)](https://travis-ci.org/cure53/DOMPurify) · [![Downloads](https://img.shields.io/npm/dm/dompurify.svg)](https://www.npmjs.com/package/dompurify) · [![gzip size](http://img.badgesize.io/https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js?compression=gzip)](https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js) · [![install size](https://badgen.net/packagephobia/install/dompurify)](https://packagephobia.now.sh/result?p=dompurify)
4
5[![NPM](https://nodei.co/npm/dompurify.png)](https://nodei.co/npm/dompurify/)
6
7DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG.
8
9It's also very simple to use and get started with. DOMPurify was [started in February 2014](https://github.com/cure53/DOMPurify/commit/a630922616927373485e0e787ab19e73e3691b2b) and, meanwhile, has reached version 1.0.10.
10
11DOMPurify is written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Edge, Firefox and Chrome - as well as almost anything else using Blink or WebKit). It doesn't break on MSIE6 or other legacy browsers. It either uses [a fall-back](#what-about-older-browsers-like-msie8) or simply does nothing.
12
13Our automated tests cover [25 different browsers](https://github.com/cure53/DOMPurify/blob/master/test/karma.custom-launchers.config.js#L5) right now, more to come. We also cover Node.js v8.0.0, v9.0.0 and v10.0.0, running DOMPurify on [jsdom](https://github.com/tmpvar/jsdom).
14
15DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not. For more details please also read about our [Security Goals & Threat Model](https://github.com/cure53/DOMPurify/wiki/Security-Goals-&-Threat-Model). Please, read it. Like, really.
16
17## What does it do?
18
19DOMPurify sanitizes HTML and prevents XSS attacks. You can feed DOMPurify with string full of dirty HTML and it will return a string with clean HTML. DOMPurify will strip out everything that contains dangerous HTML and thereby prevent XSS attacks and other nastiness. It's also damn bloody fast. We use the technologies the browser provides and turn them into an XSS filter. The faster your browser, the faster DOMPurify will be.
20
21## How do I use it?
22
23It's easy. Just include DOMPurify on your website.
24
25### Using the unminified development version
26
27```html
28<script type="text/javascript" src="src/purify.js"></script>
29```
30
31### Using the minified and tested production version (source-map available)
32
33```html
34<script type="text/javascript" src="dist/purify.min.js"></script>
35```
36
37Afterwards you can sanitize strings by executing the following code:
38
39```javascript
40var clean = DOMPurify.sanitize(dirty);
41```
42
43The resulting HTML can be written into a DOM element using `innerHTML` or the DOM using `document.write()`. That is fully up to you. But keep in mind, if you use the sanitized HTML with jQuery's very insecure `elm.html()` method, then the `SAFE_FOR_JQUERY` flag has to be set to make sure it's safe! Other than that, all is fine.
44
45After sanitizing your markup, you can also have a look at the property `DOMPurify.removed` and find out, what elements and attributes were thrown out.
46
47If you're using an [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) module loader like [Require.js](http://requirejs.org/), you can load this script asynchronously as well:
48
49```javascript
50require(['dompurify'], function(DOMPurify) {
51 var clean = DOMPurify.sanitize(dirty);
52});
53```
54
55DOMPurify also works server-side with node.js as well as client-side via [Browserify](http://browserify.org/) or similar translators. Node.js 0.x is not supported; either [io.js](https://iojs.org) or Node.js 4.x or newer is required.
56
57```bash
58npm install dompurify
59```
60For JSDOM v10 or newer
61```javascript
62const createDOMPurify = require('dompurify');
63const { JSDOM } = require('jsdom');
64
65const window = (new JSDOM('')).window;
66const DOMPurify = createDOMPurify(window);
67
68const clean = DOMPurify.sanitize(dirty);
69```
70
71For JSDOM versions older than v10
72```javascript
73const createDOMPurify = require('dompurify');
74const jsdom = require('jsdom').jsdom;
75
76const window = jsdom('').defaultView;
77const DOMPurify = createDOMPurify(window);
78
79const clean = DOMPurify.sanitize(dirty);
80```
81
82## Is there a demo?
83
84Of course there is a demo! [Play with DOMPurify](https://cure53.de/purify)
85
86## What if I find a bypass?
87
88If that happens, you probably qualify for a juicy bug bounty! The fine folks over at [FastMail](https://www.fastmail.com/) use DOMPurify for their services and added our library to their bug bounty scope. So, if you find a way to bypass or weaken DOMPurify, please have a look at their website and the [bug bounty info](https://www.fastmail.com/about/bugbounty.html).
89
90## Some purification samples please?
91
92How does purified markup look like? Well, [the demo](https://cure53.de/purify) shows it for a big bunch of nasty elements. But let's also show some smaller examples!
93
94```javascript
95DOMPurify.sanitize('<img src=x onerror=alert(1)//>'); // becomes <img src="x">
96DOMPurify.sanitize('<svg><g/onload=alert(2)//<p>'); // becomes <svg><g></g></svg>
97DOMPurify.sanitize('<p>abc<iframe/\/src=jAva&Tab;script:alert(3)>def'); // becomes <p>abcdef</p>
98DOMPurify.sanitize('<math><mi//xlink:href="data:x,<script>alert(4)</script>">'); // becomes <math><mi></mi></math>
99DOMPurify.sanitize('<TABLE><tr><td>HELLO</tr></TABL>'); // becomes <table><tbody><tr><td>HELLO</td></tr></tbody></table>
100DOMPurify.sanitize('<UL><li><A HREF=//google.com>click</UL>'); // becomes <ul><li><a href="//google.com">click</a></li></ul>
101```
102
103## What is supported?
104
105DOMPurify currently supports HTML5, SVG and MathML. DOMPurify per default allows CSS, HTML custom data attributes. DOMPurify also supports the Shadow DOM - and sanitizes DOM templates recursively. DOMPurify also allows you to sanitize HTML for being used with the jQuery `$()` and `elm.html()` methods but requires the `SAFE_FOR_JQUERY` flag for that - see below.
106
107## What about older browsers like MSIE8?
108
109DOMPurify offers a fall-back behavior for older MSIE browsers. It uses the MSIE-only `toStaticHTML` feature to sanitize. Note however that in this fall-back mode, pretty much none of the configuration flags shown below have any effect. You need to handle that yourself.
110
111If not even `toStaticHTML` is supported, DOMPurify does nothing at all. It simply returns exactly the string that you fed it.
112
113## What about DOMPurify and Trusted Types?
114
115In version 1.0.9, support for [Trusted Types API](https://github.com/WICG/trusted-types) was added to DOMPurify.
116
117When `DOMPurify.sanitize` is used in the environment where the Trusted Types API is available (this happens e.g. in Chrome `chrome://flags/#enable-experimental-web-platform-features`), it returns a `TrustedHTML` value instead of a string (the behavior for `RETURN_DOM`, `RETURN_DOM_FRAGMENT`, and `RETURN_DOM_IMPORT` config options does not change).
118
119That return value is implicitly casted to a string when needed, returning the actual sanitized HTML snippet. In particular, you can directly use it with DOM sinks like `innerHTML`, or concatenate it with other strings. For most use cases, the API change does not introduce any visible change.
120
121That said, `TrustedHTML` values are intentionally immutable, and don't inherit from `String.prototype`. In rare cases where you expect the value to implement String prototype functions (e.g. if you want to `String.replace` the sanitized output), cast the value to a string like so:
122
123```javascript
124const sanitizedAsString = (DOMPurify.sanitize(foo) + '');
125sanitizedAsString.replace(...)
126```
127
128Please note, that if that change breaks your application, you *might* be doing something wrong. The sanitized HTML snippet should not be modified, as it might introduce XSS vulnerabilities.
129
130## Can I configure DOMPurify?
131
132Yes. The included default configuration values are pretty good already - but you can of course override them. Check out the [`/demos`](https://github.com/cure53/DOMPurify/tree/master/demos) folder to see a bunch of examples on how you can [customize DOMPurify](https://github.com/cure53/DOMPurify/tree/master/demos#what-is-this).
133
134```javascript
135// make output safe for usage in jQuery's $()/html() method (default is false)
136var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_JQUERY: true});
137
138// strip {{ ... }} and <% ... %> to make output safe for template systems
139// be careful please, this mode is not recommended for production usage.
140// allowing template parsing in user-controlled HTML is not advised at all.
141// only use this mode if there is really no alternative.
142var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
143
144// allow only <b>
145var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
146
147// allow only <b> and <q> with style attributes (for whatever reason)
148var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
149
150// allow all safe HTML elements but neither SVG nor MathML
151var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
152
153// allow all safe SVG elements and SVG Filters
154var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
155
156// allow all safe MathML elements and SVG
157var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
158
159// leave all as it is but forbid <style>
160var clean = DOMPurify.sanitize(dirty, {FORBID_TAGS: ['style']});
161
162// leave all as it is but forbid style attributes
163var clean = DOMPurify.sanitize(dirty, {FORBID_ATTR: ['style']});
164
165// extend the existing array of allowed tags
166var clean = DOMPurify.sanitize(dirty, {ADD_TAGS: ['my-tag']});
167
168// extend the existing array of attributes
169var clean = DOMPurify.sanitize(dirty, {ADD_ATTR: ['my-attr']});
170
171// prohibit HTML5 data attributes (default is true)
172var clean = DOMPurify.sanitize(dirty, {ALLOW_DATA_ATTR: false});
173
174// allow external protocol handlers in URL attributes (default is false)
175// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
176var clean = DOMPurify.sanitize(dirty, {ALLOW_UNKNOWN_PROTOCOLS: true});
177
178// allow specific protocols handlers in URL attributes (default is false)
179// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
180// Default RegExp: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;
181var clean = DOMPurify.sanitize(dirty, {ALLOWED_URI_REGEXP: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp|xxx):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;});
182
183// return a DOM HTMLBodyElement instead of an HTML string (default is false)
184var clean = DOMPurify.sanitize(dirty, {RETURN_DOM: true});
185
186// return a DOM DocumentFragment instead of an HTML string (default is false)
187var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true});
188
189// return a DOM DocumentFragment instead of an HTML string (default is false)
190// also import it into the current document (default is false).
191// RETURN_DOM_IMPORT must be set if you would like to append
192// the returned node to the current document
193var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true, RETURN_DOM_IMPORT: true});
194document.body.appendChild(clean);
195
196// return entire document including <html> tags (default is false)
197var clean = DOMPurify.sanitize(dirty, {WHOLE_DOCUMENT: true});
198
199// disable DOM Clobbering protection on output (default is true, handle with care!)
200var clean = DOMPurify.sanitize(dirty, {SANITIZE_DOM: false});
201
202// discard an element's content when the element is removed (default is true)
203var clean = DOMPurify.sanitize(dirty, {KEEP_CONTENT: false});
204
205// glue elements like style, script or others to document.body and prevent unintuitive browser behavior in several edge-cases (default is false)
206var clean = DOMPurify.sanitize(dirty, {FORCE_BODY: true});
207
208// use the IN_PLACE mode to sanitize a node "in place", which is much faster depending on how you use DOMpurify
209var dirty = document.createElement('a');
210dirty.setAttribute('href', 'javascript:alert(1)');
211var clean = DOMPurify.sanitize(dirty, {IN_PLACE: true}); // see https://github.com/cure53/DOMPurify/issues/288 for more info
212```
213There is even [more examples here](https://github.com/cure53/DOMPurify/tree/master/demos#what-is-this), showing how you can run, customize and configure DOMPurify to fit your needs.
214
215## Persistent Configuration
216
217Instead of repeatedly passing the same configuration to `DOMPurify.sanitize`, you can use the `DOMPurify.setConfig` method. Your configuration will persist until your next call to `DOMPurify.setConfig`, or until you invoke `DOMPurify.clearConfig` to reset it. Remember that there is only one active configuration, which means once it is set, all extra configuration parameters passed to `DOMPurify.sanitize` are ignored.
218
219## Hooks
220
221DOMPurify allows you to augment its functionality by attaching one or more functions with the `DOMPurify.addHook` method to one of the following hooks:
222
223- `beforeSanitizeElements`
224- `uponSanitizeElement`
225- `afterSanitizeElements`
226- `beforeSanitizeAttributes`
227- `uponSanitizeAttribute`
228- `afterSanitizeAttributes`
229- `beforeSanitizeShadowDOM`
230- `uponSanitizeShadowNode`
231- `afterSanitizeShadowDOM`
232
233It passes the currently processed DOM node, when needed a literal with verified node and attribute data and the DOMPurify configuration to the callback. Check out the [MentalJS hook demo](https://github.com/cure53/DOMPurify/blob/master/demos/hooks-mentaljs-demo.html) to see how the API can be used nicely.
234
235_Example_:
236
237```javascript
238DOMPurify.addHook('beforeSanitizeElements', function(currentNode, data, config) {
239 // Do something with the current node and return it
240 return currentNode;
241});
242```
243
244## Continuous Integration
245
246We are currently using Travis CI in combination with BrowserStack. This gives us the possibility to confirm for each and every commit that all is going according to plan in all supported browsers. Check out the build logs here: https://travis-ci.org/cure53/DOMPurify
247
248You can further run local tests by executing `npm test`. The tests work fine with Node.js v0.6.2 and jsdom@8.5.0.
249
250All relevant commits will be signed with the key `0x24BB6BF4` for additional security (since 8th of April 2016).
251
252### Development and contributing
253
254#### Installation (`yarn i`)
255
256We support both `yarn` and `npm@5.2` officially while providing lock-files for either dependency manager to provide reproducible installs and builds on either or. TravisCI itself is configured to install dependencies using `yarn`. When using an older version of `npm` we can not fully ensure the versions of installed dependencies which might lead to unanticipated problems.
257
258#### Scripts
259
260We rely on npm run-scripts for integrating with out tooling infrastructure. We use ESLint as a pre-commit hook to ensure code consistency. Moreover, to ease formatting we use [prettier](https://github.com/prettier/prettier) while building the `/dist` assets happens through `rollup`.
261
262These are our npm scripts:
263
264- `npm run dev` to start building while watching sources for changes
265- `npm run test` to run our test suite via jsdom and karma
266 - `test:jsdom` to only run tests through jsdom
267 - `test:karma` to only run tests through karma
268- `npm run lint` to lint the sources using ESLint (via xo)
269- `npm run format` to format our sources using prettier to ease to pass ESLint
270- `npm run build` to build our distribution assets minified and unminified as a UMD module
271 - `npm run build:umd` to only build an unminified UMD module
272 - `npm run build:umd:min` to only build a minified UMD module
273
274Note: all run scripts triggered via `npm run <script>` can also be started using `yarn <script>`.
275
276There are more npm scripts but they are mainly to integrate with CI or are meant to be "private" for instance to amend build distribution files with every commit.
277
278## Security Mailing List
279
280We maintain a mailing list that notifies whenever a security-critical release of DOMPurify was published. This means, if someone found a bypass and we fixed it with a release (which always happens when a bypass was found) a mail will go out to that list. This usually happens within minutes or few hours after learning about a bypass. The list can be subscribed to here:
281
282[https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security](https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security)
283
284Feature releases will not be announced to this list.
285
286## Who contributed?
287
288Several people need to be listed here!
289
290[@garethheyes](https://twitter.com/garethheyes) and [@filedescriptor](https://twitter.com/filedescriptor) for invaluable help, [@shafigullin](https://twitter.com/shafigullin) for breaking the library multiple times and thereby strengthening it, [@mmrupp](https://twitter.com/mmrupp) and [@irsdl](https://twitter.com/irsdl) for doing the same. And lastly, thanks to @ShikariSenpai and @ansjdnakjdnajkd for spotting the [massive Safari 10.1 bug](https://github.com/cure53/DOMPurify/releases/tag/0.8.6) in the first place.
291
292Big thanks also go to [@ydaniv](https://github.com/ydaniv), [@asutherland](https://twitter.com/asutherland), [@mathias](https://twitter.com/mathias), [@cgvwzq](https://twitter.com/cgvwzq), [@robbertatwork](https://twitter.com/robbertatwork), [@giutro](https://twitter.com/giutro) and [@fhemberger](https://twitter.com/fhemberger)!
293
294Further, thanks [@neilj](https://twitter.com/neilj) and [@0xsobky](https://twitter.com/0xsobky) for their code reviews and countless small optimizations, fixes and beautifications. Thanks also go out to [@kkotowicz](https://twitter.com/kkotowicz) for his Trusted Types implementation and the connected section on our README page.
295
296Big thanks also go to [@tdeekens](https://twitter.com/tdeekens) for doing all the hard work and getting us on track with Travis CI and BrowserStack. And thanks to [@Joris-van-der-Wel](https://github.com/Joris-van-der-Wel) for setting up DOMPurify for jsdom and creating the additional test suite. And again [@tdeekens](https://twitter.com/tdeekens) for his [incredible efforts](https://github.com/cure53/DOMPurify/pull/206) and contribution to refactor DOMPurify into using ES201x, proper build tools, better test coverage and much more!
297
298And last but not least, thanks to [BrowserStack](https://browserstack.com) for supporting this project with their services for free and delivering excellent, dedicated and very professional support on top of that.