security-and-hardening
仓库创建 2026年2月16日最近提交 20 小时前SkillHot 收录 20 天前
▸ 精选理由
把安全作为内建约束,适合上线前安全审查与加固。
这个 Skill 做什么
针对输入、认证、存储与集成等环节强化安全与防护措施。
在处理用户输入、认证、数据存储或第三方集成时,把代码做硬化和防护,防止注入、越权和泄密等常见漏洞。适合任何接收不可信数据、管理会话或与外部服务交互的功能上线前使用。特别之处在于把安全当成每一行代码的约束:输入校验、密钥管理、最小权限与授权检查都要落实。
▸ 展开 SKILL.md 英文原文
Hardens code against vulnerabilities. Use when handling user input, authentication, data storage, or external integrations. Use when building any feature that accepts untrusted data, manages user sessions, or interacts with third-party services.
8.1w
Stars
8.7k
Forks
24
仓库内 Skill
+10.0k
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/addyosmani/agent-skills/main/skills/security-and-hardening/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/addyosmani/agent-skills/main/skills/security-and-hardening/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Security and Hardening ## Overview Security-first development practices for web applications. Treat every external input as hostile, every secret as sacred, and every authorization check as mandatory. Security isn't a phase — it's a constraint on every line of code that touches user data, authentication, or external systems. ## When to Use - Building anything that accepts user input - Implementing authentication or authorization - Storing or transmitting sensitive data - Integrating with external APIs or services - Adding file uploads, webhooks, or callbacks - Handling payment or PII data ## Process: Threat Model First Controls bolted on without a threat model are guesses. Before har
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有