UNPKG

21.5 kBMarkdownView Raw
1# DOMPurify
2
3[![npm version](https://badge.fury.io/js/dompurify.svg)](http://badge.fury.io/js/dompurify) ![Build and Test](https://github.com/cure53/DOMPurify/workflows/Build%20and%20Test/badge.svg?branch=main) [![Downloads](https://img.shields.io/npm/dm/dompurify.svg)](https://www.npmjs.com/package/dompurify) [![minified size](https://badgen.net/bundlephobia/min/dompurify?color=green&label=minified)](https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js) [![gzip size](https://badgen.net/bundlephobia/minzip/dompurify?color=green&label=gzipped)](https://packagephobia.now.sh/result?p=dompurify) [![dependents](https://badgen.net/github/dependents-repo/cure53/dompurify?color=green&label=dependents)](https://github.com/cure53/DOMPurify/network/dependents)
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 2.0.15.
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 [26 different browsers](https://github.com/cure53/DOMPurify/blob/main/test/karma.custom-launchers.config.js#L5) right now, more to come. We also cover Node.js v12.0.0 and v13.0.0, running DOMPurify on [jsdom](https://github.com/tmpvar/jsdom). Older Node.js versions are known to work as well.
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 (unless configured otherwise) 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```js
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
45### Is there any foot-gun potential?
46
47Well, please note, if you _first_ sanitize HTML and then modify it _afterwards_, you might easily **void the effects of sanitization**. If you feed the sanitized markup to another library _after_ sanitization, please be certain that the library doesn't mess around with the HTML on its own.
48
49jQuery does exactly that and that is why we have this flag mentioned above.
50
51### Okay, makes sense, let's move on
52
53After sanitizing your markup, you can also have a look at the property `DOMPurify.removed` and find out, what elements and attributes were thrown out. Please **do not use** this property for making any security critical decisions. This is just a little helper for curious minds.
54
55If 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:
56
57```js
58import DOMPurify from 'dompurify';
59
60var clean = DOMPurify.sanitize(dirty);
61```
62
63DOMPurify also works server-side with Node.js as well as client-side via [Browserify](http://browserify.org/) or similar translators. At least Node.js 4.x or newer is required. Our support strives to follow the [Node.js release cycle](https://nodejs.org/en/about/releases/). DOMPurify intends to support any version being flagged as active. At the same time we phase out support for any version flagged as maintenance. DOMPurify might not break with all versions in maintenance immediately but stops to run tests against these older versions.
64
65```bash
66npm install dompurify
67```
68
69For JSDOM v10 or newer
70
71```js
72const createDOMPurify = require('dompurify');
73const { JSDOM } = require('jsdom');
74
75const window = new JSDOM('').window;
76const DOMPurify = createDOMPurify(window);
77
78const clean = DOMPurify.sanitize(dirty);
79```
80
81For JSDOM versions older than v10
82
83```js
84const createDOMPurify = require('dompurify');
85const jsdom = require('jsdom').jsdom;
86
87const window = jsdom('').defaultView;
88const DOMPurify = createDOMPurify(window);
89
90const clean = DOMPurify.sanitize(dirty);
91```
92
93## Is there a demo?
94
95Of course there is a demo! [Play with DOMPurify](https://cure53.de/purify)
96
97## What if I find a _security_ bug?
98
99First of all, please immediately contact us via [email](mailto:mario@cure53.de) so we can work on a fix. [PGP key](https://keyserver.ubuntu.com/pks/lookup?op=vindex&search=0xC26C858090F70ADA)
100
101Also, you probably qualify for a 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 also have a look at their website and the [bug bounty info](https://www.fastmail.com/about/bugbounty.html).
102
103## Some purification samples please?
104
105How 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!
106
107```js
108DOMPurify.sanitize('<img src=x onerror=alert(1)//>'); // becomes <img src="x">
109DOMPurify.sanitize('<svg><g/onload=alert(2)//<p>'); // becomes <svg><g></g></svg>
110DOMPurify.sanitize('<p>abc<iframe//src=jAva&Tab;script:alert(3)>def</p>'); // becomes <p>abcdef</p>
111DOMPurify.sanitize('<math><mi//xlink:href="data:x,<script>alert(4)</script>">'); // becomes <math><mi></mi></math>
112DOMPurify.sanitize('<TABLE><tr><td>HELLO</tr></TABL>'); // becomes <table><tbody><tr><td>HELLO</td></tr></tbody></table>
113DOMPurify.sanitize('<UL><li><A HREF=//google.com>click</UL>'); // becomes <ul><li><a href="//google.com">click</a></li></ul>
114```
115
116## What is supported?
117
118DOMPurify 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.
119
120## What about older browsers like MSIE8?
121
122DOMPurify 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.
123
124If not even `toStaticHTML` is supported, DOMPurify does nothing at all. It simply returns exactly the string that you fed it.
125
126DOMPurify also exposes a property called `isSupported`, which tells you whether DOMPurify will be able to do its job.
127
128## What about DOMPurify and Trusted Types?
129
130In version 1.0.9, support for [Trusted Types API](https://github.com/WICG/trusted-types) was added to DOMPurify.
131In version 2.0.0, a config flag was added to control DOMPurify's behavior regarding this.
132
133When `DOMPurify.sanitize` is used in an environment where the Trusted Types API is available and `RETURN_TRUSTED_TYPE` is set to `true`, it tries to return a `TrustedHTML` value instead of a string (the behavior for `RETURN_DOM`, `RETURN_DOM_FRAGMENT`, and `RETURN_DOM_IMPORT` config options does not change).
134
135## Can I configure DOMPurify?
136
137Yes. 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/main/demos) folder to see a bunch of examples on how you can [customize DOMPurify](https://github.com/cure53/DOMPurify/tree/main/demos#what-is-this).
138
139```js
140/**
141 * General settings
142 */
143// make output safe for usage in jQuery's $()/html() method (default is false)
144var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_JQUERY: true});
145
146// strip {{ ... }} and <% ... %> to make output safe for template systems
147// be careful please, this mode is not recommended for production usage.
148// allowing template parsing in user-controlled HTML is not advised at all.
149// only use this mode if there is really no alternative.
150var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
151
152/**
153 * Control our allow-lists and block-lists
154 */
155// allow only <b> elements, very strict
156var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
157
158// allow only <b> and <q> with style attributes
159var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
160
161// allow all safe HTML elements but neither SVG nor MathML
162var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
163
164// allow all safe SVG elements and SVG Filters, no HTML or MathML
165var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
166
167// allow all safe MathML elements and SVG, but no SVG Filters
168var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
169
170// leave all safe HTML as it is and add <style> elements to block-list
171var clean = DOMPurify.sanitize(dirty, {FORBID_TAGS: ['style']});
172
173// leave all safe HTML as it is and add style attributes to block-list
174var clean = DOMPurify.sanitize(dirty, {FORBID_ATTR: ['style']});
175
176// extend the existing array of allowed tags and add <my-tag> to allow-list
177var clean = DOMPurify.sanitize(dirty, {ADD_TAGS: ['my-tag']});
178
179// extend the existing array of allowed attributes and add my-attr to allow-list
180var clean = DOMPurify.sanitize(dirty, {ADD_ATTR: ['my-attr']});
181
182// prohibit HTML5 data attributes, leave other safe HTML as is (default is true)
183var clean = DOMPurify.sanitize(dirty, {ALLOW_DATA_ATTR: false});
184
185/**
186 * Control behavior relating to URI values
187 */
188// extend the existing array of elements that can use Data URIs
189var clean = DOMPurify.sanitize(dirty, {ADD_DATA_URI_TAGS: ['a', 'area']});
190
191// extend the existing array of elements that are safe for URI-like values (be careful, XSS risk)
192var clean = DOMPurify.sanitize(dirty, {ADD_URI_SAFE_ATTR: ['my-attr']});
193
194/**
195 * Control permitted attribute values
196 */
197// allow external protocol handlers in URL attributes (default is false, be careful, XSS risk)
198// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
199var clean = DOMPurify.sanitize(dirty, {ALLOW_UNKNOWN_PROTOCOLS: true});
200
201// allow specific protocols handlers in URL attributes via regex (default is false, be careful, XSS risk)
202// by default only http, https, ftp, ftps, tel, mailto, callto, cid and xmpp are allowed.
203// Default RegExp: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;
204var clean = DOMPurify.sanitize(dirty, {ALLOWED_URI_REGEXP: /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp|xxx):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i;});
205
206/**
207 * Influence the return-type
208 */
209// return a DOM HTMLBodyElement instead of an HTML string (default is false)
210var clean = DOMPurify.sanitize(dirty, {RETURN_DOM: true});
211
212// return a DOM DocumentFragment instead of an HTML string (default is false)
213var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true});
214
215// return a DOM DocumentFragment instead of an HTML string (default is false)
216// also import it into the current document (default is false).
217// RETURN_DOM_IMPORT must be set if you would like to append
218// the returned node to the current document
219var clean = DOMPurify.sanitize(dirty, {RETURN_DOM_FRAGMENT: true, RETURN_DOM_IMPORT: true});
220document.body.appendChild(clean);
221
222// use the RETURN_TRUSTED_TYPE flag to turn on Trusted Types support if available
223var clean = DOMPurify.sanitize(dirty, {RETURN_TRUSTED_TYPE: true}); // will return a TrustedHTML object instead of a string if possible
224
225/**
226 * Influence how we sanitize
227 */
228// return entire document including <html> tags (default is false)
229var clean = DOMPurify.sanitize(dirty, {WHOLE_DOCUMENT: true});
230
231// disable DOM Clobbering protection on output (default is true, handle with care, minor XSS risks here)
232var clean = DOMPurify.sanitize(dirty, {SANITIZE_DOM: false});
233
234// keep an element's content when the element is removed (default is true, careful, minor XSS risks here)
235var clean = DOMPurify.sanitize(dirty, {KEEP_CONTENT: false});
236
237// glue elements like style, script or others to document.body and prevent unintuitive browser behavior in several edge-cases (default is false)
238var clean = DOMPurify.sanitize(dirty, {FORCE_BODY: true});
239
240/**
241 * Influence where we sanitize
242 */
243// use the IN_PLACE mode to sanitize a node "in place", which is much faster depending on how you use DOMPurify
244var dirty = document.createElement('a');
245dirty.setAttribute('href', 'javascript:alert(1)');
246var clean = DOMPurify.sanitize(dirty, {IN_PLACE: true}); // see https://github.com/cure53/DOMPurify/issues/288 for more info
247```
248
249There is even [more examples here](https://github.com/cure53/DOMPurify/tree/main/demos#what-is-this), showing how you can run, customize and configure DOMPurify to fit your needs.
250
251## Persistent Configuration
252
253Instead 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.
254
255## Hooks
256
257DOMPurify allows you to augment its functionality by attaching one or more functions with the `DOMPurify.addHook` method to one of the following hooks:
258
259- `beforeSanitizeElements`
260- `uponSanitizeElement` (No 's' - called for every element)
261- `afterSanitizeElements`
262- `beforeSanitizeAttributes`
263- `uponSanitizeAttribute`
264- `afterSanitizeAttributes`
265- `beforeSanitizeShadowDOM`
266- `uponSanitizeShadowNode`
267- `afterSanitizeShadowDOM`
268
269It 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/main/demos/hooks-mentaljs-demo.html) to see how the API can be used nicely.
270
271_Example_:
272
273```js
274DOMPurify.addHook('beforeSanitizeElements', function (
275 currentNode,
276 hookEvent,
277 config
278) {
279 // Do something with the current node and return it
280 // You can also mutate hookEvent (i.e. set hookEvent.forceKeepAttr = true)
281 return currentNode;
282});
283```
284
285## Continuous Integration
286
287We 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
288
289You can further run local tests by executing `npm test`. The tests work fine with Node.js v0.6.2 and jsdom@8.5.0.
290
291All relevant commits will be signed with the key `0x24BB6BF4` for additional security (since 8th of April 2016).
292
293### Development and contributing
294
295#### Installation (`yarn i`)
296
297We 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.
298
299#### Scripts
300
301We rely on npm run-scripts for integrating with our 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`.
302
303These are our npm scripts:
304
305- `npm run dev` to start building while watching sources for changes
306- `npm run test` to run our test suite via jsdom and karma
307 - `test:jsdom` to only run tests through jsdom
308 - `test:karma` to only run tests through karma
309- `npm run lint` to lint the sources using ESLint (via xo)
310- `npm run format` to format our sources using prettier to ease to pass ESLint
311- `npm run build` to build our distribution assets minified and unminified as a UMD module
312 - `npm run build:umd` to only build an unminified UMD module
313 - `npm run build:umd:min` to only build a minified UMD module
314
315Note: all run scripts triggered via `npm run <script>` can also be started using `yarn <script>`.
316
317There 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.
318
319## Security Mailing List
320
321We 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:
322
323[https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security](https://lists.ruhr-uni-bochum.de/mailman/listinfo/dompurify-security)
324
325Feature releases will not be announced to this list.
326
327## Who contributed?
328
329Many people helped and help DOMPurify become what it is and need to be acknowledged here!
330
331[oreoshake 💸](https://github.com/oreoshake), [dcramer 💸](https://github.com/dcramer),[tdeekens ❤️](https://github.com/tdeekens), [peernohell ❤️](https://github.com/peernohell), [neilj](https://github.com/neilj), [fhemberger](https://github.com/fhemberger), [Joris-van-der-Wel](https://github.com/Joris-van-der-Wel), [ydaniv](https://github.com/ydaniv), [filedescriptor](https://github.com/filedescriptor), [ConradIrwin](https://github.com/ConradIrwin), [gibson042](https://github.com/gibson042), [choumx](https://github.com/choumx), [0xSobky](https://github.com/0xSobky), [styfle](https://github.com/styfle), [koto](https://github.com/koto), [tlau88](https://github.com/tlau88), [strugee](https://github.com/strugee), [oparoz](https://github.com/oparoz), [mathiasbynens](https://github.com/mathiasbynens), [edg2s](https://github.com/edg2s), [dnkolegov](https://github.com/dnkolegov), [dhardtke](https://github.com/dhardtke), [wirehead](https://github.com/wirehead), [thorn0](https://github.com/thorn0), [styu](https://github.com/styu), [mozfreddyb](https://github.com/mozfreddyb), [mikesamuel](https://github.com/mikesamuel), [jorangreef](https://github.com/jorangreef), [jimmyhchan](https://github.com/jimmyhchan), [jameydeorio](https://github.com/jameydeorio), [jameskraus](https://github.com/jameskraus), [hyderali](https://github.com/hyderali), [hansottowirtz](https://github.com/hansottowirtz), [hackvertor](https://github.com/hackvertor), [freddyb](https://github.com/freddyb), [flavorjones](https://github.com/flavorjones), [djfarrelly](https://github.com/djfarrelly), [devd](https://github.com/devd), [camerondunford](https://github.com/camerondunford), [buu700](https://github.com/buu700), [buildog](https://github.com/buildog), [alabiaga](https://github.com/alabiaga), [Vector919](https://github.com/Vector919), [Robbert](https://github.com/Robbert), [GreLI](https://github.com/GreLI), [FuzzySockets](https://github.com/FuzzySockets), [ArtemBernatskyy](https://github.com/ArtemBernatskyy), [@garethheyes](https://twitter.com/garethheyes), [@filedescriptor](https://twitter.com/filedescriptor), [@shafigullin](https://twitter.com/shafigullin), [@mmrupp](https://twitter.com/mmrupp), [@irsdl](https://twitter.com/irsdl),[ShikariSenpai](https://github.com/ShikariSenpai), [ansjdnakjdnajkd](https://github.com/ansjdnakjdnajkd), [@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 especially [@masatokinugawa](https://twitter.com/masatokinugawa)
332
333## Testing powered by
334<a target="_blank" href="https://www.browserstack.com/"><img width="200" src="https://www.browserstack.com/images/layout/browserstack-logo-600x315.png"></a><br>
335
336And last but not least, thanks to [BrowserStack Open-Source Program](https://www.browserstack.com/open-source) for supporting this project with their services for free and delivering excellent, dedicated and very professional support on top of that.