EEF-CVE-2026-68749

Source
https://cna.erlef.org/osv/EEF-CVE-2026-68749.html
Import Source
https://cna.erlef.org/osv/EEF-CVE-2026-68749.json
JSON Data
https://api.osv.dev/v1/vulns/EEF-CVE-2026-68749
Aliases
Published
2026-08-06T14:50:12.593Z
Modified
2026-08-06T15:10:59.840362155Z
Severity
  • 8.2 (High) CVSS_V4 - 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 CVSS Calculator
Summary
Quadratic regex backtracking in the html_sanitize_ex CSS scrubber allows CPU-exhaustion denial of service
Details

Summary

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.

Workaround

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.

Configuration

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.

Database specific
{
    "capec_ids": [
        "CAPEC-492"
    ],
    "cpe_ids": [
        "cpe:2.3:a:rrrene:html_sanitize_ex:*:*:*:*:*:*:*:*"
    ],
    "cwe_ids": [
        "CWE-1333"
    ]
}
References
Credits
    • Peter Ullrich - FINDER
    • Jonatan Männchen / EEF - ANALYST
    • René Föhring - REMEDIATION_DEVELOPER

Affected packages

Hex / html_sanitize_ex

Package

Name
html_sanitize_ex
Purl
pkg:hex/html_sanitize_ex

Affected ranges

Type
SEMVER
Events
Introduced
0.3.1
Fixed
1.5.3

Affected versions

0.*
0.3.1
1.*
1.0.0
1.0.1
1.1.0-rc1
1.1.0
1.1.1
1.2.0
1.3.0-rc1
1.3.0-rc2
1.3.0-rc3
1.3.0
1.4.0
1.4.1
1.4.2
1.4.3
1.4.4-rc.0
1.4.4
1.5.0-rc.0
1.5.0
1.5.1
1.5.2

Database specific

source
"https://cna.erlef.org/osv/EEF-CVE-2026-68749.json"

Git / github.com/rrrene/html_sanitize_ex

Affected ranges

Type
GIT
Repo
https://github.com/rrrene/html_sanitize_ex
Events

Affected versions

v0.*
v0.3.1
v1.*
v1.0.0
v1.0.1
v1.2.0
v1.4.1
v1.4.2
v1.4.3
v1.4.4
v1.5.0
v1.5.0-rc.0
v1.5.1
v1.5.2

Database specific

source
"https://cna.erlef.org/osv/EEF-CVE-2026-68749.json"