Highlights
Auth Bypass: 2 prior fixes. Scrutinize any change in this area.
Aikido.Zen.Core/Vulnerabilities/PathTraversalDetector.cs: most-fixed (2 issues). Treat as high-risk during review.
6 high-severity fixes in this history; regressions here are high-impact.
Recurring patterns
The bug types that recur here, drawn from past fixes, not open vulnerabilities.
Path Traversal: The detector failed to canonicalize paths properly, permitting bypasses via case mismatches or encoded separators. Failure to resolve paths before containment checks allows attackers to read or write unauthorized local files.
SQL Injection: Permissive databases like SQLite or ClickHouse can execute queries that fail parser tokenization, allowing malicious user input to slip past tokenization filters unless queries that fail parser validation are explicitly blocked.
Auth Bypass: Attackers bypassed SQL injection detection filters by appending trailing whitespace, which evaded detection rules until the utility was modified to trim input.