{% load display_tags %} {% load humanize %} {% load event_tags %} {% load get_endpoint_status %} {% load get_note_status %} {% if findings %}
==== 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 endpoints %}
{{ endpoint }} +
{% endfor %}
==== Systems Remediated: ====
{% for endpoint in endpoints %}
{{ endpoint }} +
{% endfor %}
==== Suggested Mitigation: ====
{{ find.mitigation|linebreaksasciidocbr }}
==== Further References: ====
{{ find.references|linebreaksasciidocbr }}
==== Finding ID: ====
Finding {{ find.id }}
==== Finding Images: ====
{% if find.images.all %}
{% for pic in find.images.all %}
image::{{ host }}{% pic_token pic 'small' %}[] +
{% endfor %}
{% else %}
No images found.
{% endif %}
==== Finding Notes: ====
{% for note in notes reversed %}
{{ note.author }} - {{ note.date }} - {{ note }} +
{% endfor %}