DOMPurify
DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG....
README
DOMPurify
DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG.
It's also very simple to use and get started with. DOMPurify was started in February 2014 and, meanwhile, has reached version 2.4.1.
DOMPurify is written in JavaScript and works in all modern browsers (Safari (10+), 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 or simply does nothing.
Our automated tests cover 19 different browsers right now, more to come. We also cover Node.js v14.x, v16.x, v17.x and v18.x, running DOMPurify on jsdom. Older Node versions are known to work as well, but hey... no guarantees.
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. Please, read it. Like, really.
What does it do?
DOMPurify 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.
How do I use it?
It's easy. Just include DOMPurify on your website.
Using the unminified development version
- ``` html
- <script type="text/javascript" src="src/purify.js"></script>
- ```
Using the minified and tested production version (source-map available)
- ``` html
- <script type="text/javascript" src="dist/purify.min.js"></script>
- ```
Afterwards you can sanitize strings by executing the following code:
- ``` js
- let clean = DOMPurify.sanitize(dirty);
- ```
Or maybe this, if you love working with Angular or alike:
- ``` js
- import * as DOMPurify from 'dompurify';
- let clean = DOMPurify.sanitize('<b>hello there</b>');
- ```
The resulting HTML can be written into a DOM element using innerHTML or the DOM using document.write(). That is fully up to you.
Note that by default, we permit HTML, SVG and MathML. If you only need HTML, which might be a very common use-case, you can easily set that up as well:
- ``` js
- let clean = DOMPurify.sanitize(dirty, { USE_PROFILES: { html: true } });
- ```
Where are the TypeScript type definitions?
They can be found here: @types/dompurify
Is there any foot-gun potential?
Well, 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.
Okay, makes sense, let's move on
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. Please do not use this property for making any security critical decisions. This is just a little helper for curious minds.
Running DOMPurify on the server
DOMPurify technically also works server-side with Node.js. Our support strives to follow the Node.js release cycle.
Running DOMPurify on the server requires a DOM to be present, which is probably no surprise. Usually, jsdom is the tool of choice and westrongly recommend to use the latest version of _jsdom_.
Why? Because older versions of _jsdom_ are known to be buggy in ways that result in XSS _even if_ DOMPurify does everything 100% correctly. There are known attack vectors in, e.g. _jsdom v19.0.0_ that are fixed in _jsdom v20.0.0_ - and we really recommend to keep _jsdom_ up to date because of that.
Other than that, you are fine to use DOMPurify on the server. Probably. This really depends on _jsdom_ or whatever DOM you utilize server-side. If you can live with that, this is how you get it to work:
- ``` sh
- npm install dompurify
- npm install jsdom
- ```
For _jsdom_ (please use an up-to-date version), this should do the trick:
- ``` js
- const createDOMPurify = require('dompurify');
- const { JSDOM } = require('jsdom');
- const window = new JSDOM('').window;
- const DOMPurify = createDOMPurify(window);
- const clean = DOMPurify.sanitize('<b>hello there</b>');
- ```
Or even this, if you prefer working with imports:
- ``` js
- import { JSDOM } from 'jsdom';
- import DOMPurify from 'dompurify';
- const window = new JSDOM('').window;
- const purify = DOMPurify(window);
- const clean = purify.sanitize('<b>hello there</b>');
- ```
If you have problems making it work in your specific setup, consider looking at the amazing isomorphic-dompurify project which solves lots of problems people might run into.
- ``` sh
- npm install isomorphic-dompurify
- ```
- ``` js
- import DOMPurify from 'isomorphic-dompurify';
- const clean = DOMPurify.sanitize('<s>hello</s>');
- ```
Is there a demo?
Of course there is a demo! Play with DOMPurify
What if I find a _security_ bug?
Also, you probably qualify for a bug bounty! The fine folks over at Fastmail 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.
Some purification samples please?
How does purified markup look like? Well, the demo shows it for a big bunch of nasty elements. But let's also show some smaller examples!
What is supported?
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() API without any known problems.
What about older browsers like MSIE8?
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.
If not even toStaticHTML is supported, DOMPurify does nothing at all. It simply returns exactly the string that you fed it.
DOMPurify also exposes a property called isSupported, which tells you whether DOMPurify will be able to do its job.
What about DOMPurify and Trusted Types?
In version 1.0.9, support for Trusted Types API was added to DOMPurify.
In version 2.0.0, a config flag was added to control DOMPurify's behavior regarding this.
When 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 and RETURN_DOM_FRAGMENT config options does not change).
Can I configure DOMPurify?
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/main/demos) folder to see a bunch of examples on how you can customize DOMPurify.
- ``` js
- /**
- * General settings
- */
- // strip {{ ... }}, ${ ... } and <% ... %> to make output safe for template systems
- // be careful please, this mode is not recommended for production usage.
- // allowing template parsing in user-controlled HTML is not advised at all.
- // only use this mode if there is really no alternative.
- var clean = DOMPurify.sanitize(dirty, {SAFE_FOR_TEMPLATES: true});
- /**
- * Control our allow-lists and block-lists
- */
- // allow only elements, very strict
- var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b']});
- // allow only and
with style attributes
- var clean = DOMPurify.sanitize(dirty, {ALLOWED_TAGS: ['b', 'q'], ALLOWED_ATTR: ['style']});
- // allow all safe HTML elements but neither SVG nor MathML
- // note that the USE_PROFILES setting will override the ALLOWED_TAGS setting
- // so don't use them together
- var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {html: true}});
- // allow all safe SVG elements and SVG Filters, no HTML or MathML
- var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {svg: true, svgFilters: true}});
- // allow all safe MathML elements and SVG, but no SVG Filters
- var clean = DOMPurify.sanitize(dirty, {USE_PROFILES: {mathMl: true, svg: true}});
- // change the default namespace from HTML to something different
- var clean = DOMPurify.sanitize(dirty, {NAMESPACE: 'http://www.w3.org/2000/svg'});
- // leave all safe HTML as it is and add