{% extends "report_base.html" %} {% load static %} {% load display_tags %} {% load humanize %} {% load get_endpoint_status %} {% load get_note_status %} {% load get_notetype_availability %} {% load event_tags %} {% block content %} {{ block.super }}
This report represents a security audit performed by the {{ team_name }} team. It contains confidential information about the state of your network and applications. Access to this information by unauthorized personnel may allow them to compromise your network.
{% if eng.name and eng.name|length > 0 %} The {{ eng.name }} {% else %} An {% endif %} engagement ran from {{ eng.target_start|date:"SHORT_DATE_FORMAT" }} {% if eng.target_end %} to {{ eng.target_end|date:"SHORT_DATE_FORMAT" }}. {% else %} and is ongoing. {% endif %}
{% if eng.test_set %}The engagement also included the following tests which may be reported here:
The test strategy for this engagement can be viewed at
{{ eng.test_strategy }}
No engagements found for {{ product.name }}
{% endif %}The following graphs represents the overall state of the product.
{% endif %}{{ disclaimer }}
A total of {{ endpoints|length|apnumber }} endpoint{{ endpoints|length|pluralize }} with findngs of varying severity are represented in this report.
{% endif %} {% for endpoint in endpoints %}Severity | Status | {% if finding.risk_acceptance_set.all %}Acceptance | {% endif %}Date discovered | Age | Reporter | {% if finding.mitigated %}Date Mitigated | Mitigated By | {% endif %} {% if finding.cwe > 0 %}CWE | {% endif %}
---|---|---|---|---|---|---|---|---|
{% if finding.severity %} {{ finding.severity }} {% else %} Unknown {% endif %} | {{ finding.status }} | {% if finding.risk_acceptance_set.all %}{% comment %} for some reason the font-awesome icons don't work with the report template{% endcomment %} {% for ra in finding.risk_acceptance_set.all|slice:":5" %} acceptance {% endfor %} | {% endif %}{{ finding.date }} | {{ finding.age }} days | {{ finding.reporter }} | {% if finding.mitigated %}{{ finding.mitigated }} | {{ finding.mitigated_by }} | {% endif %} {% if finding.cwe > 0 %}{{ finding.cwe }} | {% endif %}
{{ finding.cvssv3 }}
{{ finding.description }}
{{ finding.mitigation }}{% if finding.get_report_requests %}
{{ req.get_request }}{% if req.get_response %}
{{ req.get_response|truncatechars_html:800 }}{% endif %} {% endfor %} {% endif %}
{{ finding.impact }}
{{ finding.references }}{% if include_finding_images %} {% include "dojo/snippets/file_images.html" with size='original' obj=finding format="HTML" %} {% endif %} {% if include_finding_notes %} {% with notes=finding.notes.all|get_public_notes %} {% if notes.count > 0 %}
User | Date | {% with notes_with_type=notes|get_notetype_notes_count %} {% if notes_with_type > 0 %}Note Type | {% endif %}Note |
---|---|---|---|
{{ note.author.username }} | {{ note.date }} | {% if notes_with_type > 0 %}{% if note.note_type != None %} {{ note.note_type }} {% endif %} | {% endif %}{{ note|linebreaks }} |