Skip to content

HTML Sanitization

Sanitize untrusted HTML to prevent XSS attacks. Based on bluemonday.

Sanitization works by parsing HTML and filtering it through a whitelist policy. Elements and attributes not explicitly allowed are removed. The output is always well-formed HTML.

local html = require("html")

Three built-in policies for common use cases:

PolicyUse CaseAllows
new_policyCustom sanitizationNothing (build from scratch)
ugc_policyUser comments, forumsCommon formatting (p, b, i, a, lists, etc.)
strict_policyPlain text extractionNothing (strips all HTML)

Creates a policy that allows nothing. Use this to build a custom whitelist from scratch.

local policy, err = html.sanitize.new_policy()
policy:allow_elements("p", "strong", "em")
policy:allow_attrs("class"):globally()
local clean = policy:sanitize(user_input)

Returns: Policy, error

Pre-configured for user-generated content. Allows common formatting elements.

local policy = html.sanitize.ugc_policy()
local safe = policy:sanitize('<p>Hello <strong>world</strong></p>')
-- '<p>Hello <strong>world</strong></p>'
local xss = policy:sanitize('<p>Hello <script>alert("xss")</script></p>')
-- '<p>Hello </p>'

Returns: Policy, error

Strips all HTML, returns plain text only.

local policy = html.sanitize.strict_policy()
local text = policy:sanitize('<p>Hello <b>world</b>!</p>')
-- 'Hello world!'

Returns: Policy, error

Whitelist specific HTML elements.

local policy = html.sanitize.new_policy()
policy:allow_elements("p", "strong", "em", "br")
policy:allow_elements("h1", "h2", "h3")
policy:allow_elements("a", "img")
local result = policy:sanitize('<p>Hello <strong>world</strong></p>')
-- '<p>Hello <strong>world</strong></p>'
ParameterTypeDescription
...stringElement tag names

Returns: Policy

Start attribute permission. Chain with on_elements() or globally().

policy:allow_attrs("href"):on_elements("a")
policy:allow_attrs("src", "alt"):on_elements("img")
policy:allow_attrs("class", "id"):globally()
ParameterTypeDescription
...stringAttribute names

Returns: AttrBuilder

Allow attributes only on specific elements.

policy:allow_elements("a", "img")
policy:allow_attrs("href", "target"):on_elements("a")
policy:allow_attrs("src", "alt", "width", "height"):on_elements("img")
ParameterTypeDescription
...stringElement tag names

Returns: Policy

Allow attributes globally on any permitted element.

policy:allow_attrs("class"):globally()
policy:allow_attrs("id"):globally()

Returns: Policy

Validate attribute values against regex pattern.

-- Only allow hex colors in style
local builder, err = policy:allow_attrs("style"):matching("^color:#[0-9a-fA-F]{6}$")
if err then
return nil, err
end
builder:on_elements("span")
policy:sanitize('<span style="color:#ff0000">Red</span>')
-- '<span style="color:#ff0000">Red</span>'
policy:sanitize('<span style="background:red">Bad</span>')
-- '<span>Bad</span>'
ParameterTypeDescription
patternstringRegex pattern

Returns: AttrBuilder, error

Enable URL handling with security defaults.

policy:allow_elements("a")
policy:allow_attrs("href"):on_elements("a")
policy:allow_standard_urls()

Returns: Policy

Restrict which URL schemes are allowed.

policy:allow_url_schemes("https", "mailto")
policy:sanitize('<a href="https://example.com">OK</a>')
-- '<a href="https://example.com">OK</a>'
policy:sanitize('<a href="javascript:alert(1)">XSS</a>')
-- '<a>XSS</a>'
ParameterTypeDescription
...stringAllowed schemes

Returns: Policy

Allow or disallow relative URLs.

policy:allow_relative_urls(true)
policy:sanitize('<a href="/page">Link</a>')
-- '<a href="/page">Link</a>'
ParameterTypeDescription
allowbooleanAllow relative URLs

Returns: Policy

Reject URLs that fail to parse cleanly. With true, attribute URLs that the HTML sanitizer cannot parse are stripped instead of passed through.

policy:require_parseable_urls(true)
ParameterTypeDescription
requirebooleanRequire URLs to be parseable

Returns: Policy

Add rel="nofollow" to all links. Prevents SEO spam.

policy:allow_attrs("href", "rel"):on_elements("a")
policy:require_nofollow_on_links(true)
policy:sanitize('<a href="https://example.com">Link</a>')
-- '<a href="https://example.com" rel="nofollow">Link</a>'
ParameterTypeDescription
requirebooleanAdd nofollow

Returns: Policy

Add rel="noreferrer" to all links. Prevents referrer leakage.

policy:require_noreferrer_on_links(true)
ParameterTypeDescription
requirebooleanAdd noreferrer

Returns: Policy

Add target="_blank" to fully qualified URLs.

policy:allow_attrs("href", "target"):on_elements("a")
policy:add_target_blank_to_fully_qualified_links(true)
policy:sanitize('<a href="https://example.com">Link</a>')
-- '<a href="https://example.com" target="_blank">Link</a>'
ParameterTypeDescription
addbooleanAdd target blank

Returns: Policy

Permit <img> with standard attributes.

policy:allow_images()
policy:sanitize('<img src="photo.jpg" alt="Photo">')
-- '<img src="photo.jpg" alt="Photo">'

Returns: Policy

Permit base64 embedded images.

policy:allow_elements("img")
policy:allow_attrs("src"):on_elements("img")
policy:allow_data_uri_images()
policy:sanitize('<img src="data:image/png;base64,iVBORw...">')
-- '<img src="data:image/png;base64,iVBORw...">'

Returns: Policy

Permit list elements: ul, ol, li, dl, dt, dd.

policy:allow_lists()
policy:sanitize('<ul><li>Item 1</li><li>Item 2</li></ul>')
-- '<ul><li>Item 1</li><li>Item 2</li></ul>'

Returns: Policy

Permit table elements: table, thead, tbody, tfoot, tr, td, th, caption.

policy:allow_tables()
policy:sanitize('<table><tr><td>Cell</td></tr></table>')
-- '<table><tr><td>Cell</td></tr></table>'

Returns: Policy

Permit common attributes: id, class, title, dir, lang.

policy:allow_elements("p")
policy:allow_standard_attributes()
policy:sanitize('<p id="intro" class="text" title="Introduction">Hello</p>')
-- '<p id="intro" class="text" title="Introduction">Hello</p>'

Returns: Policy

Apply policy to HTML string.

local policy = html.sanitize.ugc_policy()
policy:require_nofollow_on_links(true)
local dirty = '<p>Hello</p><script>alert("xss")</script>'
local clean = policy:sanitize(dirty)
-- '<p>Hello</p>'
ParameterTypeDescription
htmlstringHTML to sanitize

Returns: string

ConditionKindRetryable
Invalid regex patternerrors.INVALIDno

See Error Handling for working with errors.