{% extends "base.html" %} {% block title %}Upload Interface - {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

You can upload suspicious executables or documents to obtain a dynamic analysis report. The documents or executables files are not shared with external parties. An analysis can take up to 15 minutes.

Malicious sample upload interface
{% if upload %}
Sample has been submitted {{ upload.filename }} as type {{ upload.mimetype }} with uuid {{ uuid }}
{% endif %} {% if s %}
Status of uploaded sample
{% for t in s %} {% if t['task']['errors']|length > 0 %} {% elif t['task']['status'] == 'failed_analysis' %} {% elif t['task']['status'] == 'reported' %} {% elif t['task']['status'] == 'running' %} {% elif t['task']['status'] == 'pending' %} {% else %} {% endif %} {% if cuckooStatus['version'] == '1.3-Optiv' %} {% elif cuckooStatus['version'] == '1.3-NG' %} {% else %} {% endif %} {% endfor %}
PDFTask IDSubmittercuckoo flavourSampleStatusError(s)SystemDate
{% if t['task']['status'] == 'reported' %} {% else %} N/A {% endif %} {% if t['task']['status'] == 'reported' %} {{ t['task']['id'] }} {% else %} {{ t['task']['id'] }} {% endif %} {{ user }} modified
Optiv v1.3
modified
Spender v1.3
vanilla v2.0-HEAD {{ t['task']['target'].split("/")[4] }} {{ t['task']['status'] }} {% if t['task']['errors']|length > 0 %} {% endif %} {{ t['task']['guest']['name'] }} {{ t['task']['completed_on'] }}
{% endif %} {% endblock %}