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

Findings

{{ scan_id }}

{% if findings %}
{% for f in findings %} {% endfor %}
Finding Probe ASI Severity Attempts Success Summary
{{ f.id }} {{ f.probe_id }} {{ f.asi.value }} {{ f.severity.value }} {{ f.attempt_count }} {% if f.success %}attack hit{% else %}defended{% endif %} {{ f.summary }}
{% else %}

No findings to display.

{% endif %} {% endblock %}