FlowSec Security Report

Repository: {{ repo_name }} Scanned: {{ scan_date }} Files scanned: {{ file_count }}
{{ total }}
Total Findings
{{ critical }}
Critical
{{ high }}
High
{{ medium }}
Medium
{{ low }}
Low
{{ risk_score }}
Risk Score
Findings Overview
{% for f in findings %} {% endfor %}
Severity Rule Title MITRE OWASP File
{{ f.severity.value }} {{ f.rule_id }} {{ f.title }} {{ f.mitre_technique }} {% if f.owasp_category %} {{ f.owasp_category }} {% endif %} {{ f.file_path }}
Detailed Findings
{% for f in findings %}
{{ f.severity.value }} {{ f.rule_id }} {{ f.title }} {{ f.mitre_technique }} {% if f.owasp_category %} {{ f.owasp_category }} {% endif %}
Description
{{ f.description }}
Remediation
{{ f.remediation }}
{% if f.narrative %}
AI Attack Narrative
{% for line in f.narrative.split('\n') %} {% if line.strip() %} {% if ':' in line %}
{{ line.split(':')[0] }}: {{ line.split(':', 1)[1] }}
{% else %}
{{ line }}
{% endif %} {% endif %} {% endfor %}
{% endif %}
{% endfor %}