惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
量子位
腾讯CDC
A
About on SuperTechFans
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS Blog
V
V2EX
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
Recent Announcements
Recent Announcements
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
罗磊的独立博客
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
V
Visual Studio Blog
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
有赞技术团队
有赞技术团队

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI-Generated Code Is Merging Into Your Main Branch. Are Y...
vorsken · 2026-05-11 · via DEV Community

vorsken

AI coding tools have changed how fast we ship.
Copilot, Cursor, Claude — they write working code in seconds.

But "working" and "secure" are not the same thing.

SQL injection, hardcoded secrets, SSRF, broken object-level
authorization — these patterns show up in AI-generated code
all the time. Not because the tools are bad, but because they
optimize for correctness, not security policy.

And right now, that code is merging into your main branch.


The Patterns AI Gets Wrong

I've been running static analysis on AI-generated PRs for a while
now, and the same issues keep coming up.

1. Hardcoded Secrets

This one's almost embarrassingly common. AI tools have seen
millions of examples where inlining credentials "works" — so
they do it without hesitation.

client = OpenAI(api_key="sk-proj-abc123...")

Enter fullscreen mode Exit fullscreen mode

Once this merges, it lives in your git history. Forever.

2. SSRF (Server-Side Request Forgery)

Ask an AI to "fetch data from a URL the user provides" and it
writes exactly that — no validation, no allowlist.

response = requests.get(user_provided_url)

Enter fullscreen mode Exit fullscreen mode

Point that at http://169.254.169.254 and you're pulling cloud
credentials out of the metadata service. Classic.

3. Broken Object Level Authorization (BOLA)

This is the sneaky one. The endpoint looks totally fine at first
glance.

@app.get("/orders/{order_id}")
def get_order(order_id: int):
    return db.query(Order).filter(Order.id == order_id).first()

Enter fullscreen mode Exit fullscreen mode

Any authenticated user can access any order just by changing
the ID. It's OWASP API Top10 #1, and it's basically invisible
in a normal code review.

4. SQL Injection via String Formatting

Even in 2026, AI still reaches for f-strings when building
queries — especially in less common ORMs or raw SQL contexts.

query = f"SELECT * FROM users WHERE username = '{username}'"

Enter fullscreen mode Exit fullscreen mode

Not much to say here. We've known about this for 25 years.


The Fix: A Policy Gate at the PR Level

The standard CI pipeline checks if code works.
It doesn't check if code is safe.

Linters catch style. Tests catch regressions. Neither of them
catches "this endpoint has no ownership check."

What you actually need is a layer that runs security policy
against the PR diff — before merge, every time, automatically.
That means static analysis rules tuned to your threat model,
some AI-assisted context on top (not just pattern matching),
and a clear verdict on every PR: BLOCK, FLAG, or PASS.

Quarterly pentests and post-merge audits don't cut it anymore.
The enforcement has to happen at the pull request.


How vorsken Does It

I built vorsken to solve exactly this. It's a GitHub Action
that runs Semgrep + Claude AI on every PR diff and posts a
verdict as a PR comment.

Setup takes about two minutes:

# .github/workflows/vorsken.yml
- uses: zetide/vorsken@v0.2.6
  with:
    anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}

Enter fullscreen mode Exit fullscreen mode

You can configure what gets blocked and what gets flagged:

# .stacksecai.yml
policy:
  block_on: ["ERROR"]
  flag_on: ["WARNING"]
claude:
  model: "claude-haiku-4-5"
  severity_block: ["CRITICAL", "HIGH"]
  severity_flag: ["MEDIUM"]

Enter fullscreen mode Exit fullscreen mode

On every PR, you get something like this:

🚨 vorsken Policy Gate — BLOCK

Finding: Hardcoded API key detected
Risk: Credential exposure via git history
Fix: Use environment variables or a secrets manager
Rule: OWASP API8 – Security Misconfiguration

The PR can't merge until the finding is resolved. That's the
point.


Wrapping Up

AI coding tools aren't going away — and honestly, I don't want
them to. But the volume of AI-generated PRs is only going to
increase, and most pipelines aren't ready for what that means.

A policy gate at the PR level isn't a replacement for code
review. It's the layer that catches what humans miss when
they're moving fast.

If you're already shipping AI-generated code (and you probably
are), it's worth five minutes to see what's making it through.

vorsken on GitHub
GitHub Marketplace
vorsken.dev