{% extends "base.html" %} {% block content %}

Analysis Summary

Comprehensive overview of all scan results.

{% if file_info %} {% else %} {% endif %}

Target Process

{% if analysis_results.moneta and analysis_results.moneta.findings.process_info %} {% set info = analysis_results.moneta.findings.process_info %}

Name: {{ info.name }}
PID: {{ info.pid }}
Path: {{ info.path }}

{% endif %}
Overall Status
{{ 'Threats Detected' if yara_detections + pesieve_detections + moneta_detections + patriot_detections + hsb_detections > 0 else 'Clean' }}
Total Detections
{{ yara_detections + pesieve_detections + moneta_detections + patriot_detections + hsb_detections }}
Scan Duration
{{ "%.2f"|format(analysis_results.moneta.findings.scan_duration if analysis_results.moneta else 0) }}s
Scanner Status Detections Details
YARA {{ 'Suspicious' if yara_detections else 'Clean' }} {{ yara_detections }} {% if yara_detections %}
{% for match in analysis_results.yara.matches %}
Rule: {{ match.rule }} {% if match.metadata %} (Severity: {{ match.metadata.severity }}) {% endif %}
{% endfor %}
{% else %} No threats detected {% endif %}
PE-sieve {{ 'Suspicious' if pesieve_detections else 'Clean' }} {{ pesieve_detections }} {% if pesieve_detections %} {% set findings = analysis_results.pe_sieve.findings %}
{% if findings.total_scanned > 0 %}
Total Scanned: {{ findings.total_scanned }}
{% endif %} {% if findings.skipped > 0 %}
Skipped: {{ findings.skipped }}
{% endif %} {% if findings.hooked > 0 %}
Hooked: {{ findings.hooked }}
{% endif %} {% if findings.replaced > 0 %}
Replaced: {{ findings.replaced }}
{% endif %} {% if findings.hdrs_modified > 0 %}
Headers Modified: {{ findings.hdrs_modified }}
{% endif %} {% if findings.iat_hooks > 0 %}
IAT Hooks: {{ findings.iat_hooks }}
{% endif %} {% if findings.implanted > 0 %}
Implanted: {{ findings.implanted }}
{% endif %} {% if findings.implanted_pe > 0 %}
Implanted PE: {{ findings.implanted_pe }}
{% endif %} {% if findings.implanted_shc > 0 %}
Implanted Shellcode: {{ findings.implanted_shc }}
{% endif %} {% if findings.unreachable > 0 %}
Unreachable Files: {{ findings.unreachable }}
{% endif %} {% if findings.other > 0 %}
Other: {{ findings.other }}
{% endif %} {% if findings.total_suspicious > 0 %}
Total Suspicious: {{ findings.total_suspicious }}
{% endif %}
{% else %} No modifications detected {% endif %}
Moneta {{ 'Suspicious' if moneta_detections else 'Clean' }} {{ moneta_detections }} {% if moneta_detections %} {% set findings = analysis_results.moneta.findings %}
{% if findings.total_private_rwx > 0 %}
Private RWX: {{ findings.total_private_rwx }}
{% endif %} {% if findings.total_private_rx > 0 %}
Private RX: {{ findings.total_private_rx }}
{% endif %} {% if findings.total_modified_code > 0 %}
Modified Code: {{ findings.total_modified_code }}
{% endif %} {% if findings.total_heap_executable > 0 %}
Heap Executable: {{ findings.total_heap_executable }}
{% endif %} {% if findings.total_missing_peb > 0 %}
Missing PEB: {{ findings.total_missing_peb }}
{% endif %} {% if findings.total_mismatching_peb > 0 %}
Mismatching PEB: {{ findings.total_mismatching_peb }}
{% endif %}
{% else %} No anomalies detected {% endif %}
Patriot {{ 'Suspicious' if patriot_detections else 'Clean' }} {{ patriot_detections }} {% if patriot_detections %}
{% for finding in analysis_results.patriot.findings.findings %}
{{ finding.type }} ({{ finding.level }})
{% endfor %}
{% else %} No suspicious activities {% endif %}
Hunt-Sleeping-Beacons {{ 'Suspicious' if hsb_detections else 'Clean' }} {{ hsb_detections }} {% if hsb_detections %}
{% for detection in analysis_results.hsb.findings.detections %} {% for finding in detection.findings %}
{{ finding.type }} ({{ finding.severity }})
{% endfor %} {% endfor %}
{% else %} No suspicious behavior {% endif %}
{% endblock %}