{% extends "base.html" %} {% block title %}AV Submit :: Home{% endblock %} {% block appheader %} {% endblock %} {% block content %}

Malware Submission Tool

This tool allows analysts to submit undetected malware samples to our AV vendor(s) for the purpose of gaining immediate detections of the files.

{% csrf_token %}
{{ upload_form.sample }}
{% comment %} {# Charting example, will flesh this out one day to add charts to app. #}
{% endcomment %} {# If no targets exist yet, display alert to create one or more. #} {% if not submissiontarget_count %}

Setup

Submission targets have not been set up yet. Configure one in the site admin.
{% endif %} {% if submissionlog_latest %}

Last 10 submissions {% if submissionlog_count > submissionlog_latest.count %} View all ({{ submissionlog_count }}){% endif %}

{% for log in submissionlog_latest %} {% cycle 'row1' 'row2' as rowcolors silent %} {% endfor %}
File MD5File NameUserSubmission Date
{{ log.file_md5 }} {{ log.file_name|escape }} {{ log.submitter }} {{ log.date_submitted|date:"m/d/Y h:i A" }}
{% else %} {# Only if targets exist, send notice to start uploading. #} {% if submissiontarget_count %}
No samples have been submitted yet. Upload one!
{% endif %} {% endif %} {% endblock %}