{% extends "base.html" %} {% block title %}Investigation: {{ inv.query }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Investigation: {{ inv.query }}

{{ inv.query_type }} {{ inv.status }} Started: {{ inv.created_at[:19] }} {% if inv.completed_at %} Completed: {{ inv.completed_at[:19] }} {% endif %}
Export Report New Search
{{ inv.total_entities }}
Entities Found
{{ inv.total_relationships }}
Relationships
{{ inv.modules_run|length }}
Modules Run
{{ inv.entity_counts|length }}
Entity Types
Email Username Domain IP Address Social Profile Phone Breach WHOIS Location Company Person
{% for entity in inv.entities %} {% endfor %}
Type Value Source Confidence Details
{{ entity.entity_type }} {% if entity.value.startswith('http') %} {{ entity.value }} {% else %} {{ entity.value }} {% endif %} {{ entity.source_module }}
{{ (entity.confidence * 100)|int }}%
{% if entity.metadata %} {% endif %}

Entity Type Distribution

{% for type_name, count in inv.entity_counts.items() %}
{{ type_name }}
{{ count }}
{% endfor %}

Relationship Types

{% for rel_type, count in inv.relationship_counts.items() %}
{{ rel_type }}
{{ count }}
{% endfor %}

Modules Executed

{% endblock %} {% block scripts %} {% endblock %}