{{ report_name }}

{{ report_info }}

Total Findings

{{ findings|length }}

Critical

{{ severity_counts.critical }}

High

{{ severity_counts.high }}

Medium

{{ severity_counts.medium }}

Low

{{ severity_counts.low }}

Info

{{ severity_counts.info }}
{% if product %}

Product information

Name
{{ product.name }}
ID
{{ product.id }}
Created
{{ product.created[:10] }}
Findings count
{{ product.findings_count }}
Description
{{ product.description or 'N/A' }}
{% endif %} {% if engagement %}

Engagement Information

Name
{{ engagement.name }}
Status
{{ engagement.status }}
Target start
{{ engagement.target_start or 'N/A' }}
Target end
{{ engagement.target_end or 'N/A' }}
Type
{{ engagement.engagement_type or 'N/A' }}
Active
{{ 'Yes' if engagement.active else 'No' }}
{% endif %}

Findings ({{ findings|length }})

{% if findings %} {% for finding in findings %}

{{ finding.title }}

{{ finding.severity }}
ID: {{ finding.id }} Date: {{ finding.date }} Active: {{ 'Yes' if finding.active else 'No' }} Verified: {{ 'Yes' if finding.verified else 'No' }}
{% if finding.description_html %}
{{ finding.description_html|safe }}
{% endif %} {% if finding.mitigation_html %}

Mitigation

{{ finding.mitigation_html|safe }}
{% endif %} {% if finding.impact_html %}

Impact

{{ finding.impact_html|safe }}
{% endif %} {% if finding.steps_to_reproduce_html %}

Steps to Reproduce

{{ finding.steps_to_reproduce_html|safe }}
{% endif %} {% if finding.file_path_html %}

File

{{ finding.file_path_html }} {% if finding.line_html %}
 Line: {{ finding.line_html }} {% endif %}

{% endif %} {% if finding.request_response_html %}

Request and response

{{ finding.request_response_html|safe }}
{% endif %} {% if finding.references_html %}

References:

{{ finding.references_html|safe }}
{% endif %}
{% endfor %} {% else %}
No findings to display.
{% endif %}