← All articles
AppSec7 min readJun 2, 2026

Shifting Left Without Breaking the Build

Security gates that block every PR get disabled within a quarter. A pragmatic model for AppSec that engineers keep.

ML
Marcus Lee
Principal Security Engineer

Every AppSec program eventually proposes the same thing: scan everything, block on findings, fail the build. Six months later the gate is set to warn-only and nobody reads the output. The failure mode isn't tooling — it's signal-to-noise and ownership.

Gate on the things that are actually exploitable

Reachability analysis changes the economics. A critical CVE in a dependency you never call is noise; the same CVE on a reachable code path is a real finding. Tying severity to reachability lets you block on a handful of true positives instead of drowning teams in theoretical ones.

  • Block only on reachable, exploitable, fixable findings — warn on the rest.
  • Give every finding an owner and a deadline, not just a dashboard row.
  • Measure mean-time-to-remediate, not raw vulnerability counts.

Make the secure path the easy path

Paved-road libraries, pre-approved patterns, and templated pipelines do more for your risk posture than any blocking gate. When the default way to ship is also the secure way, you stop relying on engineers to remember the rules.