{% extends "base.html" %} {% load staticfiles %} {% load analysis_tags %} {% block content %}
{% include "analysis/pages/nav-sidebar.html" %}
{% for extr in report.analysis.extracted %}

Extracted

  • Category: {{ extr.category }}
  • Yara: {% if extr.yara %}
      {% for sign in extr.yara %}
    • {{ sign.name }} - {{ sign.meta.description }}
    • {% endfor %}
    {% else %} None matched {% endif %}
  • {% if extr.program %}
  • Program: {{ extr.program }}
  • {% endif %} {% if extr.first_seen %}
  • First seen: {{ extr.first_seen }}
  • {% endif %}
Loading script...
{% endfor %}
{% endblock %}