ktor/undertow: CLEAN markers (no CWE-407 defects found)

This commit is contained in:
russell@unturf.com 2026-03-29 19:34:44 -04:00
parent 1a527783ae
commit 339f2245ba
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
# CLEAN — Ktor
Scanned 2026-03-29 for CWE-407 (algorithmic complexity).
## Findings
- YamlConfig recursive value traversal — CLEAN: correctly guarded with `!visited.add(value)`
- JsonSchemaInference Kotlin reflection — CLEAN: proper visited set guards
- Plugin registration, content negotiation — CLEAN: safe HashMap-based dispatch
**Result: No actionable CWE-407 defects.**

View file

@ -0,0 +1,11 @@
# CLEAN — Undertow
Scanned 2026-03-29 for CWE-407 (algorithmic complexity).
## Findings
- AllowedContentEncodings linear scan — N is bounded by number of content encodings (typically 2-5); not actionable
- SingleSignOnAuthenticationMechanism — CLEAN: guarded with `seenSessionManagers.add(manager)` return check
- Predicate parser, handler chains — CLEAN: HashMap-based dispatch, no linear scans in hot paths
**Result: No actionable CWE-407 defects.**