{% extends "report_base.html" %} {% load static from staticfiles %} {% load display_tags %} {% load humanize %} {% load get_endpoint_status %} {% load get_note_status %} {% load event_tags %} {% block content %}
{% if include_table_of_contents%}

Table of Contents for {{ product.name }}

{% endif %} {% if include_executive_summary %}

Executive Summary

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 product_type %} {% for prod in products %}

{{ prod.name }}

{% if prod.engagement_set.all %} {% for eng in prod.engagement_set.all %} {% if eng in engagements %}

{% 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:

    {% for t in eng.test_set.all %} {% if t in tests %}
  • {{ t.test_type.name }} ({{ t.environment.name|default:"unknown" }}): {{ t.target_start|date:"SHORT_DATE_FORMAT" }}
  • {% endif %} {% endfor %}
{% endif %} {% if eng.test_strategy %}

The test strategy for this engagement can be viewed at {{ eng.test_strategy }}

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

No engagements found for {{ prod.name }}

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

A total of {{ findings|length|apnumber }} finding{{ findings|length|pluralize }} of varying severity are represented in this report.

Engagement Finding Count

Opened bug count by month

{% endif %}
{% if findings %}

Findings

{% endif %} {% for finding in findings %} {% ifchanged finding.severity %}

{{ finding.severity|capfirst }}

{% endifchanged %}
Finding {{ finding.id }}: {{ finding.title }} {% if finding.tags %} {% for tag in finding.tags %} {{ tag }} {% endfor %} {% endif %}
{% if finding.risk_acceptance_set.all %} {% endif %} {% if finding.mitigated %} {% endif %} {% if finding.cwe > 0 %} {% endif %} {% if finding.risk_acceptance_set.all %} {% endif %} {% if finding.mitigated %} {% endif %} {% if finding.cwe > 0 %} {% endif %}
Severity StatusAcceptanceDate discovered Age ReporterDate Mitigated Mitigated ByCWE
{% if finding.severity %} {{ finding.severity }} {% else %} Unknown {% endif %} {{ finding.status }} View Risk Acceptance {{ finding.date }} {{ finding.age }} days {{ finding.reporter }}{{ finding.mitigated }} {{ finding.mitigated_by }} {{ finding.cwe }}
{% with endpoints=finding.endpoints.all|get_vulnerable_endpoints %} {% if endpoints %}
{% if finding.file_path %}
Location
{% else %}
Vulnerable Endpoints / Systems
{% endif %}
{% if endpoints %} {% colgroup endpoints into 2 cols as grouped_items %} {% for row in grouped_items %} {% for item in row %} {% endfor %} {% endfor %}
{% if item %} {{ item }}{% endif %}
{% elif finding.file_path %}
File Path Line Number
{{ finding.file_path }} {{ finding.line }}
{% else %}
No endpoints.
{% endif %}
{% endif %} {% endwith %} {% with endpoints=finding.endpoints.all|get_remediated_endpoints %} {% if endpoints %}
{% if finding.file_path %}
Location
{% else %}
Remediated Endpoints / Systems
{% endif %}
{% if endpoints %} {% colgroup endpoints into 2 cols as grouped_items %} {% for row in grouped_items %} {% for item in row %} {% endfor %} {% endfor %}
{% if item %} {{ item }}{% endif %}
{% elif finding.file_path %}
File Path Line Number
{{ finding.file_path }} {{ finding.line }}
{% else %}
No endpoints.
{% endif %}
{% endif %} {% endwith %}
Description
{{ finding.description }}
Mitigation
{{ finding.mitigation }}
{% if finding.get_report_requests %}
Sample Request(s): Displaying {{finding.get_report_requests.count}} of {{finding.burprawrequestresponse_set.count}}
{% for req in finding.get_report_requests %}
Request {{forloop.counter}}
{{ req.get_request }}
{% if req.get_response %}
Response {{forloop.counter}}
{{ req.get_response|truncatechars:800 }}
{% endif %} {% endfor %} {% endif %}
Impact
{{ finding.impact }}
References
{{ finding.references }}
{% if include_finding_images %}
Images
{% if finding.images.all.count > 0 %} {% for pic in finding.images.all %}

{% endfor %} {% else %}

No images found.

{% endif %} {% endif %} {% if include_finding_notes %} {% with notes=finding.notes.all|get_public_notes %} {% if notes.count > 0 %}
Notes
{% for note in notes reversed %} {% endfor %}
User Date Note
{{ note.author.username }} {{ note.date }} {{ note }}
{% endif %} {% endwith %} {% endif %} {% endfor %}
{% if include_table_of_contents %}
{% endif %}
{% endblock %} {% block js %} {% endblock %}