一键导入
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 职业分类
| 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:
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.