ktor/undertow: CLEAN markers (no CWE-407 defects found)
This commit is contained in:
parent
1a527783ae
commit
339f2245ba
2 changed files with 22 additions and 0 deletions
11
defects/ktor/patch/CLEAN.md
Normal file
11
defects/ktor/patch/CLEAN.md
Normal 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.**
|
||||
11
defects/undertow/patch/CLEAN.md
Normal file
11
defects/undertow/patch/CLEAN.md
Normal 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.**
|
||||
Loading…
Add table
Add a link
Reference in a new issue