From workflow
Perform a security code review based on OWASP Top 10. Use when user asks for security audit, vulnerability review, or mentions OWASP. Triggers on "security review", "audit code", "check for vulnerabilities", "OWASP", "kiểm tra bảo mật".
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:security-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill is designed to perform a comprehensive security code review based on the OWASP Top 10 vulnerabilities. Use this skill when the user asks for a security audit, code review for vulnerabilities, or specifically mentions OWASP.
This skill is designed to perform a comprehensive security code review based on the OWASP Top 10 vulnerabilities. Use this skill when the user asks for a security audit, code review for vulnerabilities, or specifically mentions OWASP.
When reviewing code, systematically check for the following categories:
A01:2021-Broken Access Control
is_admin, has_permission).A02:2021-Cryptographic Failures
A03:2021-Injection
os.system, exec).A04:2021-Insecure Design
A05:2021-Security Misconfiguration
A06:2021-Vulnerable and Outdated Components
package.json, requirements.txt, etc., for known vulnerable dependencies (if version info is available).A07:2021-Identification and Authentication Failures
A08:2021-Software and Data Integrity Failures
pickle.load in Python, ObjectInputStream in Java) with untrusted data.A09:2021-Security Logging and Monitoring Failures
A10:2021-Server-Side Request Forgery (SSRF)
## Security Review Report (OWASP Top 10)
### Summary
[Brief overview of the security posture of the reviewed code.]
### Findings
#### [High/Medium/Low] <Vulnerability Name> (OWASP Category)
* **Location:** `path/to/file:line_number`
* **Description:** [Explain why this is a vulnerability.]
* **Remediation:** [Provide code fix or specific instruction.]
```language
// Secure code example
```
... (Repeat for other findings)
### General Recommendations
* [Broader security advice not tied to a specific line of code]
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub nguyenhuy158/skills --plugin workflow