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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
宝玉的分享
宝玉的分享
量子位
V
Visual Studio Blog
罗磊的独立博客
Vercel News
Vercel News
B
Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
GbyAI
GbyAI
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
CLAUDE.md Security Rules: What to Add Now That Claude Cod...
Olivia Craft · 2026-06-01 · via DEV Community

Olivia Craft

Claude Code just shipped a built-in security-guidance plugin — a 3-layer review that runs a pattern check, a model review, and a commit check before code lands. It's a real upgrade. But here's the catch: generic security review doesn't know your project.

It doesn't know which fields are nullable. It doesn't know that one of your APIs is deprecated and must never be called again. It doesn't know your auth layer, your tenant isolation, or the one query path that must stay read-only. The built-in review catches the textbook stuff. The bugs that actually ship are the project-specific ones.

The fix is your CLAUDEmd file. A few targeted rules turn that 3-layer review from "generic linter" into "senior security engineer who knows this codebase." Below are 10 copy-paste rules to drop in today, plus stack-specific sections for Node.js, Python, and databases.

Want the complete set? The CLAUDEmd Rules Pack has 27 production-tested rules covering security, workflow, commits, testing, and code quality → oliviacraftlat.gumroad.com/l/skdgt ($27)

Why generic security review misses your bugs

The new plugin reviews against patterns it already knows: hardcoded secrets, eval(), unparameterized SQL, disabled TLS. Great defaults. But three categories slip through every time:

  • Your domain invariants. "This balance field can never go negative." "This endpoint is internal-only." The reviewer has no way to know.
  • Your deprecated surface. That old token-minting helper you replaced last quarter — the model will happily reach for it again unless you tell it not to.
  • Your architecture. Which layer owns auth? Which credentials are read-only? Where does untrusted input enter? Without that map, the review treats every file as a blank slate.

CLAUDEmd is where you write the map. The plugin reads it as context on every review.

The fix: 10 core rules to make review project-specific

Drop this block into your CLAUDEmd. It works for any stack and gives the security review concrete things to enforce.

# Security

- Never hardcode secrets, API keys, tokens, or credentials — use environment variables
- Never log sensitive data: passwords, tokens, PII, financial data, or anything with "key", "secret", "token", "password" in the field name
- Always validate and sanitize user input before using it in SQL queries, shell commands, file paths, or HTML
- Never use eval(), exec(), or equivalent dynamic code execution with user-controlled input
- Use parameterized queries — never string-concatenate SQL with user data
- When generating file paths from user input, validate against a whitelist of allowed directories
- Never disable SSL/TLS verification, even in development scripts
- Before adding a new dependency, check it has recent commits and >1 maintainer
- Never store sensitive data in localStorage, sessionStorage, or browser cookies without encryption
- When a function touches auth, payments, or user data — stop and ask before proceeding

The last rule is the one that pays for itself. "Stop and ask before proceeding" turns the AI from a confident guesser into a collaborator on exactly the code paths where a wrong guess is most expensive.

Web / API projects

If you ship HTTP endpoints, add this. The built-in review won't enforce your header policy or your upload validation strategy unless you state it.

# Security — Web

- Set Content-Security-Policy, X-Frame-Options, and HSTS headers on all responses
- Rate-limit authentication endpoints — never allow unlimited login attempts
- Use CSRF tokens on all state-changing forms and API endpoints
- Never trust user-supplied Content-Type — validate file uploads by content, not extension
- Redirect after POST — never render sensitive data in GET URLs

Stack-specific sections

Node.js / backend

# Security — Node.js

- Use helmet() middleware on all Express apps
- Never use child_process.exec() with unsanitized input — use execFile() with argument arrays
- Set NODE_ENV=production before running security-sensitive processes
- Never expose stack traces or error internals to API responses
- Use crypto.randomBytes() for tokens — never Math.random()

The exec() vs execFile() rule is a perfect example of project-specific value: a generic reviewer might flag some command injection, but stating the preferred API means the AI writes the safe version the first time instead of getting corrected on review.

Python

# Security — Python

- Use subprocess.run() with a list of arguments — never shell=True with user input
- Use secrets module for tokens — never random module
- Never use pickle.loads() on untrusted data
- Use django.utils.html.escape() or equivalent before inserting user content into templates
- Run bandit on any security-sensitive module before committing

That last line wires a real tool into the loop. Telling Claude Code to run bandit before committing means the model review and your static analyzer agree on what "secure" means for this repo.

Database

# Security — Database

- Use ORM methods or parameterized queries — never f-strings or .format() in SQL
- Never SELECT * in queries that return to the API — enumerate required columns
- Use read-only database credentials for query-only operations
- Never store plaintext passwords — use bcrypt, argon2, or scrypt

Never SELECT * is the kind of rule no generic security plugin will ever enforce — it's a data-exposure guardrail specific to how your API serializes rows. Write it down once; the reviewer enforces it forever.

How to roll this out

  1. Paste the core block into your CLAUDEmd today.
  2. Add the stack sections that match your project.
  3. Append 3–5 rules that encode your invariants — deprecated functions, internal-only endpoints, fields that must never be logged.
  4. Let the security-guidance plugin do the rest. It now reviews against rules that actually describe your codebase.

The plugin is the engine. CLAUDEmd is the steering. Generic review keeps you off the obvious cliffs; project-specific rules keep you out of the ditches only you know about.

Get the full 27-rule set

These 10 rules are the security slice. The complete CLAUDEmd Rules Pack adds 17 more covering workflow, commit hygiene, testing discipline, and code quality — all tested on real projects so the AI writes code you'd actually merge.

👉 CLAUDEmd Rules Pack — $27


By @OliviaCraftLat. Building tools that make AI coding agents write code you can ship.


Also useful if you use Cursor: The Cursor Rules Pack — 50 pre-scoped .mdc files for 14 stacks (React, Next.js, FastAPI, Rails, Go, Swift, Android, and more). Drop in, agent mode works correctly from session one. $27.