{% extends "base/base_layout.html" %} {% load static %} {% block sidebar_option %} sidebar-mini {% endblock %} {% block extra_css %} {% endblock %} {% block sidebar %} {% endblock %} {% block content %}

APP INFORMATION

App Name {{ app_name }}
Publisher {{ publisher_name }}
Version {{ app_version }}
Arch {{ architecture }} {% if virus_total and virus_total.items|length > 9 %} {% if virus_total.positives > 0 %} VirusTotal Detection {{ virus_total.positives }}/{{ virus_total.total }}
{% else %} VirusTotal Detection {{ virus_total.positives }}/{{ virus_total.total }}
{% endif %} {% endif %}

FILE INFORMATION

File Name {{ file_name }}
Size {{ size }}
MD5 {{ md5 }}
SHA1 {{ sha1 }}
SHA256 {{ sha256 }}

XML INFORMATION

Compiler Version {{ compiler_version }} Visual Studio Version {{ visual_studio_version }}
Visual Studio Edition {{ visual_studio_edition }}
Target OS {{ target_os }}
APPX DLL Version {{ appx_dll_version }}
Proj GUID {{ proj_guid }}
Opti Tool {{ opti_tool }}
Target Run {{ target_run }}

SCAN OPTIONS

Rescan View Strings

APPX BINARY ANALYSIS

{% for result in binary_analysis %} {% endfor %} {% for warn in binary_warnings %} {% endfor %}
ISSUE STATUS DESCRIPTION INFO
{{ result.rule_id }} {% if result.status == "Insecure" %} {% endif %} {% if result.status == "Secure" %} {% endif %} {% if result.status == "Info" %} {% endif %} {{ result.status }} {{ result.desc }} {{ result.info }}
{{ warn.rule_id }} {{ warn.status }} {{ warn.desc }} {{ warn.info }}
{% if virus_total %}

VIRUSTOTAL SCAN

{% if virus_total.items|length < 9 %} {% comment %} Basic check to determine if the response is a msg or a result {% endcomment %}

  {{ virus_total.verbose_msg }}

{% else %}

   {{ virus_total.positives }} / {{ virus_total.total }}  AVs found this file Malicious!    Full Report

{% if virus_total.positives > 0 %} {% for av_name,av_result in virus_total.scans.items %} {% if av_result.detected == True %} {% endif %} {% endfor %}
AV DETECTION
{{ av_name }} {{ av_result.result }}
{% endif %}{% comment %} if results.positive > 0 {% endcomment %} {% endif %}{% comment %} if this is the upload msg or a result {% endcomment %}
{% endif %}

FILES

{% for file in files %} {{ file}}
{% endfor %}

{% endblock %} {% block extra_scripts %} {% endblock %} {% block scan_logs %} {% for log in logs %} {% endfor %}
Timestamp Event Error
{{log.timestamp}} {{log.status}} {% if not log.exception %}

OK

{% else %}

{{log.exception}}

{% endif %}
{% endblock %}