{% extends "base.html" %} {% load url from future %} {% block title %}Sample Detail{% endblock %} {% block content %} {% if sample %}

File Details

{% if binary_exists == 0 %} {% else %} {% endif %} {% with sectors=sample.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=sample.source obj_id=sample.id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=sample.releasability %} {% include 'releasability_list_widget.html' %} {% endwith %}
ID {{ sample.id }}
Filename {{ sample.filename }}
Filenames
    {% for filename in sample.filenames %}
  • {{ filename }}
  • {% endfor %}
Filetype {{ sample.filetype }}
Mimetype {{ sample.mimetype }}
Size {{ sample.size }}
MD5 MD5{{ sample.md5 }}
SHA1 {{ sample.sha1 }}
SHA256 {{ sample.sha256 }}
SSDeep {{ sample.ssdeep }}
Status {{sample.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=sample.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% with obj=sample obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=sample col=COL_SAMPLES %} {% include 'campaigns_display_widget.html' %} {% endwith %}
{% include 'relationships_listing_widget.html' %}
{% include 'objects_listing_widget.html' %}

Quick Summary

Backdoor {% if sample.backdoor %} {{ sample.backdoor.name }} ({{ sample.backdoor.version }}) {% endif %}
Exploit {% for exploit in sample.exploit %} {{ exploit.cve}},  {% endfor %}
{% include 'screenshot_widget.html' %}
{% include "comments_listing_widget.html" %}
{% with item=sample %} {% include "services_analysis_section.html" with crits_type="Sample" identifier=sample.md5 %} {% endwith %}
{% include 'samples_tools_widget.html' %} {% include 'services_tab_tabs_widget.html' %}
{{ backdoor_form.as_table }}
{{ exploit_form.as_table }}
{{download_form.as_table}}
{{unrar_sample_form.as_table}}
{% comment %} This is intentionally using unrar_sample_form here. No need to pass an identical form in. {% endcomment %} {{unrar_sample_form.as_table}}
{% else %}

Missing sample.

{% endif %} {% endblock %} {% block javascript_includes %} {% endblock %}