Security context

What an agent needs to avoid regressing past fixes and find the next vuln in this repo.

cobusgreyling/loop-engineering
main @ ffeb5a3
6
Fixes
0
CVEs
HIGH
Peak severity
50.0%
Coverage
Highlights
Auth Bypass: 1 prior fix. Scrutinize any change in this area.
.github/workflows/daily-triage.yml: most-fixed (1 issue). Treat as high-risk during review.
5 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.

Security Misconfiguration: Denylist patterns without '**/' anchoring failed to match nested sensitive paths, risking credential leakage across multiple components sharing the same glob logic.
Command Injection: Multi-line command input spliced directly into a run script allowed sandbox escape; the fix moves the command to a temp script with bash -eo pipefail, but alternate invocation paths may still splice.
Path Traversal: path.join with unvalidated patternId allowed traversal to arbitrary files; fix adds assertSafeSegment and allowlisting, but sibling resolvers may lack the same checks.