UNPKG

16.9 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.8.
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 [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).
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## Can I configure it?
114
115Yes. 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).
116
117```javascript
118// make output safe for usage in jQuery's $()/html() method (default is false)
119var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_JQUERY: true});
120
121// strip {{ ... }} and <% ... %> to make output safe for template systems
122var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
123
124// allow only <b>
125var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
126
127// allow only <b> and <q> with style attributes (for whatever reason)
128var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
129
130// allow all safe HTML elements but neither SVG nor MathML
131var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
132
133// allow all safe SVG elements and SVG Filters
134var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
135
136// allow all safe MathML elements and SVG
137var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
138
139// leave all as it is but forbid <style>
140var clean = DOMPurify.sanitize(dirty, {FORBID_TAGS: ['style']});
141
142// leave all as it is but forbid style attributes
143var clean = DOMPurify.sanitize(dirty, {FORBID_ATTR: ['style']});
144
145// extend the existing array of allowed tags
146var clean = DOMPurify.sanitize(dirty, {ADD_TAGS: ['my-tag']});
147
148// extend the existing array of attributes
149var clean = DOMPurify.sanitize(dirty, {ADD_ATTR: ['my-attr']});
150
151// prohibit HTML5 data attributes (default is true)
152var clean = DOMPurify.sanitize(dirty, {ALLOW_DATA_ATTR: false});
153
154// allow external protocol handlers in URL attributes (default is false)
155// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
156var clean = DOMPurify.sanitize(dirty, {ALLOW_UNKNOWN_PROTOCOLS: true});
157
158// allow specific protocols handlers in URL attributes (default is false)
159// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
160// Default RegExp: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;
161var clean = DOMPurify.sanitize(dirty, {ALLOWED_URI_REGEXP: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp|xxx):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;});
162
163// return a DOM HTMLBodyElement instead of an HTML string (default is false)
164var clean = DOMPurify.sanitize(dirty, {RETURN_DOM: true});
165
166// return a DOM DocumentFragment instead of an HTML string (default is false)
167var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true});
168
169// return a DOM DocumentFragment instead of an HTML string (default is false)
170// also import it into the current document (default is false).
171// RETURN_DOM_IMPORT must be set if you would like to append
172// the returned node to the current document
173var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true, RETURN_DOM_IMPORT: true});
174document.body.appendChild(clean);
175
176// return entire document including <html> tags (default is false)
177var clean = DOMPurify.sanitize(dirty, {WHOLE_DOCUMENT: true});
178
179// disable DOM Clobbering protection on output (default is true, handle with care!)
180var clean = DOMPurify.sanitize(dirty, {SANITIZE_DOM: false});
181
182// discard an element's content when the element is removed (default is true)
183var clean = DOMPurify.sanitize(dirty, {KEEP_CONTENT: false});
184
185// glue elements like style, script or others to document.body and prevent unintuitive browser behavior in several edge-cases (default is false)
186var clean = DOMPurify.sanitize(dirty, {FORCE_BODY: true});
187
188// use the IN_PLACE mode to sanitize a node "in place", which is much faster depending on how you use DOMpurify
189var dirty = document.createElement('a');
190dirty.setAttribute('href', 'javascript:alert(1)');
191var clean = DOMPurify.sanitize(dirty, {IN_PLACE: true}); // see https://github.com/cure53/DOMPurify/issues/288 for more info
192```
193There 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.
194
195## Persistent Configuration
196
197Instead 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.
198
199## Hooks
200
201DOMPurify allows you to augment its functionality by attaching one or more functions with the `DOMPurify.addHook` method to one of the following hooks:
202
203- `beforeSanitizeElements`
204- `uponSanitizeElement`
205- `afterSanitizeElements`
206- `beforeSanitizeAttributes`
207- `uponSanitizeAttribute`
208- `afterSanitizeAttributes`
209- `beforeSanitizeShadowDOM`
210- `uponSanitizeShadowNode`
211- `afterSanitizeShadowDOM`
212
213It 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.
214
215_Example_:
216
217```javascript
218DOMPurify.addHook('beforeSanitizeElements', function(currentNode, data, config) {
219 // Do something with the current node and return it
220 return currentNode;
221});
222```
223
224## Continuous Integration
225
226We 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
227
228You can further run local tests by executing `npm test`. The tests work fine with Node.js v0.6.2 and jsdom@8.5.0.
229
230All relevant commits will be signed with the key `0x24BB6BF4` for additional security (since 8th of April 2016).
231
232### Development and contributing
233
234#### Installation (`yarn i`)
235
236We 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.
237
238#### Scripts
239
240We 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`.
241
242These are our npm scripts:
243
244- `npm run dev` to start building while watching sources for changes
245- `npm run test` to run our test suite via jsdom and karma
246 - `test:jsdom` to only run tests through jsdom
247 - `test:karma` to only run tests through karma
248- `npm run lint` to lint the sources using ESLint (via xo)
249- `npm run format` to format our sources using prettier to ease to pass ESLint
250- `npm run build` to build our distribution assets minified and unminified as a UMD module
251 - `npm run build:umd` to only build an unminified UMD module
252 - `npm run build:umd:min` to only build a minified UMD module
253
254Note: all run scripts triggered via `npm run <script>` can also be started using `yarn <script>`.
255
256There 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.
257
258## Security Mailing List
259
260We 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:
261
262[https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security](https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security)
263
264Feature releases will not be announced to this list.
265
266## Who contributed?
267
268Several people need to be listed here!
269
270[@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.
271
272Big 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)!
273
274Further, thanks [@neilj](https://twitter.com/neilj) and [@0xsobky](https://twitter.com/0xsobky) for their code reviews and countless small optimizations, fixes and beautifications.
275
276Big 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!
277
278And 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.