UNPKG

16.6 kBMarkdownView Raw
1# DOMPurify [![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)
2
3[![NPM](https://nodei.co/npm/dompurify.png)](https://nodei.co/npm/dompurify/)
4
5DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG.
6
7It'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.6.
8
9DOMPurify 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.
10
11Our automated tests cover [21 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 v6.0.0, v8.0.0, v9.0.0 and v10.0.0, running DOMPurify on [jsdom](https://github.com/tmpvar/jsdom).
12
13DOMPurify 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.
14
15## What does it do?
16
17DOMPurify 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.
18
19## How do I use it?
20
21It's easy. Just include DOMPurify on your website.
22
23### Using the unminified development version
24
25```html
26<script type="text/javascript" src="src/purify.js"></script>
27```
28
29### Using the minified and tested production version (source-map available)
30
31```html
32<script type="text/javascript" src="dist/purify.min.js"></script>
33```
34
35Afterwards you can sanitize strings by executing the following code:
36
37```javascript
38var clean = DOMPurify.sanitize(dirty);
39```
40
41The 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.
42
43After sanitizing your markup, you can also have a look at the property `DOMPurify.removed` and find out, what elements and attributes were thrown out.
44
45If 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:
46
47```javascript
48require(['dompurify'], function(DOMPurify) {
49 var clean = DOMPurify.sanitize(dirty);
50});
51```
52
53DOMPurify 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.
54
55```bash
56npm install dompurify
57```
58For JSDOM v10 or newer
59```javascript
60const createDOMPurify = require('dompurify');
61const { JSDOM } = require('jsdom');
62
63const window = (new JSDOM('')).window;
64const DOMPurify = createDOMPurify(window);
65
66const clean = DOMPurify.sanitize(dirty);
67```
68
69For JSDOM versions older than v10
70```javascript
71const createDOMPurify = require('dompurify');
72const jsdom = require('jsdom').jsdom;
73
74const window = jsdom('').defaultView;
75const DOMPurify = createDOMPurify(window);
76
77const clean = DOMPurify.sanitize(dirty);
78```
79
80## Is there a demo?
81
82Of course there is a demo! [Play with DOMPurify](https://cure53.de/purify)
83
84## What if I find a bypass?
85
86If 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).
87
88## Some purification samples please?
89
90How 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!
91
92```javascript
93DOMPurify.sanitize('<img src=x onerror=alert(1)//>'); // becomes <img src="x">
94DOMPurify.sanitize('<svg><g/onload=alert(2)//<p>'); // becomes <svg><g></g></svg>
95DOMPurify.sanitize('<p>abc<iframe/\/src=jAva&Tab;script:alert(3)>def'); // becomes <p>abcdef</p>
96DOMPurify.sanitize('<math><mi//xlink:href="data:x,<script>alert(4)</script>">'); // becomes <math><mi></mi></math>
97DOMPurify.sanitize('<TABLE><tr><td>HELLO</tr></TABL>'); // becomes <table><tbody><tr><td>HELLO</td></tr></tbody></table>
98DOMPurify.sanitize('<UL><li><A HREF=//google.com>click</UL>'); // becomes <ul><li><a href="//google.com">click</a></li></ul>
99```
100
101## What is supported?
102
103DOMPurify 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.
104
105## What about older browsers like MSIE8?
106
107DOMPurify 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.
108
109If not even `toStaticHTML` is supported, DOMPurify does nothing at all. It simply returns exactly the string that you fed it.
110
111## Can I configure it?
112
113Yes. 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).
114
115```javascript
116// make output safe for usage in jQuery's $()/html() method (default is false)
117var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_JQUERY: true});
118
119// strip {{ ... }} and <% ... %> to make output safe for template systems
120var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
121
122// allow only <b>
123var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
124
125// allow only <b> and <q> with style attributes (for whatever reason)
126var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
127
128// allow all safe HTML elements but neither SVG nor MathML
129var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
130
131// allow all safe SVG elements and SVG Filters
132var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
133
134// allow all safe MathML elements and SVG
135var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
136
137// leave all as it is but forbid <style>
138var clean = DOMPurify.sanitize(dirty, {FORBID_TAGS: ['style']});
139
140// leave all as it is but forbid style attributes
141var clean = DOMPurify.sanitize(dirty, {FORBID_ATTR: ['style']});
142
143// extend the existing array of allowed tags
144var clean = DOMPurify.sanitize(dirty, {ADD_TAGS: ['my-tag']});
145
146// extend the existing array of attributes
147var clean = DOMPurify.sanitize(dirty, {ADD_ATTR: ['my-attr']});
148
149// prohibit HTML5 data attributes (default is true)
150var clean = DOMPurify.sanitize(dirty, {ALLOW_DATA_ATTR: false});
151
152// allow external protocol handlers in URL attributes (default is false)
153// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
154var clean = DOMPurify.sanitize(dirty, {ALLOW_UNKNOWN_PROTOCOLS: true});
155
156// allow specific protocols handlers in URL attributes (default is false)
157// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
158// Default RegExp: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;
159var clean = DOMPurify.sanitize(dirty, {ALLOWED_URI_REGEXP: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp|xxx):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;});
160
161// return a DOM HTMLBodyElement instead of an HTML string (default is false)
162var clean = DOMPurify.sanitize(dirty, {RETURN_DOM: true});
163
164// return a DOM DocumentFragment instead of an HTML string (default is false)
165var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true});
166
167// return a DOM DocumentFragment instead of an HTML string (default is false)
168// also import it into the current document (default is false).
169// RETURN_DOM_IMPORT must be set if you would like to append
170// the returned node to the current document
171var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true, RETURN_DOM_IMPORT: true});
172document.body.appendChild(clean);
173
174// return entire document including <html> tags (default is false)
175var clean = DOMPurify.sanitize(dirty, {WHOLE_DOCUMENT: true});
176
177// disable DOM Clobbering protection on output (default is true, handle with care!)
178var clean = DOMPurify.sanitize(dirty, {SANITIZE_DOM: false});
179
180// discard an element's content when the element is removed (default is true)
181var clean = DOMPurify.sanitize(dirty, {KEEP_CONTENT: false});
182
183// glue elements like style, script or others to document.body and prevent unintuitive browser behavior in several edge-cases (default is false)
184var clean = DOMPurify.sanitize(dirty, {FORCE_BODY: true});
185
186// use the IN_PLACE mode to sanitize a node "in place", which is much faster depending on how you use DOMpurify
187var dirty = document.createElement('a');
188dirty.setAttribute('href', 'javascript:alert(1)');
189var clean = DOMPurify.sanitize(dirty, {IN_PLACE: true}); // see https://github.com/cure53/DOMPurify/issues/288 for more info
190```
191There 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.
192
193## Persistent Configuration
194
195Instead 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.
196
197## Hooks
198
199DOMPurify allows you to augment its functionality by attaching one or more functions with the `DOMPurify.addHook` method to one of the following hooks:
200
201- `beforeSanitizeElements`
202- `uponSanitizeElement`
203- `afterSanitizeElements`
204- `beforeSanitizeAttributes`
205- `uponSanitizeAttribute`
206- `afterSanitizeAttributes`
207- `beforeSanitizeShadowDOM`
208- `uponSanitizeShadowNode`
209- `afterSanitizeShadowDOM`
210
211It 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.
212
213_Example_:
214
215```javascript
216DOMPurify.addHook('beforeSanitizeElements', function(currentNode, data, config) {
217 // Do something with the current node and return it
218 return currentNode;
219});
220```
221
222## Continuous Integration
223
224We 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
225
226You can further run local tests by executing `npm test`. The tests work fine with Node.js v0.6.2 and jsdom@8.5.0.
227
228All relevant commits will be signed with the key `0x24BB6BF4` for additional security (since 8th of April 2016).
229
230### Development and contributing
231
232#### Installation (`yarn i`)
233
234We 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.
235
236#### Scripts
237
238We 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`.
239
240These are our npm scripts:
241
242- `npm run dev` to start building while watching sources for changes
243- `npm run test` to run our test suite via jsdom and karma
244 - `test:jsdom` to only run tests through jsdom
245 - `test:karma` to only run tests through karma
246- `npm run lint` to lint the sources using ESLint (via xo)
247- `npm run format` to format our sources using prettier to ease to pass ESLint
248- `npm run build` to build our distribution assets minified and unminified as a UMD module
249 - `npm run build:umd` to only build an unminified UMD module
250 - `npm run build:umd:min` to only build a minified UMD module
251
252Note: all run scripts triggered via `npm run <script>` can also be started using `yarn <script>`.
253
254There 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.
255
256## Security Mailing List
257
258We 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:
259
260[https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security](https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security)
261
262Feature releases will not be announced to this list.
263
264## Who contributed?
265
266Several people need to be listed here!
267
268[@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.
269
270Big 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)!
271
272Further, thanks [@neilj](https://twitter.com/neilj) and [@0xsobky](https://twitter.com/0xsobky) for their code reviews and countless small optimizations, fixes and beautifications.
273
274Big 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!
275
276And 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.