VDB
EN

EEF-CVE-2026-68750

Quadratic sibling re-flattening in the html_sanitize_ex traversal engine allows CPU-exhaustion denial of service

빠른 조치

EEF-CVE-2026-68750 — html_sanitize_ex: 아래 명령으로 수정 버전으로 올리세요.

mix deps.update html_sanitize_ex

상세

## Summary

Inefficient Algorithmic Complexity vulnerability in the traversal engine in rrrene html\_sanitize\_ex allows an unauthenticated remote attacker to exhaust server CPU and memory via a flat run of sibling elements in sanitized HTML. The list clause of HtmlSanitizeEx.Traverser.traverse/2 recurses on the tail of a sibling list and then evaluates List.flatten(\[head\] ++ tail) over the already flattened result, so every one of n siblings copies and re-walks the entire remaining tail. The flattening is only needed for the rare case where scrub returns several replacement nodes for one node, but the cost is paid across the whole tail at every step, making traversal quadratic in sibling count.

The traverser sits on every public entry point, so no particular scrubber or configuration is required and the payload needs only allowed tags. A 160 KB body of 20,000 sibling elements occupies a scheduler for roughly 1.7 seconds, and the cost grows faster than the body does.

This issue affects html\_sanitize\_ex: from 0.3.1 before 1.5.3.

## Workaround

Cap the size of user-supplied HTML, and in particular the node count, before it reaches the sanitizer. The quadratic growth means the cap has to be small to be effective.

이 버전이 영향받나요?

사용 중인 패키지 버전을 입력하면 즉시 평가합니다.

영향 패키지

Hex / html_sanitize_ex
최초 영향 버전: 0.3.1 수정 버전: 1.5.3
수정 mix deps.update html_sanitize_ex

참고