EEF-CVE-2026-68749
Quadratic regex backtracking in the html_sanitize_ex CSS scrubber allows CPU-exhaustion denial of service
빠른 조치
EEF-CVE-2026-68749 — html_sanitize_ex: 아래 명령으로 수정 버전으로 올리세요.
mix deps.update html_sanitize_ex 상세
## 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.
이 버전이 영향받나요?
사용 중인 패키지 버전을 입력하면 즉시 평가합니다.