Everyone's talking about the Snowflake CI/CD vulnerability. The most dangerous CI/CD vulnerability is the one nobody has found yet
Everyone is focused on the fact that a researcher found and exploited a vulnerability in Snowflake's GitHub Actions workflow.
But finding it wasn't the interesting part.
The interesting part is that the vulnerability already existed before anyone knew it was there.
That's the uncomfortable reality of modern software delivery. We spend a lot of time talking about known vulnerabilities, discovered vulnerabilities, patched vulnerabilities, and CVEs. Attackers only need the vulnerabilities that haven't been discovered yet.
As AI accelerates both software development and security research, teams are creating and uncovering issues faster than ever. That's useful, but it doesn't solve the fundamental problem:
What protects a build pipeline from the risks nobody has identified yet?
I'm starting to think the industry may be over-indexed on detection and under-invested in prevention.
Instead of asking, "Can we find every risky condition?", maybe we should also be asking:
- Can a workflow make unexpected outbound connections?
- Can it access resources it shouldn't?
- Can it download and execute untrusted code?
- Can it exfiltrate secrets?
- Can it perform actions outside its intended scope?
If those behaviors are blocked by default, the specific vulnerability matters a lot less.
Full disclosure: I work for InvisiRisk, a company focused on build pipeline security, so I have some bias here. That said, I think the architectural question stands on its own.
Curious how others here think about this. Are you relying primarily on scanning, detections, and reviews, or are you putting preventive controls directly into your CI/CD pipelines?