{% load display_tags %} {% load humanize %} {% load event_tags %} {% load get_endpoint_status %} {% load get_note_status %} {% if findings %}

== Findings ==


{% endif %} {% for find in findings %}

==== {{ find.title | nice_title }} {% if find.mitigated %} Mitigated on: {{ find.mitigated }} {% endif %} {% if find.tags %} [ {% for tag in find.tags %} {{ tag }} {% endfor %} ] {% 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 }}


{% with endpoints=find.endpoints.all|get_vulnerable_endpoints %} {% if endpoints %}

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


{% endif %} {% endwith %} {% with endpoints=find.endpoints.all|get_remediated_endpoints %} {% if endpoints %}

==== Systems Remediated: ====
{% for endpoint in endpoints %} {{ endpoint }} +
{% endfor %}


{% endif %} {% endwith %}

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


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

==== Finding ID: ====
Finding {{ find.id }}


{% 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 %} {% with notes=find.notes.all|get_public_notes %} {% if notes.count > 0 %}

==== Finding Notes: ====
{% for note in notes reversed %} {{ note.author }} - {{ note.date }} - {{ note }} +
{% endfor %}


{% endif %} {% endwith %} {% endif %} {% endfor %}