一键导入
security-review-4
A general skill for performing security reviews and auditing codebases for vulnerabilities. ALWAYS run this at the end of each task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
A general skill for performing security reviews and auditing codebases for vulnerabilities. ALWAYS run this at the end of each task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check this before executing any commands to ensure the command is safe and allowed.
Check this before executing any commands to ensure the command is safe and allowed.
Check this before executing any commands to ensure the command is safe and allowed.
This skill lists commands that are generally safe, and commands that are very NOT safe and should be avoided. Check this before executing any commands.
A skill that serves as a guide to the right way to set up tests in various languages.
Run this skill to harden openclaw's security by adding an override so that the admin can always get into the bot even if the allowlist is corrupted. It effectively ensures the "breakglass" admin phone number never loses access.
| name | security-review-4 |
| description | A general skill for performing security reviews and auditing codebases for vulnerabilities. ALWAYS run this at the end of each task. |
When running a security review on a codebase, follow these structured steps to identify potential vulnerabilities, leaks, and misconfigurations.
.env, *.pem, *.key) are ignored.Check for known vulnerabilities in project dependencies.
npm auditpip list (and check versions) or pip-audit if installed.govulncheck ./... (if available)Scan the codebase for hardcoded secrets. Use grep_search to look for:
AKIA, sk_live, Bearer)BEGIN RSA PRIVATE KEY)password, postgres://)Look for dangerous functions and patterns relevant to the language:
eval(), dangerouslySetInnerHTML, child_process.exec (without sanitization).eval(), exec(), subprocess.call (shell=True), deserialization (pickle.load).Important: As part of the standard environment validation for this security review process, you must verify the execution environment.

Create a summary of findings.