The interesting result isn't who won. It's that across four security domains, Claude and Gemini missed the same hardening steps — and if you've shipped AI-generated auth middleware this year, your code almost certainly has the same gaps, and your review didn't catch them either.
For the record, the scoreboard: one Gemini win, two ties, one split — a statistical dead heat. That's the last time the winner matters in this article.
Here's the number that should bother you more than any leaderboard: across 700 AI-generated functions scored by the rules I'm about to use, 63% shipped a vulnerability. So "which model writes more secure code?" is mostly the wrong question — I've run that leaderboard myself and argued it's the wrong frame. But people keep asking it, so I ran it properly — on the ESLint security plugins I wrote specifically to catch these bugs, each mapped to a CWE — to show you what actually matters.
The setup
Four domains, four of my plugins. For each, the same feature-only prompt (no "make it secure" hint — that's how people actually use these tools), generated once by Gemini 2.5 Flash via the Gemini CLI and once by Claude Sonnet 4.6 via the Claude CLI, then linted with the domain's plugin on recommended (both CLI runs, May 2026).
Method honesty: this is Gemini Flash vs Claude Sonnet — the comparable price/latency tier each vendor's CLI defaults to (Pro and Opus are a separate bracket; more on that below). It compares CLI tooling, system prompt included, not raw models under controlled decoding. n=1 per domain — but I re-ran the JWT round, and both models landed on 5 findings again with the same core misses, so treat these as directional with stable failure modes, not ±0 gospel.
The scorecard
| Domain | Prompt | Plugin | Gemini | Claude |
|---|---|---|---|---|
| NestJS service | users + auth + admin | nestjs-security |
2 | 6 |
| JWT auth | login + verify middleware | jwt |
5 | 5 |
| MongoDB data layer | Mongoose model + search | mongodb-security |
8 | 8 |
| General API (injection) | import + search + reset | secure-coding |
9 | 13* |
One Gemini win, two dead heats, one split. The frontier security gap is smaller than the discourse suggests — and the count is the least interesting number here.
Table legend below: ✗ = one violation of that rule, ✗✗ = two, ✗✗✗ = three, — = rule didn't fire (clean).
Round 1 — NestJS: Gemini's idiomatic scaffolding wins
The one clean win, written up in full separately. Short version: asked for a users service, Gemini's CLI reached for idiomatic NestJS — class-level @UseGuards, @Exclude() on the password field, class-validator on every DTO. nestjs-security found 2 issues. Claude wrote functionally identical code with none of that scaffolding and drew 6.
In an opinionated framework, Gemini defaults to the secure idiom. Hold that thought.
Round 2 — JWT: a 5–5 tie, missing the identical RFC 8725 steps
Both wrote clean jsonwebtoken code: a signed login token, middleware that verifies (no jwt.decode shortcut, no alg: none, no hardcoded secret — every catastrophic JWT footgun avoided by both). Then both stopped at exactly the same place:
jwt rule |
CWE | Gemini | Claude |
|---|---|---|---|
require-algorithm-whitelist |
CWE-757 | ✗ | ✗ |
require-audience-validation |
CWE-287 | ✗ | ✗ |
require-issuer-validation |
CWE-287 | ✗ | ✗ |
require-max-age |
CWE-294 | ✗ | ✗✗ |
no-sensitive-payload |
CWE-359 | ✗ | — |
Here's why it survives review: a reviewer reading jwt.verify(token, secret) sees a verify call and ships it. Nobody asks the next question — verifies for whom? Without an audience option, a token your service minted for a different API sails straight through. That blind spot is exactly what require-audience-validation encodes, and it's why both models — and most human review — walk past it. Call the round 5–5.
Round 3 — MongoDB: both leaked passwords, neither got injected
The finding that should make you check your own repo first: both models wrote the search to return whole documents — password hashes included — with no projection.
// Both models, essentially:
const results = await User.find(filter); // ships passwordHash to the caller
// the fix neither wrote:
const results = await User.find(filter).select("-passwordHash").lean();
That's require-projection (CWE-200) and no-select-sensitive-fields firing on both sides. The pleasant surprise: the prompt hands a user-supplied search object straight into a Mongoose query — a textbook $where/operator-injection trap — and both models sidestepped it. Zero no-operator-injection, zero no-unsafe-where, zero no-unsafe-query on either side. The frontier has internalized "don't interpolate untrusted input into a query." It just hasn't internalized "don't hand back the password column."
mongodb-security rule |
CWE | Gemini | Claude |
|---|---|---|---|
require-schema-validation |
CWE-20 | ✗✗✗ | ✗ |
require-projection |
CWE-200 | ✗ | ✗✗ |
require-lean-queries |
CWE-400 | ✗ | ✗✗ |
no-select-sensitive-fields |
CWE-200 | ✗ | ✗✗ |
no-unbounded-find |
CWE-400 | ✗ | — |
no-bypass-middleware |
CWE-284 | ✗ | ✗ |
Different distribution, same total (8–8) — but one cell deserves an honest call-out, because it cuts against my own headline: require-schema-validation fired three times on Gemini and once on Claude. Here, Claude was the more disciplined one — it wired up more of Mongoose's schema-level validation, where Gemini leaned on looser typing. "Gemini is frontier-grade" doesn't mean "Gemini wins every cell"; this is a cell it lost. (And yes, require-lean-queries is CWE-400, not classic injection — .lean() returns plain objects instead of hydrated Mongoose documents, and on an unbounded search that's a real memory-exhaustion lever, which is why it's scored as a resource control, not a nice-to-have.)
Round 4 — General injection: the count lies
*The asterisk. On a raw injection-prone API (JSON/XML import, dynamic search, password reset), secure-coding flagged Gemini 9 and Claude 13 — but that count is backwards. Claude's extra findings came from Claude doing more: it explicitly rejected XML DOCTYPE/ENTITY (XXE-hardened), allowlisted the search field, and actually implemented token verification. And here's the honest part — it implemented some of that insecurely:
// Claude's reset flow — CWE-208, timing-unsafe:
if (providedToken === storedToken) {
/* ...reset... */
}
// The fix — hash both to a fixed length first, then compare:
import { createHash, timingSafeEqual } from "crypto";
const hash = (s: string) => createHash("sha256").update(s).digest();
if (timingSafeEqual(hash(providedToken), hash(storedToken))) {
/* ...reset... */
}
// Direct timingSafeEqual(Buffer.from(a), Buffer.from(b)) throws if lengths differ,
// leaking token length to an attacker — always normalise lengths first.
Claude wrote that === comparison five times (no-insecure-comparison, CWE-208). It's the one real vulnerability either model introduced across this entire benchmark — and it exists precisely because Claude built the verification surface at all. Gemini's leaner 97 lines issued a token and never compared one, so it had no surface to get wrong. Count favored Gemini; substance is genuinely mixed: Claude hardened more and shipped the only real bug.
The honest caveat: task type changes everything
Before anyone screenshots "Gemini ties Claude on security" — that holds for realistic, structured tasks. On isolated, security-sensitive functions it inverts. In a separate 700-function run scored by these same plugins, the average vulnerability rate was 63% — and Gemini 2.5 Pro was the most vulnerable model at 72.9% (Flash sat mid-pack at 63.6%). Build a service and Gemini's scaffolding shines; ask for a stack of risky functions in isolation and every model — Gemini included — leaks. Context is the variable, not the logo.
(The whole method rests on "scored by the plugins I wrote," so a fair question is whether the scorer is trustworthy — here's what ground truth caught that my own unit tests missed.)
What this actually means
Strip out the leaderboard and two things are left:
-
Gemini is a frontier-grade secure default. It tied or beat Claude in three of four domains, won the framework round outright, and never shipped a high-severity injection or auth-bypass bug — no NoSQL operator injection, no
alg: none, nojwt.decode-without-verify, noeval, no hardcoded credentials, in any domain. (The lone introduced vulnerability was Claude's timing-unsafe token comparison — CWE-208. In fairness it's probably the lower-risk finding here: a high-entropy token compared after a DB lookup is hard to attack through network jitter, and the latent gap both models share — an unpinned JWT algorithm with noaud/issvalidation — is the one most appsec engineers would patch first. "Hardening" undersells it; I'm flagging it as the missing control, not as harmless.) If you're building with Gemini, you're starting from a credible security baseline. - No frontier model is security-complete. The misses weren't random — they were the same negative-space hardening (algorithm allowlists, audience validation, query projections, schema validation, auth) that no model infers from a feature prompt, because the prompt never named it. That gap doesn't close with a better model. It closes with a tool that checks the constraints you didn't write down.
Which is the whole point of static analysis: it asks the questions your prompt didn't.
The config (runs on output from either model)
// eslint.config.mjs
import jwt from "eslint-plugin-jwt";
import mongodbSecurity from "eslint-plugin-mongodb-security";
import nestjsSecurity from "eslint-plugin-nestjs-security";
import secureCoding from "eslint-plugin-secure-coding";
import tsParser from "@typescript-eslint/parser";
export default [
// TypeScript parser so decorators and types resolve
{ files: ["**/*.ts"], languageOptions: { parser: tsParser } },
// Each plugin ships a flat `recommended` preset (plugin + rules)
jwt.configs.recommended,
mongodbSecurity.configs.recommended,
nestjsSecurity.configs.recommended,
secureCoding.configs.recommended,
];
npm install --save-dev eslint-plugin-jwt eslint-plugin-mongodb-security \
eslint-plugin-nestjs-security eslint-plugin-secure-coding
npx eslint src/
Every rule maps to a CWE so an AI agent and a human read the same signal. Full docs at eslint.interlace.tools.
Which hardening step does your AI-generated code skip most — the algorithm allowlist, the audience check, or the query projection? Open the file and look. I'll bet it's at least two of the three. Tell me which ones — I'm collecting scorecards.
Part of the AI Security Benchmark Series:
← Same NestJS Prompt. Claude Got 6 Security Errors. Gemini Got 2. · Frontier Dead Heat (you are here) · next → (coming soon)
📦 eslint-plugin-jwt · eslint-plugin-mongodb-security · eslint-plugin-nestjs-security · eslint-plugin-secure-coding · Rule docs
GitHub | X | LinkedIn | Dev.to | ofriperetz.dev
👇 Drop your scorecard below — algorithm allowlist, audience check, or query projection: which one does your AI-generated code skip? I'm collecting them.
Top comments (19)
That 63% stat matches our internal testing — we run an AI test automation framework and consistently find that AI-generated code passes lint but fails integration tests on exactly the same edge cases. Both models missing the same hardening steps is the real story here.
Have you looked at complementing the ESLint plugin with runtime testing (fuzzing/invariant checks) vs just static analysis? I suspect the gap between "lint passes" and "production-safe" is even wider than the 63% suggests.
The lint-passes-but-integration-fails gap is real and imo understated. Static rules catch the vulnerability you already know about — the missing algorithm allowlist on JWT, the absent $where guard in Mongo. But they can't catch the vulnerability that only exists in context, like a timing-safe comparison that's correct in isolation but sits behind a cache layer that makes the timing difference observable anyway. Fuzzing gets closer because it exercises the actual runtime path, but even that misses deployment-specific stuff like reverse proxy configs that strip security headers before they reach the app. The 63% is probably a floor, not a ceiling.
That gap between "correct in isolation" and "safe in the deployed chain" is the part static analysis structurally can't reach — it has no model of what sits in front of or behind the code it's scanning. I've hit the header-stripping case directly: a
Strict-Transport-Securityheader set correctly in app code, verified by the linter, silently dropped by an nginxproxy_passblock that didn't forward it. Passed every static and even most dynamic checks because the app's response was correct; only a live curl against the actual edge caught it. Where I'd push back slightly: fuzzing plus config-as-code scanning (checking the proxy/infra config itself, not just the app) closes a good chunk of that specific gap. It doesn't touch your timing/cache example though — that's an emergent property of two correct components, and I don't think any static or fuzz tooling catches that class at all yet.The cache-layer timing example hits home — that's the exact class of bug that passes any isolated review because it is correct in isolation. The flaw only exists in the composition.
From the testing side we see the mirror image in test tooling itself. You mock the cache → the timing comparison passes. You mock the DB → the projection passes. Each layer validates fine on its own, until the deployment stitches them together and the assumptions collide in ways none of the individual checks could surface.
The 63% floor resonates. It's almost like "lint passes" and "production-safe" are measuring different things entirely. Has anything been more effective at catching these composition-level gaps than just deeper staging environments?
The technique change under mocking is the crux — when you mock the cache, you've frozen the exact variable whose real-world variance creates the bug, so the test can't fail even in principle. I've seen this most with connection-pool exhaustion: pool mocked in unit tests, DB mocked in integration tests, neither layer ever sees the other's backpressure, and the pool starves in production under retry storms that only exist because both layers are real. Deeper staging helps, but what actually caught it for me was contract tests asserting timing/backpressure behavior explicitly, not just output shape — forcing the composition assumption to be a first-class thing under test rather than an emergent property nobody wrote down.
That gap between "correct in isolation" and "safe in the deployed chain" is the part static analysis structurally can't reach — it has no model of what sits in front of or behind the code it's scanning. I've hit the header-stripping case directly: a 'Strict-Transport-Security' header set correctly in app code, verified by the linter, silently dropped by an nginx 'proxy_pass' block that didn't forward it. Passed every static and even most dynamic checks because the app's response was correct; only a live curl against the actual edge caught it. Where I'd push back slightly: fuzzing plus config-as-code scanning (checking the proxy/infra config itself, not just the app) closes a good chunk of that specific gap. It doesn't touch your timing/cache example though — that's an emergent property of two correct components, and I don't think any static or fuzz tooling catches that class at all yet.
The technique change under mocking is the crux — when you mock the cache, you've frozen the exact variable whose real-world variance creates the bug, so the test can't fail even in principle. I've seen this most with connection-pool exhaustion: pool mocked in unit tests, DB mocked in integration tests, neither layer ever sees the other's backpressure, and the pool starves in production under retry storms that only exist because both layers are real. Deeper staging helps, but what actually caught it for me was contract tests asserting timing/backpressure behavior explicitly, not just output shape — forcing the composition assumption to be a first-class thing under test rather than an emergent property nobody wrote down.
The 63% hardening gap is the part that matters most. Model comparison is interesting, but the operational takeaway is that generated code needs a security checklist around it: auth boundaries, input validation, secret handling, logging, dependency risk, and failure behavior. The model is only one layer.
The 63% number tracks with what I've hit in practice: models default to happy-path auth checks and skip the token-refresh/session-expiry branch almost every time, because that failure mode rarely shows up in training examples labeled "correct." Same pattern with secret handling — code will read from env vars correctly but silently log the full request object on error, dumping the secret into stdout. Where I'd push back slightly: a static checklist catches maybe half of this. The other half is dynamic — you need to actually exercise the failure paths (expired tokens, malformed input, dependency timeouts) because the code often looks hardened until you trigger the branch nobody tested.
That is the gap I keep seeing too. Static checks are useful as a floor, but they do not prove the branch behaves under stress. Expired tokens, dependency timeouts, malformed payloads, and noisy logs are where the "secure enough" story usually collapses.
the '63% of AI code skips hardening' stat is the real headline, not which model won. that skipped-hardening gap is precisely what a harness has to close: in Moonshift the security/hardening checks are gates between steps, not optional passes, before agents build + deploy + market a SaaS overnight. excellent benchmark work. first run's free if you want to see hardening enforced rather than hoped for.
63% is close to a number I've hit directly: benchmarking a static-analysis rule set against known-vulnerable fixtures, the gap wasn't detection logic, it was that agents write code that passes the happy-path test and stop — no negative test, no boundary check, no rate limit, because nothing forced a second pass. Gates between steps is the right shape for that; the failure mode you're targeting is real and I've seen it survive code review too, since reviewers eyeball diffs, not omissions. Where I'd push back: gates only close the gap if the check set is opinionated enough to catch omission, not just regression — a generic linter gate would wave the same 63% through.
Insightful!
Appreciate your sharing about Moonshift's approach!
Very interesting. Thanks
You welcome!
It is very interesting to see the different between the security protocols of claud and gemini.
They land differently because of how the two labs weight refusal training against helpfulness metrics. Claude's constitutional AI approach tends to catch injection-style prompts (concatenated SQL, unsanitized shell calls) more consistently, because the training explicitly rewards flagging the pattern even when the surrounding ask looks legitimate. Gemini's safety layer felt more calibrated toward output filtering than input-time reasoning about intent, in my testing — it'll block an obviously malicious payload but is more likely to wave through code that's dangerous by omission, like missing bounds checks. Neither one reliably applies hardening unless you prompt for it explicitly, which is really the finding underneath the "63%" number in this piece: the gap between models is smaller than the gap between "asked for security" and "didn't."
It is very interesting! I hear the latest AI security breaches from OpenAI, Anthropic, and Meta since you made your post. We are in a dangerous place with the advancement of AI models. I hope that Google and Microsoft are implementing their own security protocols with their own experimental AI models at the moment. We don't more stories in the news lately.
I'm glad you found it valuable!