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

Tags

{{ categories.len() }} categories discovered
{% if !search_query.is_empty() %} {% if search_results.len() > 0 %}

Results for "{{ search_query }}"

{{ search_results.len() }} host(s) found
{% for host in search_results %} {% endfor %}
IP Address Hostname Ports Tags HTTP Services Status Actions
{{ host.ip }} {% if host.hostname != "" %} {{ host.hostname }} {% if host.ad_domain != "" %} ({{ host.ad_domain }}) {% endif %} {% 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 %} {{ tag.name }} {% endfor %}
{% else %} No tags {% endif %}
{% if host.http_services_count > 0 %} {{ host.http_services_count }} services {% else %} - {% endif %}
P S H SC
Details
{% else %}
No hosts found with tag "{{ search_query }}"
{% endif %} {% else %}

Enter a tag above to find matching hosts.

{% endif %}
{% if categories.len() > 0 %}

Browse all discovered tags organized by category. Click any tag to search for hosts with that tag.

Export Hosts by Tags

Select tags below and choose your export format

Selected Tags:

No tags selected - click tags below to add them
{% for category in categories %}

{{ category.name }}

{% for tag in category.tags %}
{{ tag.name|trim }} {{ tag.count }}
{% endfor %}
{% endfor %}
{% else %}

No Tags Available

No tags have been discovered yet. Tags are automatically generated during reconnaissance based on:

  • Operating Systems: Windows, Linux, FreeBSD
  • Web Servers: Apache, nginx, IIS
  • Databases: MySQL, PostgreSQL, MongoDB
  • Network Services: SSH, SMB, RDP, FTP
  • Applications: Jenkins, GitLab, Grafana
  • Hardware: Printers, Network devices

Tags will appear here as reconnaissance progresses and services are discovered.

View All Hosts
{% endif %}
{% endblock %}