ワンクリックで
security-report
Use this skill to generate structured, professional security assessment reports in JSON format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use this skill to generate structured, professional security assessment reports in JSON format.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill when analyzing Django applications for OWASP 2025 A01: Broken Access Control and Broken Object-Level Authorization (BOLA) vulnerabilities.
Use this skill when analyzing Django applications for framework-specific security issues and best practices.
Use this skill when analyzing code for OWASP Top 10 vulnerabilities. Provides structured guidance for identifying common web application security risks.
| name | security-report |
| description | Use this skill to generate structured, professional security assessment reports in JSON format. |
| license | MIT |
| metadata | {"author":"absoluteappsec","version":"1.0"} |
This skill ensures consistent, professional output format for security findings.
Structure your final output as a JSON security report with the following format:
{
"summary": {
"application": "Application name",
"assessment_type": "Static Analysis",
"total_findings": 5,
"critical": 1,
"high": 2,
"medium": 1,
"low": 1
},
"findings": [
{
"id": "FINDING-001",
"title": "SQL Injection in user search",
"severity": "Critical",
"category": "A03:2021 - Injection",
"file": "views.py",
"line": 45,
"code_snippet": "cursor.execute('SELECT * FROM users WHERE name = ' + name)",
"description": "User input is directly concatenated into SQL query without sanitization",
"impact": "Attacker can extract, modify, or delete database contents. May lead to full database compromise.",
"remediation": "Use parameterized queries: cursor.execute('SELECT * FROM users WHERE name = %s', [name])",
"references": [
"https://owasp.org/Top10/A03_2021-Injection/"
]
}
],
"recommendations": [
"Implement input validation middleware for all user inputs",
"Enable Django's security middleware stack",
"Add automated SAST scanning to CI/CD pipeline",
"Conduct security training for development team"
]
}
Use these criteria for consistent severity ratings: