Skip to main content

security-review

Review code changes for security vulnerabilities, authentication gaps, injection risks, and unsafe patterns. Use before merging PRs or after security-sensitive changes.

跳到安装

来源信息

仓库
hoangsonww/AI-Agents-Orchestrator
最近来源活动
2026年4月4日 03:50
检测到的 SKILL.md 语言
英语
星标
83
分支
28

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
3 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
security-review
description
Review code changes for security vulnerabilities, authentication gaps, injection risks, and unsafe patterns. Use before merging PRs or after security-sensitive changes.
## Diff to review Review the current branch changes against main: ```bash git diff main...HEAD ``` If no diff is available, review the most recent commit: ```bash git diff HEAD~1 ``` ## Audit the changes for: 1. **Injection vulnerabilities** — SQL injection, XSS, command injection via unsanitized input 2. **Authentication & authorization gaps** — missing auth checks, broken RBAC, token handling issues 3. **Hardcoded secrets** — API keys, passwords, tokens in source code 4. **Path traversal** — unsanitized file paths that could escape intended directories 5. **Unsafe subprocess calls** — raw subprocess without CLICommunicator, shell=True usage 6. **Dependency issues** — known vulnerable packages, pinning concerns ## Use the checklist in this skill directory See `references/checklist.md` for the full security review checklist. ## Report format For each finding: - **Severity**: Critical / High / Medium / Low - **File**: path and line number - **Issue**: what the vulnerability is - **Fix**: concrete remediation steps
在 GitHub 查看