{% extends "base.html" %} {% block title %}Domains - Hermetic Suite{% endblock %} {% block content %} {% if domains %}

Tracked Domains

(0 selected)
{% for domain in domains %} {% endfor %}
Domain Records Scannable Vulns Last Discovered Actions
{{ domain.name }} {{ domain.dns_records | length }} {% set scannable = domain.dns_records | selectattr('record_type', 'equalto', 'A') | list | length %} {{ scannable }} {% set vuln_count = namespace(value=0) %} {% for record in domain.dns_records %} {% set vuln_count.value = vuln_count.value + (record.vulnerabilities|rejectattr('is_resolved')|list|length) %} {% endfor %} {% if vuln_count.value > 0 %} {{ vuln_count.value }} {% else %} 0 {% endif %} {{ domain.last_discovered.strftime('%Y-%m-%d %H:%M') if domain.last_discovered else 'Never' }} View
{% else %}

No domains tracked yet. Run external discovery to add domains.

{% endif %}

Add Domain Manually

{% endblock %}