Greybox Assessment Report
Generated {{ generated_at }}
{% if severity_counts %}
{% for item in severity_counts %}
{{ item.count }} {{ item.severity }}
{% endfor %}
{% endif %}
Executive Summary
{{ summary }}
{% if analysis.methodology or analysis.findings %}
Vulnerability Analysis
{% if analysis.methodology %}
Methodology
{{ analysis.methodology }}
{% endif %}
{% if analysis.findings %}
Key Findings
{% for item in analysis.findings %}
| {{ item.severity }} |
{{ item.text }} |
{% endfor %}
{% endif %}
{% if analysis.fixes %}
Recommended Fixes
{% for fix in analysis.fixes %}
- {{ fix }}
{% endfor %}
{% endif %}
{% endif %}
Findings
{% if session.findings %}
{% for f in session.findings %}
{% if tool_descriptions.get(f.tool) %}
{{ tool_descriptions[f.tool] }}
{% endif %}
{{ f.summary or "(no output captured)" }}
{% endfor %}
{% else %}
No findings were logged for this session.
{% endif %}