用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill security-checklist命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | security-checklist |
| description | Security review — OWASP Top 10, LGPD/GDPR, API, infrastructure. |
Two agents load this checklist. They do not run the same checks. Read this section first and cover only your side; otherwise the same finding is reported twice into one consolidated summary.
security-specialist (security audit) | qa-specialist (behavioral QA) | |
|---|---|---|
| Question asked | "Can this be abused by an attacker?" | "Does this behave correctly for a legitimate user?" |
| Method | Read code, config, dependencies, and infrastructure; reason about attack paths | Exercise the running feature against its acceptance criteria |
| Evidence | File and line reference for the weakness | Reproduction steps and observed vs expected behavior |
Owned by the security audit — QA does not report these:
| Section | Scope |
|---|---|
| A02 Cryptographic Failures | Hashing algorithms, cost factors, TLS config, secrets in code |
| A05 Security Misconfiguration | Debug mode, default credentials, exposed ports, directory listing |
| A06 Vulnerable Components | Dependency CVEs, audit tooling, update process |
| A08 Integrity Failures | CI/CD integrity, deserialization, SRI hashes |
| A10 SSRF | URL allowlists, internal address blocking, metadata endpoints |
| HTTP Security Headers | Presence and correctness of every header |
| LGPD / GDPR | Legal basis, DPAs, cross-border transfers, breach process |
| Secrets & Credentials | Secret managers, git history, DB user privileges, key rotation |
Owned by behavioral QA — the security audit assumes QA covers these and does not duplicate them:
| Section | QA scope (behavior only) |
|---|---|
| A01 Broken Access Control | Sign in as user B, attempt to read user A's record — record the actual response |
| A04 Insecure Design | Invalid state transitions are rejected; rate limits actually trigger and reset |
| A07 Auth Failures | Login, logout, lockout, password reset, and expiry behave as specified end to end |
| A09 Logging Failures | Auth and admin events actually appear in logs; sensitive values do not |
| API-Specific Security | Validation rejects bad input; errors expose no stack traces; pagination is enforced |
Shared boundary — A03 Injection: the security audit owns whether the code is structurally safe (parameterized queries, argument arrays, escaping). QA owns whether hostile input is rejected at runtime. Both may report on A03; each must state which of the two it observed.
When you find something on the other side:
[cross-boundary → security-specialist] or [cross-boundary → qa-specialist].* is never used in production.env files not committed to gitnpm audit, composer audit, pip audit, trivy)none or HS256 with weak secretEvery HTTP response should include:
Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none'
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Strict-Transport-Security: max-age=31536000; includeSubDomains
Referrer-Policy: strict-origin-when-cross-origin
Permissions-Policy: geolocation=(), microphone=(), camera=()
.env in .gitignore; .env.example committed without values