{% 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 }}
Engagement: {{ engagement.name }}
Generated: {% display_date %}
This report represents a security assessment performed by the {{ team_name }} team including confidential information about the state of your network and applications.
Start Date | End Date | Status | Lead |
---|---|---|---|
{{ engagement.target_start|date}} | {{ engagement.target_end|date}} | {{ engagement.status }} | {{ engagement.lead.first_name }} {{ engagement.lead.last_name }} - {{ engagement.lead }} |
{{ engagement.description|markdown_render }} |
The engagement included the following tests:
The test strategy for this engagement can be viewed at {{ engagement.test_strategy }}
{% endif %}{% if item %} {{ item }}{% endif %} | {% endfor %}
A total of {{ findings|length|apnumber }} finding{{ findings|length|pluralize }} of varying severity are represented in this report.
{{ disclaimer }}
{% for test in engagement.test_set.all %}
{% if test in tests %}
{% if test.notes.all %}
{% for note in test.notes.all %}
{% if not note.private %}
{{ note.author }} - {{ note.date }} - {{ note }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
Name | Date | Severity |
---|---|---|
{{ finding.title }} | {{ finding.date }} | {{ finding.severity }} |
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 %}Dojo ID |
---|---|---|---|---|---|---|---|---|---|
{% 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.id }} |
{{ finding.cvssv3|markdown_render }}
{{ finding.description|markdown_render }}
{{ finding.mitigation|markdown_render }}{% if finding.get_report_requests %}
{{ req.get_request }}{% if req.get_response %}
{{ req.get_response|truncatechars_html:800 }}{% endif %} {% endfor %} {% endif %}
{{ finding.impact|markdown_render }}{% if finding.steps_to_reproduce %}
{{ finding.steps_to_reproduce|markdown_render }}{% endif %} {% if finding.severity_justification %}
{{ finding.severity_justification|markdown_render }}{% endif %}
{{ finding.references|markdown_render }}{% 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 }} |