{{ repo_name }} Security Analysis Report
🕒 Generated on {{ timestamp }}
{% for tab in tab_data %}
{{ tab.name }}
{{ tab.count }}
{% endfor %}
{% for severity in ['error', 'warning', 'note', 'none', 'unknown'] %}
0
{{ severity.capitalize() }}
{% endfor %}
Severity
All Severities
{% for option in severity_options %}
{{ option.label }}
{% endfor %}
Vulnerability Type
All Types
{% for option in type_options %}
{{ option.label }}
{% endfor %}
Expand All
Collapse All
{% for tab in tab_data %}
Type
Severity
Description
File
Confidence
{% for result in tab.results %}
â–¶
{{ result.type }}
{{ result.severity.capitalize() }}
{{ result.description }}
{{ result.file }}
{{ result.confidence | capitalize }}
{% set detail_data = detail_contents[result.result_index] %} {% if detail_data %}
{% set description = detail_data.description %} {% set has_description = detail_data.has_description %} {% set has_properties = detail_data.has_properties %} {% set has_code = detail_data.has_code %} {% set code_lines_with_metadata = detail_data.code_lines_with_metadata %} {% set formatted_properties = detail_data.formatted_properties %} {% include 'detail_content.html' %}
{% endif %}
{% endfor %}
{% endfor %}