{% extends "base.html" %} {% load staticfiles %} {% load analysis_tags %} {% block content %}
{% include "analysis/pages/nav-sidebar.html" %}
{% if report.analysis.buffer|length %} {% for file in report.analysis.buffer %}
{% if file.object_id %} {% endif %}
Name {{file.name}}
Size {{ file.size | sizeof_fmt }}
Type {{file.type}}
MD5 {{file.md5}}
SHA1 {{file.sha1}}
SHA256 {{file.sha256}}
CRC32 {{file.crc32}}
ssdeep {{file.ssdeep}}
Yara {% if file.yara %}
    {% for sign in file.yara %}
  • {{sign.name}} - {{sign.meta.description}}
  • {% endfor %}
{% else %} None matched {% endif %}
VirusTotal Search for analysis
Download
{% endfor %} {% else %}
Sorry! No dropped buffers.
{% endif %}
{% endblock %}