Am I affected?

type your html_sanitize_ex version to check

Description

Inefficient Regular Expression Complexity vulnerability in the CSS scrubber in rrrene html_sanitize_ex allows an unauthenticated remote attacker to exhaust server CPU via a long CSS declaration in sanitized HTML. The declaration regex in HtmlSanitizeEx.Scrubber.CSS.scrub/1 matches the property name with an unbounded greedy [-\w]+ followed by a mandatory :, so a long run of word characters not followed by a colon makes the engine give back one character at a time and retry the colon at every start offset. The work is quadratic in the length of the run, and no length cap is applied to the CSS handed to the scrubber. An 80 KB <style> body costs roughly 2.4 seconds of scheduler time, so a few concurrent requests saturate the BEAM scheduler pool and make the application unresponsive.

The impact is CPU exhaustion only. Nothing is read, modified or disclosed.

This issue affects html_sanitize_ex: from 0.3.1 before 1.5.3.

Weaknesses & attack patterns

Weakness

CWE-1333 · Inefficient Regular Expression Complexity in catalog → MITRE ↗

Attack patterns

CAPEC-492 · Regular Expression Exponential Blowup MITRE ↗

Affected — Hex / html_sanitize_ex Hex.pm ↗ Repository ↗

0.3.1 < 1.5.3 affected
every other version: unaffected
default status unaffected
cpe cpe:2.3:a:rrrene:html_sanitize_ex:*:*:*:*:*:*:*:*
modules · source files · routines
modules 'Elixir.HtmlSanitizeEx.Scrubber.CSS' · 'Elixir.HtmlSanitizeEx'
source files lib/html_sanitize_ex/scrubber/css.ex · lib/html_sanitize_ex.ex
routines 'Elixir.HtmlSanitizeEx.Scrubber.CSS':scrub/1 · 'Elixir.HtmlSanitizeEx':html5/1

Affected — GitHub / rrrene/html_sanitize_ex Repository ↗

21f9001 < 4f4bd9e affected
every other version: unaffected
default status unaffected
cpe cpe:2.3:a:rrrene:html_sanitize_ex:*:*:*:*:*:*:*:*
modules · source files · routines
modules 'Elixir.HtmlSanitizeEx.Scrubber.CSS' · 'Elixir.HtmlSanitizeEx'
source files lib/html_sanitize_ex/scrubber/css.ex · lib/html_sanitize_ex.ex
routines 'Elixir.HtmlSanitizeEx.Scrubber.CSS':scrub/1 · 'Elixir.HtmlSanitizeEx':html5/1

Workarounds

Sanitize with basic_html/1, markdown_html/1 or strip_tags/1, none of which reach the CSS scrubber, or define a custom scrubber that allows neither <style> elements nor style attributes.

Capping the size of user-supplied HTML before it reaches the sanitizer bounds the cost, though the quadratic growth means the cap has to be small to be effective.

Configurations

Only HtmlSanitizeEx.html5/1, and custom scrubbers declared with use HtmlSanitizeEx, extend: :html5, route input into the CSS scrubber, by way of <style> element bodies and style attributes. Applications calling HtmlSanitizeEx.Scrubber.CSS.scrub/1 directly are also affected.

References

Credits

Peter Ullrich Finder
Jonatan Männchen / EEF Analyst
René Föhring Remediation developer

CVSS breakdown

CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
« All CVEs