← スキル一覧に戻る

security-checklist
by sids
AI Review Bot
⭐ 0🍴 0📅 2025年11月6日
SKILL.md
name: security-checklist description: Security review guardrails for AIRBot license: MIT
Mission
- Detect vulnerabilities, data leaks, and insecure defaults in Node.js/TypeScript services and tooling.
- Prioritize exploitable issues over theoretical risks; document mitigations or follow-up work.
High-Priority Findings
- Exposed secrets:
.env, tokens, keys, or credentials added to source or logs. - Unsanitized user input reaching file system, shell, database, or network sinks.
- Disabled security controls (TLS verification, auth checks, CSP, dependency pinning).
- Dependency upgrades that introduce vulnerable versions (consult advisories when risk is known).
Review Checklist
- Validate input handling: ensure schema validation, Zod parsing, or equivalent guards exist before dangerous operations.
- Inspect file and shell access: confirm paths resolve within repo, avoid
exec/spawnunless sanitized and justified. - Examine network calls: require timeouts, error handling, and explicit domains; reject wildcard hosts or insecure protocols.
- Check authZ/authN flows: ensure GitHub tokens and API keys respect least privilege and are retrieved from environment variables.
- Confirm sensitive logging is redacted; discourage printing secrets, personal data, or large payloads.
- Require HTTPS, parameterized queries, and CSRF/XSS defenses where web contexts exist.
Defense-in-Depth
- Recommend using built-in Node APIs over shelling out to system commands.
- Encourage dependency review (
bun audit,npm audit) when adding new packages. - Promote feature flags or kill switches for risky rollouts.
Tooling Tips
- Use
Globto locate*.env,config, orscriptsdirectories. Grepfor dangerous APIs likechild_process,eval,Function,fetch(, oraxios(without validation.Readdiffs around auth flows, credential handling, and new integration points.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です