JavaScript is disabled. Some features may not work.
Security Hardening — ★ 2.2K GitHub Stars — Install Guide | SkillsNav
🇺🇸 English🇨🇳 中文
SkillsNav
Home

Security Hardening

★ 2.2K repovulnerabilityN/AIntermediateClaude
🤖 AI Summary

Validates all external inputs against a Zod schema at the API boundary, rejecting malformed data before any processing occurs. Enforces server-side validation exclusively, ignoring any client-side checks.

How to Install

Claude Code:
git clone --depth 1 https://github.com/rohitg00/awesome-claude-code-toolkit.git && cp awesome-claude-code-toolkit/skills/security-hardening ~/.claude/skills/SKILL.md -r
Validate all input at the boundary. Never trust client-side validation alone. import { z } from 'zod'; const CreateUserSchema = z.object({ email: z.string().email().max(255),

Details

Category Security → vulnerability
Sourcerohitg00/awesome-claude-code-toolkit
SKILL.mdView on GitHub →
Repo Stars★ 2.2K
Est. per Skill54 (shared across 40 skills from this repo)
DifficultyIntermediate
Risk LevelN/A

Related Skills

Works Well With

Skills from the same repository — often designed to work together