{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block title %}Hosts{% endblock %} {% block content %}

Discovered Hosts

{{ hosts.len() }} hosts total | {{ hosts.len() }} showing
Page 1 of 1
Filter: All ★ Bookmarked Not Bookmarked Ready to Analyze Analyzed
{% if filter == "analyzed_ready" && hosts.is_empty() %}
Scanning in progress — no hosts have completed all workflow actions yet
{% endif %}
{% for host in hosts %} {% endfor %}
IP Address
Hostname
Domain
Ports
Tags
HTTP Services
Status
User Analysis
Nuclei Review
Bookmark
Actions
{{ host.ip }} {% if !host.short_hostname.is_empty() %} {{ host.short_hostname }} {% else %} - {% endif %} {% if !host.ad_domain.is_empty() %} {{ host.ad_domain }} {% else %} - {% endif %} {% if host.ports_count > 0 %} {{ host.ports_count }} ports {% else %} No ports {% endif %} {% if host.tags_with_source.len() > 0 %}
{% for tag in host.tags_with_source %} {% if loop.index0 % 3 == 0 %}
{% endif %} {{ tag.name }} {% if loop.index0 % 3 == 2 || loop.last %}
{% endif %} {% endfor %}
{% else %} No tags {% endif %}
{% if host.http_services_count > 0 %} {{ host.http_services_count }} {% else %} - {% endif %}
P S H SC
{% if host.analyzed %}
Analyzed (undo)
{% else if host.full_scan_complete && host.service_scan_complete && host.http_discovery_complete && host.screenshots_complete %}
Mark Analyzed
{% else %}
In Progress
{% endif %}
{% if host.nuclei_reviewed %}
Reviewed (undo)
{% else if host.has_nuclei_findings %}
Mark Reviewed
{% else %}
N/A
{% endif %}
{% if host.interesting %} {% else %} {% endif %} Details
{% endblock %}