{% extends "base.html" %} {% load display_tags %} {% load get_system_setting %} {% load static from staticfiles %} {% load humanize %} {% block add_styles %} ul#select_by_severity a:hover, ul#bulk_edit a:hover { cursor: pointer; } .btn-success { color: #fff; background-color: #546474!important; border-color: #546474; } .btn-success:hover { background-color: #546474!important; } {% endblock %} {% block content %}

{{ test }} {% if test.tags %} {% for tag in test.tags %} {{ tag }} {% endfor %} {% endif %} Updated {{ test.updated|naturaltime|default_if_none:"" }}, Created {{ test.created|naturaltime|default_if_none:"" }}

{% if test.percent_complete > 0 %} {% endif %} {% if test.percent_complete > 0 %} {% endif %}
Engagement Environment DateProgress
{{ test.engagement.name }} {% if test.environment %} {{ test.environment }} {% else %} Unknown {% endif %} {{ test.target_start.date }} - {{ test.target_end.date }}
{{ test.percent_complete }}%
{% if test.description %}

Details

{{ test.description|markdown_render }}
{% endif %}

Findings ({{findings_count}}) {{ test.id|get_severity_count:"test" }}

{% if findings %} {% if 'enable_finding_sla'|fetch_system_setting %} {% endif %} {% if "enable_jira"|get_system_setting %} {% if jira_config and product_tab or not product_tab %} {% endif %} {% endif %}
{% include "dojo/paging_snippet.html" with page=findings %}
{% for finding in findings %} {% if 'enable_finding_sla'|fetch_system_setting %} {% endif %} {% if "enable_jira"|get_system_setting %} {% if jira_config and product_tab or not product_tab %} {% if finding.jira_creation %} {% endif %} {% if finding.jira_change %} {% endif %} {% endif %} {% endif %} {% endfor %}
Severity Name CWE Date AgeSLAReporter StatusJira Jira Age Jira Change
{{ finding.severity_display }} {{ finding.title }} {% if finding.file_path %} {% else %} {% if finding.endpoints.all %} {% endif %} {% endif %} {% if finding.notes.all %} {% endif %} {% if finding.tags %} {% for tag in finding.tags %} {{ tag }} {% endfor %} {% endif %} {% if finding.cwe > 0 %} {{ finding.cwe }} {% endif %} {{ finding.date }} {{ finding.age }} {{ finding|finding_sla }} {% if finding.reporter.get_full_name and finding.reporter.get_full_name.strip %} {{ finding.reporter.get_full_name }} {% else %} {{ finding.reporter }} {% endif %} {% if finding.under_defect_review %}Under Review, {% endif %}{{ finding.status }}{% if finding.duplicate_finding.id %}, Original {% endif %} {{finding.jira.jira_key}} {{ finding.jira_creation|timesince }} {{ finding.jira_change|timesince }}
{% else %}

No findings found.

{% endif %}

Potential Findings

{% csrf_token %}
{% for finding in stub_findings %} {% endfor %}
Name Severity Reporter Date Actions
{{ finding.title }} {% if finding.severity == "Critical" or finding.severity == "High" %} {% else %}{% endif %}{{ finding.severity }} {% if finding.reporter.get_full_name and finding.reporter.get_full_name.strip %} {{ finding.reporter.get_full_name }} {% else %} {{ finding.reporter }} {% endif %} {{ finding.date }}
Promote To Finding
{% csrf_token %}
{% include "dojo/paging_snippet.html" with page=stub_findings %}

Credentials {% if not cred_test and creds %} {% endif %}

{% if creds %} {% for cred in cred_test %} {% endfor %} {% for cred in creds %} {% endfor %}
Name Username Role Environment Authentication Provider Login Valid Actions
Credentials Configured for this Test {% if not cred_test %}
None configured
{% endif %}
{{ cred.cred_id.name }} {{ cred.cred_id.username }} {{ cred.cred_id.role }} {{ cred.cred_id.environment }} {{ cred.is_authn_provider }} {{ cred.cred_id.is_valid }}
Credentials Configured for this Engagement
{{ cred.cred_id.name }} {{ cred.cred_id.username }} {{ cred.cred_id.role }} {{ cred.cred_id.environment }} {{ cred.is_authn_provider }} {{ cred.cred_id.is_valid }}
{% else %}

No credentials configured. {% if not creds %} Configure engagement credentials first, then add credentials to the test. {% endif %}

{% endif %}
{% include "dojo/snippets/comments.html" with notes=notes object=test destination="test" %}
ProTip! Type e to edit this test. Type a to add a finding to this test.
{% endblock %} {% block postscript %} {% endblock %}