{% extends "base.html" %} {% block content %}

{{ scan.tool_name }} - {{ scan.target }}

Engagement: {{ engagement.name }}

Back to Engagement

Status

{{ scan.status }}

Started

{{ scan.started_at[:19] if scan.started_at else '-' }}

Completed

{{ scan.completed_at[:19] if scan.completed_at else '-' }}

Duration

{% if scan.started_at and scan.completed_at %} {{ (scan.completed_at|datetime - scan.started_at|datetime).total_seconds()|int }}s {% else %}-{% endif %}

{% if scan.error %}
Error: {{ scan.error }}
{% endif %} {% if scan.result and scan.result.parsed %}

Parsed Results

{{ scan.result.parsed|tojson(indent=2) }}
{% elif scan.result %}

Raw Results

{{ scan.result|tojson(indent=2) }}
{% endif %}

Findings ({{ findings|length }})

{% for finding in findings %} {% endfor %}
Severity Type Title Target
{{ finding.severity }} {{ finding.finding_type }} {{ finding.title }} {{ finding.target }}
{% endblock %}