skills/security-review/SKILL.md
MANDATORY for security-sensitive code changes - OWASP-based security review with dedicated checklist, required before PR for auth, input handling, API, database, or credential code
npx skillsauth add troykelly/codex-skills security-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Dedicated security review for code handling authentication, authorization, user input, APIs, databases, or credentials.
Core principle: Security issues require specialized attention beyond general code review.
Trigger: This review is MANDATORY when changes touch security-sensitive paths.
Announce at start: "I'm performing a security review of this code."
This skill is MANDATORY when ANY of these files are modified:
| Pattern | Examples |
|---------|----------|
| **/auth/** | src/auth/login.ts, lib/auth/session.js |
| **/security/** | src/security/encryption.ts |
| **/middleware/** | src/middleware/authenticate.ts |
| **/api/** | src/api/endpoints.ts |
| **/*password* | utils/passwordHash.ts |
| **/*token* | services/tokenService.ts |
| **/*secret* | config/secrets.ts |
| **/*credential* | lib/credentials.js |
| **/*session* | middleware/session.ts |
| **/routes/** | src/routes/protected.ts |
| **/*.sql | migrations/001_users.sql |
Check with:
git diff --name-only HEAD~1 | grep -E '(auth|security|middleware|api|password|token|secret|credential|session|routes|\.sql)'
Review against each category:
| Check | Verify | |-------|--------| | SQL Injection | All queries use parameterized statements | | Command Injection | No user input in shell commands, or properly escaped | | LDAP Injection | LDAP queries use proper escaping | | XPath Injection | XPath queries use parameterized approach | | Template Injection | Template engines configured safely |
// VULNERABLE
db.query(`SELECT * FROM users WHERE id = '${userId}'`);
// SECURE
db.query('SELECT * FROM users WHERE id = ?', [userId]);
| Check | Verify | |-------|--------| | Password Storage | Passwords hashed with bcrypt/argon2 (not MD5/SHA1) | | Session Management | Secure, HttpOnly, SameSite cookies | | Token Handling | JWTs signed, validated, short-lived | | Brute Force Protection | Rate limiting on auth endpoints | | Credential Exposure | No credentials in logs, errors, or responses |
| Check | Verify | |-------|--------| | Data in Transit | HTTPS enforced, TLS 1.2+ | | Data at Rest | Sensitive data encrypted | | Secrets in Code | No hardcoded API keys, passwords, tokens | | Error Messages | No sensitive info in error responses | | Logging | No sensitive data logged |
# Check for hardcoded secrets
grep -rE '(password|secret|api_key|token)\s*[:=]\s*["\047][^"\047]+["\047]' src/
| Check | Verify | |-------|--------| | XML Parsing | External entities disabled | | DTD Processing | DTD processing disabled if not needed |
| Check | Verify | |-------|--------| | Authorization Checks | Every endpoint verifies permissions | | Direct Object References | Object access validated against user | | Privilege Escalation | Cannot elevate own privileges | | CORS | Properly restricted origins | | Method Restriction | Only allowed HTTP methods accepted |
| Check | Verify | |-------|--------| | Default Credentials | No default passwords in use | | Error Handling | Stack traces not exposed to users | | Security Headers | CSP, X-Frame-Options, etc. set | | Debug Mode | Disabled in production | | Unnecessary Features | Unused endpoints/features removed |
| Check | Verify | |-------|--------| | Output Encoding | User input encoded before display | | DOM XSS | innerHTML not used with user input | | Template Safety | Template engine auto-escapes | | CSP | Content Security Policy configured |
// VULNERABLE
element.innerHTML = userInput;
// SECURE
element.textContent = userInput;
// OR
element.innerHTML = DOMPurify.sanitize(userInput);
| Check | Verify | |-------|--------| | Object Deserialization | Untrusted data not deserialized | | JSON Parsing | Safe JSON.parse usage | | Type Validation | Deserialized objects validated |
| Check | Verify |
|-------|--------|
| Dependency Audit | pnpm audit / pip audit clean |
| Outdated Packages | No critically outdated dependencies |
| CVE Check | No known CVEs in dependencies |
# Run dependency audit
pnpm audit --prod
# or
pip-audit
| Check | Verify | |-------|--------| | Auth Events | Login success/failure logged | | Access Control | Permission denials logged | | Input Validation | Validation failures logged | | Sensitive Actions | Admin actions logged | | Log Integrity | Logs protected from tampering |
# List changed files matching security patterns
git diff --name-only HEAD~1 | grep -E '(auth|security|middleware|api|password|token|secret|session)'
For each security-sensitive file:
# Audit dependencies
pnpm audit --prod
# Check for outdated
pnpm outdated
Use severity levels:
| Severity | Description | Action | |----------|-------------|--------| | CRITICAL | Exploitable vulnerability, data breach risk | MUST fix before merge | | HIGH | Significant security weakness | MUST fix before merge | | MEDIUM | Defense-in-depth issue | SHOULD fix before merge | | LOW | Minor improvement | MAY fix in future issue |
Add to the main review artifact:
### Security Review
**Security-Sensitive:** YES
**Reviewed By:** [WORKER_ID or codex-subagent security-reviewer]
**OWASP Categories Checked:** 10/10
#### Security Findings
| # | OWASP Category | Severity | Finding | Status |
|---|----------------|----------|---------|--------|
| 1 | A03 Injection | CRITICAL | SQL injection in findUser() | FIXED |
| 2 | A02 Sensitive Data | HIGH | API key in config.ts | DEFERRED #456 |
| 3 | A01 Access Control | MEDIUM | Missing auth on /admin | FIXED |
#### Dependency Audit
pnpm audit: 0 vulnerabilities
**Security Review Status:** [PASS|ISSUES_FIXED|ISSUES_DEFERRED]
If security review is extensive, post as separate comment:
<!-- SECURITY_REVIEW:START -->
## Security Review
| Property | Value |
|----------|-------|
| Issue | #123 |
| Reviewer | `security-reviewer` subagent (codex-subagent) |
| Reviewed | 2025-12-29T10:30:00Z |
### Files Reviewed
- src/auth/login.ts
- src/middleware/authenticate.ts
- src/api/users.ts
### OWASP Checklist Results
| # | Category | Status | Notes |
|---|----------|--------|-------|
| A01 | Broken Access Control | PASS | Auth middleware on all protected routes |
| A02 | Cryptographic Failures | PASS | bcrypt for passwords, TLS enforced |
| A03 | Injection | FIXED | Parameterized SQL queries now |
| A04 | Insecure Design | PASS | - |
| A05 | Security Misconfiguration | PASS | - |
| A06 | Vulnerable Components | PASS | pnpm audit clean |
| A07 | Auth Failures | PASS | Rate limiting, secure sessions |
| A08 | Data Integrity Failures | PASS | - |
| A09 | Logging Failures | NOTE | Consider adding auth failure logging |
| A10 | SSRF | N/A | No server-side requests |
### Dependency Audit
found 0 vulnerabilities
**Security Review Status:** PASS
<!-- SECURITY_REVIEW:END -->
Before completing security review:
This skill is triggered by:
codex-subagent security-reviewerThis skill integrates with:
comprehensive-review - Security is criterion #4review-gate - Verifies security review for sensitive changesThis skill is enforced by:
.codex/rules/security-sensitive.md conditional rulesdata-ai
Defines behavior protocol for spawned worker agents. Injected into worker prompts. Covers startup, progress reporting, exit conditions, and handover preparation.
development
Defines context handover format when workers hit turn limit. Posts structured handover to GitHub issue comments enabling replacement workers to continue seamlessly.
data-ai
Use to spawn isolated worker processes for autonomous issue work. Creates git worktrees, constructs worker prompts, and handles worker lifecycle.
tools
Entry point for ALL work requests - triages scope from trivial to massive, asks clarifying questions, and routes to appropriate planning skills. Use this when receiving any new work request.