{% extends "base.html" %} {% load navigation_tags %} {% load humanize %} {% load display_tags %} {% load authorization_tags %} {% load multiply %} {% load static %} {% block add_styles %} {{ block.super }} .graph {min-height: 158px;} h3 { margin-top: 5px; margin-bottom: 5px; font-size: 20px; line-height: 22px;} .tooltip-inner { max-width: 650px; } {% endblock %} {% block content %} {{ block.super }}

{% if host_view %} Host: {{ endpoint.host|url_shortener }} - {{ endpoint.host_mitigated_endpoints_count }} / {{ endpoint.host_endpoints_count }} mitigated endpoints {% else %} Endpoint: {{ endpoint|url_shortener }}{% if endpoint.is_broken %} 🚩{% endif %} - {% if endpoint.mitigated %} Mitigated {% elif endpoint.active_findings_count > 0 %} Vulnerable {% else %} No active verified findings {% endif %} {% endif %}

  Finding Age ({{ all_findings|length|apnumber }} finding{{ all_findings|length|pluralize }})
Opened findings count by month
{% if host_view %}

Endpoints

{% if endpoints %} {% colgroup endpoints into 3 cols as grouped_items %} {% for row in grouped_items %} {% for item in row %} {% endfor %} {% endfor %}
{% if item %} {% if item.vulnerable %} {% else %} {% endif %}  {{ item|url_shortener }}{% if endpoint.is_broken %} 🚩{% endif %} {% endif %}
{% else %}
No endpoints.
{% endif %} {% else %}

Host

{{ endpoint.host|url_shortener }}
{% endif %}
{% if not host_view and endpoint.tags.all %}

Tags

{% include "dojo/snippets/tags.html" with tags=endpoint.tags.all %}
{% endif %} {% if not host_view and endpoint_metadata %}

Additional Information

{% for key, value in endpoint_metadata.items %}
{{ key }}
{{ value }}
 
{% endfor %}
{% endif %}

Open Findings

{% if findings %}
{% include "dojo/paging_snippet.html" with page=findings page_size=True %}
{% for finding in findings %} {% endfor %}
Title Severity EPSS Score / Percentile Date Age Found by
{{ finding.title }} {{ finding.severity }} {{ finding.epss_score|format_epss }} / {{ finding.epss_percentile|format_epss }} {{ finding.date }} {{ finding.age }} {% for scanner in finding.found_by.all %} {{ scanner }} {% endfor %}
{% include "dojo/paging_snippet.html" with page=findings page_size=True %}
{% else %}

No findings found.

{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% block metrics %} {% endblock metrics %} {% endblock %}