Sanitizer: Sanitizer() constructor
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The Sanitizer() constructor creates a new Sanitizer object, which can be used to sanitize untrusted strings of HTML, or untrusted Document or DocumentFragment objects, making them safe for insertion into a document's DOM.
The default Sanitizer() configuration causes sanitizer operations to strip out XSS-relevant input by default, including <script> tags, custom elements, and comments.
The constructor config option can be used to customize the sanitizer behavior.
Syntax
new Sanitizer()
new Sanitizer(config)
Parameters
configOptional-
A sanitizer configuration object with the following options (referred to as
SanitizerConfigin the specification):allowElementsOptional-
An
Arrayofstringsindicating elements that the sanitizer should not remove. All elements not in the array will be dropped. blockElementsOptional-
An
Arrayofstringsindicating elements that the sanitizer should remove, but keeping their child elements. dropElementsOptional-
An
Arrayofstringsindicating elements (including nested elements) that the sanitizer should remove. allowAttributesOptional-
An
Objectwhere each key is the attribute name and the value is anArrayof allowed tag names. Matching attributes will not be removed. All attributes that are not in the array will be dropped. dropAttributesOptional-
An
Objectwhere each key is the attribute name and the value is anArrayof dropped tag names. Matching attributes will be removed. allowCustomElementsOptional-
A
Booleanvalue set tofalse(default) to remove custom elements and their children. If set totrue, custom elements will be subject to built-in and custom configuration checks (and will be retained or dropped based on those checks). allowCommentsOptional-
A
Booleanvalue set tofalse(default) to remove HTML comments. Set totruein order to keep comments.
Note: allowElements creates a sanitizer that will drop any elements that are not in allowElements, while blockElements and dropElements create a sanitizer that will allow all elements except those in these properties.
blockElements and dropElements are processed before allowElements.
If you specify both properties, the elements in blockElements or dropElements will be discarded first, followed by any elements not in allowElements.
So while it is possible to specify both types of properties at the same time, the intent can always be more clearly captured using just one type.
The same applies to allowAttributes and dropAttributes.
Examples
The examples below show a sanitization operation using the Sanitizer.sanitize() method.
Using the default sanitizer
This example shows how to sanitize data from an iframe with id userFrame, using the Sanitizer.sanitize() method:
const sanitizer = new Sanitizer(); // Default sanitizer;
// Get the frame and its Document object
const frame_element = document.getElementById("userFrame");
const unsanitized_frame_tree = frame_element.contentWindow.document;
// Sanitize the document tree and update the frame.
const sanitized_frame_tree = sanitizer.sanitize(unsanitized_frame_tree);
frame_element.replaceChildren(sanitized_frame_tree);
Specifications
| Specification |
|---|
| HTML Sanitizer API # dom-sanitizer-sanitizer |
Browser compatibility
| desktop | mobile | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Sanitizer() constructor | |||||||||||