{% load display_tags %} {% load humanize %} {% load event_tags %} {% if endpoints %}

== Endpoints ==

{% for endpoint in endpoints %}

=== {{ endpoint }} with {{ endpoint.active_findings|length|apnumber }} active findings ===

{% for find in endpoint.active_findings %}
==== Finding {{ find.id }}: {{ find.title | nice_title }} {% if find.mitigated %} Mitigated on: {{ find.mitigated }} {% endif %}====

==== Product: ====
{{ find.test.engagement.product.name }}


==== Status: ====
{{ find.status }}


==== Severity: ====
{{ find.severity }} ({{ find.numerical_severity }})

==== Description / Exploit: ====
{{ find.description|linebreaksbr }}


==== Impact: ====
{{ find.impact|linebreaksasciidocbr }}


==== Systems Vulnerable: ====
{% for endpoint in find.endpoints.all %} {{ endpoint }} +
{% endfor %}


==== Suggested Mitigation: ====
{{ find.mitigation|linebreaksasciidocbr }}


==== Further References: ====
{{ find.references|linebreaksasciidocbr }}


{% if include_finding_images %}

==== Finding Images: ====
{% if find.images.all %} {% for pic in find.images.all %} image::{{ host }}{% pic_token pic 'small' %}[] +
{% endfor %} {% else %} No images found. {% endif %}


{% else %}
{% endif %}
{% if include_finding_notes %}

==== Finding Notes: ====
{% if find.notes.all %} {% for note in find.notes.all %} {{ note.author }} - {{ note.date }} - {{ note }} +
{% endfor %} {% else %} No notes found. {% endif %}


{% else %}
{% endif %} {% endfor %} {% endfor %} {% endif %}