{% extends "base.html" %} {% block title %}ATT&CK — Tsume{% endblock %} {% block content %}
{% if not_downloaded %}

ATT&CK data not downloaded yet

Run tsume attack-update from the CLI to fetch the dataset (~45MB), then search here.

{% elif no_match %}

No match for "{{ query }}"

Try a technique ID like T1055, or a group/software name like Emotet.

{% elif technique %}

{{ technique.name }}

{{ technique.attack_id }}
{% if technique.description %}

{{ technique.description.split('\n')[0] }}

{% endif %} {% if used_by %}

Used by:

{% for actor in used_by %} {{ actor.name }} ({{ actor.attack_id }}) {% endfor %}
{% endif %}

View on attack.mitre.org ↗

{% elif actors %} {% for actor, techniques in actors %}

{{ actor.name }}

{{ actor.attack_id }} · {{ actor.kind }}
{% if actor.aliases %}

aka {{ actor.aliases | join(", ") }}

{% endif %} {% if techniques %}

Techniques ({{ techniques | length }}):

{% for t in techniques[:15] %} {{ t.attack_id }} {{ t.name }} {% endfor %} {% if techniques | length > 15 %} {% endif %}
{% endif %}

View on attack.mitre.org ↗

{% endfor %} {% endif %} {% endblock %}