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 |
|
5 | DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG.
|
6 |
|
7 | It'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.4!
|
8 |
|
9 | DOMPurify 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 |
|
11 | Our automated tests cover [16 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 v4.0.0, v5.0.0 and v6.0.0, running DOMPurify on [jsdom](https://github.com/tmpvar/jsdom).
|
12 |
|
13 | DOMPurify 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 |
|
17 | DOMPurify 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 |
|
21 | It'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 |
|
35 | Afterwards you can sanitize strings by executing the following code:
|
36 |
|
37 | ```javascript
|
38 | var clean = DOMPurify.sanitize(dirty);
|
39 | ```
|
40 |
|
41 | The 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 |
|
43 | After 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 |
|
45 | If 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
|
48 | require(['dompurify'], function(DOMPurify) {
|
49 | var clean = DOMPurify.sanitize(dirty);
|
50 | });
|
51 | ```
|
52 |
|
53 | DOMPurify 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
|
56 | npm install dompurify
|
57 | ```
|
58 | For JSDOM v10 or newer
|
59 | ```javascript
|
60 | const createDOMPurify = require('dompurify');
|
61 | const { JSDOM } = require('jsdom');
|
62 |
|
63 | const window = (new JSDOM('')).window;
|
64 | const DOMPurify = createDOMPurify(window);
|
65 |
|
66 | const clean = DOMPurify.sanitize(dirty);
|
67 | ```
|
68 |
|
69 | For JSDOM versions older than v10
|
70 | ```javascript
|
71 | const createDOMPurify = require('dompurify');
|
72 | const jsdom = require('jsdom').jsdom;
|
73 |
|
74 | const window = jsdom('').defaultView;
|
75 | const DOMPurify = createDOMPurify(window);
|
76 |
|
77 | const clean = DOMPurify.sanitize(dirty);
|
78 | ```
|
79 |
|
80 | ## Is there a demo?
|
81 |
|
82 | Of course there is a demo! [Play with DOMPurify](https://cure53.de/purify)
|
83 |
|
84 | ## What if I find a bypass?
|
85 |
|
86 | If 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 |
|
90 | How 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
|
93 | DOMPurify.sanitize('<img src=x onerror=alert(1)//>'); // becomes <img src="x">
|
94 | DOMPurify.sanitize('<svg><g/onload=alert(2)//<p>'); // becomes <svg><g></g></svg>
|
95 | DOMPurify.sanitize('<p>abc<iframe/\/src=jAva	script:alert(3)>def'); // becomes <p>abcdef</p>
|
96 | DOMPurify.sanitize('<math><mi//xlink:href="data:x,<script>alert(4)</script>">'); // becomes <math><mi></mi></math>
|
97 | DOMPurify.sanitize('<TABLE><tr><td>HELLO</tr></TABL>'); // becomes <table><tbody><tr><td>HELLO</td></tr></tbody></table>
|
98 | DOMPurify.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 |
|
103 | DOMPurify 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 |
|
107 | DOMPurify 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 |
|
109 | If 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 |
|
113 | Yes. 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)
|
117 | var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_JQUERY: true});
|
118 |
|
119 | // strip {{ ... }} and <% ... %> to make output safe for template systems
|
120 | var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
|
121 |
|
122 | // allow only <b>
|
123 | var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
|
124 |
|
125 | // allow only <b> and <q> with style attributes (for whatever reason)
|
126 | var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
|
127 |
|
128 | // allow all safe HTML elements but neither SVG nor MathML
|
129 | var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
|
130 |
|
131 | // allow all safe SVG elements and SVG Filters
|
132 | var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
|
133 |
|
134 | // allow all safe MathML elements and SVG
|
135 | var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
|
136 |
|
137 | // leave all as it is but forbid <style>
|
138 | var clean = DOMPurify.sanitize(dirty, {FORBID_TAGS: ['style']});
|
139 |
|
140 | // leave all as it is but forbid style attributes
|
141 | var clean = DOMPurify.sanitize(dirty, {FORBID_ATTR: ['style']});
|
142 |
|
143 | // extend the existing array of allowed tags
|
144 | var clean = DOMPurify.sanitize(dirty, {ADD_TAGS: ['my-tag']});
|
145 |
|
146 | // extend the existing array of attributes
|
147 | var clean = DOMPurify.sanitize(dirty, {ADD_ATTR: ['my-attr']});
|
148 |
|
149 | // prohibit HTML5 data attributes (default is true)
|
150 | var 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.
|
154 | var 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;
|
159 | var 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)
|
162 | var clean = DOMPurify.sanitize(dirty, {RETURN_DOM: true});
|
163 |
|
164 | // return a DOM DocumentFragment instead of an HTML string (default is false)
|
165 | var 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
|
171 | var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true, RETURN_DOM_IMPORT: true});
|
172 | document.body.appendChild(clean);
|
173 |
|
174 | // return entire document including <html> tags (default is false)
|
175 | var clean = DOMPurify.sanitize(dirty, {WHOLE_DOCUMENT: true});
|
176 |
|
177 | // disable DOM Clobbering protection on output (default is true, handle with care!)
|
178 | var clean = DOMPurify.sanitize(dirty, {SANITIZE_DOM: false});
|
179 |
|
180 | // discard an element's content when the element is removed (default is true)
|
181 | var 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)
|
184 | var clean = DOMPurify.sanitize(dirty, {FORCE_BODY: true});
|
185 | ```
|
186 | There 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.
|
187 |
|
188 | ## Persistent Configuration
|
189 |
|
190 | Instead 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.
|
191 |
|
192 | ## Hooks
|
193 |
|
194 | DOMPurify allows you to augment its functionality by attaching one or more functions with the `DOMPurify.addHook` method to one of the following hooks:
|
195 |
|
196 | - `beforeSanitizeElements`
|
197 | - `uponSanitizeElement`
|
198 | - `afterSanitizeElements`
|
199 | - `beforeSanitizeAttributes`
|
200 | - `uponSanitizeAttribute`
|
201 | - `afterSanitizeAttributes`
|
202 | - `beforeSanitizeShadowDOM`
|
203 | - `uponSanitizeShadowNode`
|
204 | - `afterSanitizeShadowDOM`
|
205 |
|
206 | It 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.
|
207 |
|
208 | _Example_:
|
209 |
|
210 | ```javascript
|
211 | DOMPurify.addHook('beforeSanitizeElements', function(currentNode, data, config) {
|
212 | // Do something with the current node and return it
|
213 | return currentNode;
|
214 | });
|
215 | ```
|
216 |
|
217 | ## Continuous Integration
|
218 |
|
219 | We 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
|
220 |
|
221 | You can further run local tests by executing `npm test`. The tests work fine with Node.js v0.6.2 and jsdom@8.5.0.
|
222 |
|
223 | All relevant commits will be signed with the key `0x24BB6BF4` for additional security (since 8th of April 2016).
|
224 |
|
225 | ### Development and contributing
|
226 |
|
227 | #### Installation (`yarn i`)
|
228 |
|
229 | We 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.
|
230 |
|
231 | #### Scripts
|
232 |
|
233 | We 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`.
|
234 |
|
235 | These are our npm scripts:
|
236 |
|
237 | - `npm run dev` to start building while watching sources for changes
|
238 | - `npm run test` to run our test suite via jsdom and karma
|
239 | - `test:jsdom` to only run tests through jsdom
|
240 | - `test:karma` to only run tests through karma
|
241 | - `npm run lint` to lint the sources using ESLint (via xo)
|
242 | - `npm run format` to format our sources using prettier to ease to pass ESLint
|
243 | - `npm run build` to build our distribution assets minified and unminified as a UMD module
|
244 | - `npm run build:umd` to only build an unminified UMD module
|
245 | - `npm run build:umd:min` to only build a minified UMD module
|
246 |
|
247 | Note: all run scripts triggered via `npm run <script>` can also be started using `yarn <script>`.
|
248 |
|
249 | There 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.
|
250 |
|
251 | ## Security Mailing List
|
252 |
|
253 | We 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:
|
254 |
|
255 | [https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security](https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security)
|
256 |
|
257 | Feature releases will not be announced to this list.
|
258 |
|
259 | ## Who contributed?
|
260 |
|
261 | Several people need to be listed here!
|
262 |
|
263 | [@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.
|
264 |
|
265 | Big 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)!
|
266 |
|
267 | Further, thanks [@neilj](https://twitter.com/neilj) and [@0xsobky](https://twitter.com/0xsobky) for their code reviews and countless small optimizations, fixes and beautifications.
|
268 |
|
269 | Big 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!
|
270 |
|
271 | And 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.
|