UNPKG

15.5 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.2!
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 [16 different browsers](https://github.com/cure53/DOMPurify/blob/master/test/karma.conf.js#L163) right now, more to come. We also cover Node.js v4.0.0, v5.0.0 and v6.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```
58
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
69## Is there a demo?
70
71Of course there is a demo! [Play with DOMPurify](https://cure53.de/purify)
72
73## What if I find a bypass?
74
75If 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).
76
77## Some purification samples please?
78
79How 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!
80
81```javascript
82DOMPurify.sanitize('<img src=x onerror=alert(1)//>'); // becomes <img src="x">
83DOMPurify.sanitize('<svg><g/onload=alert(2)//<p>'); // becomes <svg><g></g></svg>
84DOMPurify.sanitize('<p>abc<iframe/\/src=jAva&Tab;script:alert(3)>def'); // becomes <p>abcdef</p>
85DOMPurify.sanitize('<math><mi//xlink:href="data:x,<script>alert(4)</script>">'); // becomes <math><mi></mi></math>
86DOMPurify.sanitize('<TABLE><tr><td>HELLO</tr></TABL>'); // becomes <table><tbody><tr><td>HELLO</td></tr></tbody></table>
87DOMPurify.sanitize('<UL><li><A HREF=//google.com>click</UL>'); // becomes <ul><li><a href="//google.com">click</a></li></ul>
88```
89
90## What is supported?
91
92DOMPurify 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.
93
94## What about older browsers like MSIE8?
95
96DOMPurify 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.
97
98If not even `toStaticHTML` is supported, DOMPurify does nothing at all. It simply returns exactly the string that you fed it.
99
100## Can I configure it?
101
102Yes. 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).
103
104```javascript
105// make output safe for usage in jQuery's $()/html() method (default is false)
106var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_JQUERY: true});
107
108// strip {{ ... }} and <% ... %> to make output safe for template systems
109var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
110
111// allow only <b>
112var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
113
114// allow only <b> and <q> with style attributes (for whatever reason)
115var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
116
117// allow all safe HTML elements but neither SVG nor MathML
118var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
119
120// allow all safe SVG elements and SVG Filters
121var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
122
123// allow all safe MathML elements and SVG
124var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
125
126// leave all as it is but forbid <style>
127var clean = DOMPurify.sanitize(dirty, {FORBID_TAGS: ['style']});
128
129// leave all as it is but forbid style attributes
130var clean = DOMPurify.sanitize(dirty, {FORBID_ATTR: ['style']});
131
132// extend the existing array of allowed tags
133var clean = DOMPurify.sanitize(dirty, {ADD_TAGS: ['my-tag']});
134
135// extend the existing array of attributes
136var clean = DOMPurify.sanitize(dirty, {ADD_ATTR: ['my-attr']});
137
138// prohibit HTML5 data attributes (default is true)
139var clean = DOMPurify.sanitize(dirty, {ALLOW_DATA_ATTR: false});
140
141// allow external protocol handlers in URL attributes (default is false)
142// by default only http, https, ftp, ftps, tel and mailto are allowed.
143var clean = DOMPurify.sanitize(dirty, {ALLOW_UNKNOWN_PROTOCOLS: true});
144
145// return a DOM HTMLBodyElement instead of an HTML string (default is false)
146var clean = DOMPurify.sanitize(dirty, {RETURN_DOM: true});
147
148// return a DOM DocumentFragment instead of an HTML string (default is false)
149var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true});
150
151// return a DOM DocumentFragment instead of an HTML string (default is false)
152// also import it into the current document (default is false).
153// RETURN_DOM_IMPORT must be set if you would like to append
154// the returned node to the current document
155var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true, RETURN_DOM_IMPORT: true});
156document.body.appendChild(clean);
157
158// return entire document including <html> tags (default is false)
159var clean = DOMPurify.sanitize(dirty, {WHOLE_DOCUMENT: true});
160
161// disable DOM Clobbering protection on output (default is true, handle with care!)
162var clean = DOMPurify.sanitize(dirty, {SANITIZE_DOM: false});
163
164// discard an element's content when the element is removed (default is true)
165var clean = DOMPurify.sanitize(dirty, {KEEP_CONTENT: false});
166
167// glue elements like style, script or others to document.body and prevent unintuitive browser behavior in several edge-cases (default is false)
168var clean = DOMPurify.sanitize(dirty, {FORCE_BODY: true});
169```
170There 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.
171
172## Persistent Configuration
173
174Instead 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.
175
176## Hooks
177
178DOMPurify allows you to augment its functionality by attaching one or more functions with the `DOMPurify.addHook` method to one of the following hooks:
179
180- `beforeSanitizeElements`
181- `uponSanitizeElement`
182- `afterSanitizeElements`
183- `beforeSanitizeAttributes`
184- `uponSanitizeAttribute`
185- `afterSanitizeAttributes`
186- `beforeSanitizeShadowDOM`
187- `uponSanitizeShadowNode`
188- `afterSanitizeShadowDOM`
189
190It 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.
191
192_Example_:
193
194```javascript
195DOMPurify.addHook('beforeSanitizeElements', function(currentNode, data, config) {
196 // Do something with the current node and return it
197 return currentNode;
198});
199```
200
201## Continuous Integration
202
203We 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
204
205You can further run local tests by executing `npm test`. The tests work fine with Node.js v0.6.2 and jsdom@8.5.0.
206
207All relevant commits will be signed with the key `0x24BB6BF4` for additional security (since 8th of April 2016).
208
209### Development and contributing
210
211#### Installation (`yarn i`)
212
213We 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.
214
215#### Scripts
216
217We 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`.
218
219These are our npm scripts:
220
221- `npm run dev` to start building while watching sources for changes
222- `npm run test` to run our test suite via jsdom and karma
223 - `test:jsdom` to only run tests through jsdom
224 - `test:karma` to only run tests through karma
225- `npm run lint` to lint the sources using ESLint (via xo)
226- `npm run format` to format our sources using prettier to ease to pass ESLint
227- `npm run build` to build our distribution assets minified and unminified as a UMD module
228 - `npm run build:umd` to only build an unminified UMD module
229 - `npm run build:umd:min` to only build a minified UMD module
230
231Note: all run scripts triggered via `npm run <script>` can also be started using `yarn <script>`.
232
233There 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.
234
235## Security Mailing List
236
237We 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:
238
239[https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security](https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security)
240
241Feature releases will not be announced to this list.
242
243## Who contributed?
244
245Several people need to be listed here!
246
247[@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.
248
249Big 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)!
250
251Further, thanks [@neilj](https://twitter.com/neilj) and [@0xsobky](https://twitter.com/0xsobky) for their code reviews and countless small optimizations, fixes and beautifications.
252
253Big 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!
254
255And 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.