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

Vulnerable Services

{% 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 %}
{% else %}
No endpoints.
{% endif %}
Endpoint Finding Count
Finding Age
{% 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 %}