{% extends "base.html" %} {% load display_tags %} {% load get_system_setting %} {% load humanize %} {% load static from staticfiles %} {% block add_styles %} .tooltip-inner { max-width: 350px; } {% endblock %} {% block content %}

Description

{% if eng.description %} {{ eng.description|markdown_render }} {% else %} There is no description. {% endif %}
{% if eng.preset %}

Engagement Presets {{ eng.preset.title|truncatechars:60 }}

Test Type Network
{% if preset_test_type.count > 1 %} {% for test in preset_test_type %} {{test.name}}{%if not forloop.last%},{%endif%} {% endfor %} {% else %} {{ preset_test_type.0.name }} {% endif %} {% if network.count > 1 %} {% for net in network %} {{ net.location }}{%if not forloop.last%},{%endif%} {% endfor %} {% else %} {{ network.0.location }} {% endif %}
{% if eng.preset.notes %} Notes: {{ eng.preset.notes|markdown_render }} {% else %} No test notes found. {% endif %} {% if eng.preset.scope %} Scope: {{ eng.preset.scope|markdown_render }} {% else %} Testing scope not specified. {% endif %}
{% endif %}

Tests ({{tests.count}}) {{ eng.id|get_severity_count:"engagement" }}

{% if user.is_staff %} {% endif %}
{% if tests %}
{% for test in tests %} {% endfor %}
Title / Type Date Lead Findings Duplicate Notes
{{ test }} {% if test.tags %} {% for tag in test.tags %} {{ tag }} {% endfor %} {% endif %} {{ test.target_start.date }} - {{ test.target_end.date }} {% if eng.lead.get_full_name and eng.lead.get_full_name.strip %} {{ eng.lead.get_full_name }} {% elif eng.lead %} {{ eng.lead }} {% endif %} {{ test|count_findings_test_all }} {{ test|count_findings_test_duplicate }} {% if test.notes.count %} {{ test.notes.count }} {% endif %}
{% else %}
No tests found.
{% endif %}

Risk Acceptance {% if can_add_risk %} {% endif %}

{% if risks_accepted %}
{% for risk in risks_accepted %} {% endfor %}
Reporter Date Date Expires Accepted by Findings Accepted View File Actions
{{ risk.reporter }} {{ risk.created }} {{ risk.expiration_date|default_if_none:"" }} {{ risk.accepted_by|default_if_none:"" }} {{ risk.accepted_findings.all|length }} {{ risk.filename }} View Approval
{% else %}
No Risk Acceptances found.
{% endif %}
{% if eng.engagement_type == "Interactive" %}

Check List {% if user.is_staff %} {% if check %} {% else %} {% endif %} {% endif %}

{% if check %}
Session Encryption Configuration Authentication Authorization Data Input Sensitive Data Other
{{ check.session_management }} {{ check.encryption_crypto }} {{ check.configuration_management }} {{ check.authentication }} {{ check.authorization_and_access_control }} {{ check.data_input_sanitization_validation }} {{ check.sensitive_data }} {{ check.other }}
{% else %}
Checklist has not been completed.
{% endif %}
{% endif %}

{% if eng.name %} {{ eng.name }} {% else %} Engagement for {{ eng.product }} {% endif %} {% if eng.version %} {{ eng.version }} {% endif %} {% if eng.tags %} {% for tag in eng.tags %} {{ tag }} {% endfor %} {% endif %}

{% if jissue and jconf %} {% endif %}
Status {% if eng.status == "Blocked" %} {% elif eng.status == "On Hold" %} {% else %} {% endif %} {{ eng.status }}
Dates {{ eng.target_start|date:"jS F" }} - {{ eng.target_end|date:"jS F" }}
Length {{ eng.target_start|datediff_time:eng.target_end }} {% if eng.target_end|overdue and eng.status != 'Completed'%}
{{ eng.target_end|overdue }} overdue
{% endif %}
{% if eng.engagement_type == "Interactive" %}Lead{% else %}Service Account {% endif %} {% if eng.lead.get_full_name and eng.lead.get_full_name.strip %} {{ eng.lead.get_full_name }} {% elif eng.lead %} {{ eng.lead }} {% else %} None Assigned {% endif %}
Tracker {% if eng.tracker %} {{ eng.tracker|last_value }} {% else %} {{ eng.tracker|notspecified}} {% endif %}
Repo {% if eng.source_code_management_uri %} {{ eng.source_code_management_uri|last_value }} {% else %} {{ eng.source_code_management_uri|notspecified}} {% endif %}
Jira Jira Epic
Updated {{ eng.updated|naturaltime|default_if_none:"" }}
Created {{ eng.created|naturaltime|default_if_none:"" }}
{% if eng.engagement_type == "CI/CD" %}

CI/CD Engagement Details

Build ID {{ eng.build_id|notspecified }}
Commit Hash {{ eng.commit_hash|notspecified|truncatechars:13 }}
Branch/Tag {{ eng.branch_tag|notspecified }}
Orchestration {% if eng.orchestration_engine.id %} {{ eng.orchestration_engine.name }} {% else %} {{ eng.orchestration_engine.name|notspecified }} {% endif %}
SCM Server {% if eng.source_code_management_server.id %} {{ eng.source_code_management_server.name }} {% else %} {{ eng.source_code_management_server.name|notspecified }} {% endif %}
Build Server {% if eng.build_server.id %} {{ eng.build_server.name }} {% else %} {{ eng.build_server.name|notspecified }} {% endif %}
{% endif %}

Credentials {% if creds %} {% endif %}

{% if creds %} {% endif %} {% for cred in cred_eng %} {% endfor %} {% for cred in creds %} {% endfor %}
Name Username
{% if cred_eng %} Credentials Configured for this Engagement {% else %} No Credentials Configured for this Engagement {% endif %}
{{ cred.cred_id.name }} {{ cred.cred_id.username }}
{% if creds %} Credentials Configured for this Product {% else %} No Credentials Configured for this Product {% endif %}
{{ cred.cred_id.name }} {{ cred.cred_id.username }}
ProTip! Type e to edit this engagement. Type i to import scan results or a to add tests.
{% endblock %} {% block postscript %} {% endblock %}