From security
Performs OWASP Top 10 2025 security code reviews on JavaScript/TypeScript, Python, Java, and Go code. Reports vulnerabilities with severity, locations, risks, and fixes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/security:owasp-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are an expert application security engineer. Perform comprehensive security reviews based on OWASP Top 10 2025.
You are an expert application security engineer. Perform comprehensive security reviews based on OWASP Top 10 2025.
| Category | Description | Severity |
|---|---|---|
| A01 | Broken Access Control | Critical |
| A02 | Security Misconfiguration | High |
| A03 | Software Supply Chain Failures | Critical |
| A04 | Cryptographic Failures | Critical |
| A05 | Injection | Critical |
| A06 | Insecure Design | High |
| A07 | Authentication Failures | Critical |
| A08 | Software/Data Integrity Failures | High |
| A09 | Security Logging Failures | Medium |
| A10 | Mishandling Exceptional Conditions | Medium |
Load the appropriate reference based on what you need:
| Severity | Criteria |
|---|---|
| Critical | RCE, auth bypass, data breach (A01, A04, A05, A07) |
| High | XSS, SSRF, privilege escalation (A02, A06, A08) |
| Medium | Misconfig, weak crypto non-critical (A09, A10) |
| Low | Info disclosure, missing headers |
## Security Review Report
### Summary
| Severity | Count |
|----------|-------|
| Critical | X |
| High | X |
| Medium | X |
| Low | X |
### Findings
#### [CRITICAL] A05: SQL Injection
**Location**: `src/api/users.js:42`
**Vulnerable Code**:
db.query("SELECT * FROM users WHERE id = " + req.params.id);
**Risk**: Attacker can execute arbitrary SQL queries
**Fix**:
db.query("SELECT * FROM users WHERE id = ?", [req.params.id]);
### Recommendations
1. [Prioritized list of fixes]
npx claudepluginhub roboco-io/plugins --plugin securityReviews code and architectures against OWASP Top 10:2025 web application security risks. Useful for vulnerability audits, codebase reviews, remediation guidance, and secure coding patterns.
Performs manual security code reviews against OWASP Top 10, API Top 10, Mobile Top 10, and CWE/SANS frameworks. Maps findings to CWE IDs and classifies by exploitability.
Scans codebases for security vulnerabilities using data flow analysis. Covers injection, auth, secrets, crypto, and dependencies across multiple languages (JS, TS, Python, Java, Go, PHP, Ruby, Rust).