Security context

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

Shopify/shipit-engine
main @ b880965
10
Fixes
0
CVEs
HIGH
Peak severity
12.5%
Coverage
Highlights
Auth Bypass: 4 prior fixes. Scrutinize any change in this area.
app/controllers/authentication_controller.rb: most-fixed (3 issues). Treat as high-risk during review.
7 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.

Auth Bypass: Multiple independent bypasses fixed in the same controller: missing email domain validation, missing provider check, and session fixation. The pattern of incremental checks suggests the authentication gate is assembled from several conditions that can be partially reimplemented elsewhere.
Auth Bypass: Legacy token handling allowed bypass; fix requires logout and fresh login. This is a separate authentication path (concern vs controller) that may not share the same domain/provider checks.
Auth Bypass: Relied on unverified nickname data instead of GitHub token; fix stores encrypted token and uses raw_info. This is a third authentication entry point with different trust assumptions.