ワンクリックで
security-audit
Perform comprehensive security audits checking for OWASP Top 10 vulnerabilities and security best practices
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Perform comprehensive security audits checking for OWASP Top 10 vulnerabilities and security best practices
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Design RESTful APIs with proper resource modeling, error handling, pagination, and documentation
Design system architecture, data models, API contracts, and create Architecture Decision Records (ADRs)
Implement backend functionality including APIs, business logic, database operations, and integrations
Comprehensive code review checking for security, performance, maintainability, and best practices
Prepare deployment configuration, environment setup, health checks, and rollback procedures
Implement frontend user interfaces with modern frameworks, responsive design, and accessibility standards
| name | security-audit |
| description | Perform comprehensive security audits checking for OWASP Top 10 vulnerabilities and security best practices |
| allowed-tools | Read, Glob, Grep, Bash |
Identify and remediate security vulnerabilities before production deployment.
Bad - SQL Injection:
const query = `SELECT * FROM users WHERE id = ${userId}`;
Good - Parameterized:
const query = 'SELECT * FROM users WHERE id = ?';
db.query(query, [userId]);
Bad - XSS:
element.innerHTML = userInput;
Good - Escaped:
element.textContent = userInput;
# Security Audit Report
**Date**: [Date]
**Scope**: [What was audited]
## Summary
[Overall assessment]
## Critical Issues
1. **[Issue]** - [Location]
- Impact: [Severity]
- Fix: [Remediation]
## High Priority Issues
[Same format]
## Recommendations
[General improvements]
## Compliance Status
- OWASP Top 10: [X/10 passed]