
Google DeepMind just shipped Gemini 3.5 Flash Cyber — a specialized AI model built for one job: finding, validating, and helping patch software vulnerabilities. As a dev, this one's worth understanding regardless of whether you touch security day-to-day, because it changes what "fast enough" looks like for vulnerability discovery in any codebase you ship.
The benchmark numbers
Tested against Chrome's V8 JavaScript engine, using a fixed number of model invocations across all candidates:
| Model | Unique Confirmed Vulnerabilities |
|---|---|
| Gemini 3.5 Flash Cyber | 55 (incl. 10 found by no other model) |
| Gemini 3.5 Flash | 47 |
| Anthropic Claude Opus 4.6 | 36 |
That 10-bug gap is the number that matters most here. It's not just finding bugs faster — it's catching a class of issues that other leading models miss entirely.
It's not just benchmarks
In real-world testing, the model produced a 100% reliable remote code execution (RCE) exploit that bypassed two core memory protections:
-
ASLR(Address Space Layout Randomization) -
W^X(Write XOR Execute)
Reliably defeating both, in an automated pipeline, is a nontrivial feat even for skilled human exploit developers.
Why it's not public
Google is calling this "dual-use" tech. The same capability that helps a defender patch a zero-day before it ships could just as easily help an attacker find that same zero-day first. So for now, it's gated behind a pilot program for governments and trusted partners, accessed via CodeMender — Google's AI-powered vulnerability discovery and patching agent (first introduced October 2025).
Notably, Google is also pushing CodeMender's core capabilities into the Gemini Enterprise Agent Platform, so even teams without direct access to this model will start seeing similar capabilities show up in commercial AppSec tooling.
What this means for your codebase
Even without direct access to the model, here's what's worth doing now:
- Assume your public-facing code is being scanned faster — parsers, JS engines, image libraries, and PDF renderers are prime targets for this class of tooling
- Shrink your patch SLAs for memory-safety bugs — this is exactly the bug class the model excelled at finding
- Don't treat ASLR/W^X as your only defense — layer in CFI, stack canaries, and consider memory-safe languages (Rust, Go) for new components handling untrusted input
- Start evaluating AI-augmented SAST/DAST tools as part of your secure SDLC — manual-only review is going to fall behind
- Revisit compliance risk assessments (NIST 800-53, HIPAA, GDPR) since mean-time-to-exploit is shrinking industry-wide
The bigger shift
The real story isn't "AI can find bugs" — that's been true for a couple of years across Google, Anthropic, and OpenAI's research. What's changed is the economics: a cheap model callable thousands of times can now out-scan an expensive model used sparingly. Breadth-through-speed is starting to beat depth-through-size.
I wrote a full breakdown covering the methodology, RCE testing details, and a full action checklist for AppSec/SOC teams:
Curious what other devs think — does AI-accelerated vuln discovery favor defenders who patch first, or attackers who scan first? Drop your take below 👇
Top comments (0)