{% extends "base.html" %} {% from 'partials/_macros.html' import scanner_table_header, scanner_yara_row, scanner_status_cell, scanner_count_cell, status_grid_3 %} {% block breadcrumb %} Files {% if file_info %}{{ file_info.original_name }}{% else %}Process{% endif %} Dynamic Summary {% endblock %} {% block content %}
Dynamic Analysis Summary {% if file_info %} {% else %} {% endif %}

Comprehensive overview of all scan results.

{% if analysis_results.moneta and analysis_results.moneta.findings.process_info %} {% set info = analysis_results.moneta.findings.process_info %}
Process
{{ info.name }}
PID
{{ info.pid }}
Path
{{ info.path }}
{% endif %}
{% set total_detections = yara_detections + pesieve_detections + moneta_detections + patriot_detections + hsb_detections %} {% set duration_value = "%.2f"|format(analysis_results.analysis_metadata.total_duration if analysis_results.analysis_metadata else 0) ~ "s" %} {{ status_grid_3(total_detections, 'Total Duration', duration_value) }}
Scanner Results
{{ scanner_table_header() }} {{ scanner_yara_row(yara_detections, analysis_results.yara.matches) }} {{ scanner_status_cell(pesieve_detections) }} {{ scanner_count_cell(pesieve_detections) }} {{ scanner_status_cell(moneta_detections) }} {{ scanner_count_cell(moneta_detections) }} {{ scanner_status_cell(patriot_detections) }} {{ scanner_count_cell(patriot_detections) }} {{ scanner_status_cell(hsb_detections) }} {{ scanner_count_cell(hsb_detections) }}
PE-sieve {% 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: {{ findings.unreachable }}
{% endif %} {% if findings.other > 0 %}
Other: {{ findings.other }}
{% endif %} {% if findings.total_suspicious > 0 %}
Total Modifications: {{ findings.total_suspicious }}
{% endif %} {% else %} No memory modifications observed {% endif %}
Moneta {% if moneta_detections %} {% for key, value in analysis_results.moneta.findings.items() %} {% if value is number and value > 0 and key != 'scan_duration' %}
{% if key == 'total_regions' %}Total Regions: {{ value }} {% elif key == 'total_private_rx' %}Private RX: {{ value }} {% elif key == 'total_private_rwx' %}Private RWX: {{ value }} {% elif key == 'total_abnormal_private_exec' %}Abnormal Private Executable: {{ value }} {% elif key == 'total_heap_executable' %}Heap Executable: {{ value }} {% elif key == 'total_modified_code' %}Modified Code: {{ value }} {% elif key == 'total_modified_pe_header' %}Modified PE Headers: {{ value }} {% elif key == 'total_inconsistent_x' %}Inconsistent Execute Flags: {{ value }} {% elif key == 'total_missing_peb' %}Missing PEB: {{ value }} {% elif key == 'total_mismatching_peb' %}Mismatching PEB: {{ value }} {% elif key == 'total_threads_non_image' %}Threads in Non-Image Memory: {{ value }} {% endif %}
{% endif %} {% endfor %} {% else %} No anomalies observed {% endif %}
Patriot {% if patriot_detections %} {% for finding in analysis_results.patriot.findings.findings %}
{{ finding.type }} ({{ finding.level }})
{% endfor %} {% else %} No indicators observed {% endif %}
Hunt-SB {% if hsb_detections %} {% for detection in analysis_results.hsb.findings.detections %} {% for finding in detection.findings %}
{{ finding.type }} ({{ finding.severity }})
{% endfor %} {% endfor %} {% else %} No sleep-pattern indicators {% endif %}
Process Telemetry Summary
{% if analysis_results.rededr and analysis_results.rededr.findings %} {% set findings = analysis_results.rededr.findings %} {% set summary = findings.summary %} {% set proc = findings.process_info or {} %}
Total Events
{{ summary.total_events }}
DLLs Loaded
{{ summary.total_dlls }}
Image Loads
{{ summary.total_image_loads }}
Threads
{{ summary.total_threads }}
Children
{{ summary.total_child_processes }}
PID
{{ proc.pid or 'N/A' }}
Parent PID
{{ proc.parent_pid or 'N/A' }}
Status
{% if proc.is_protected_process %}Protected{% else %}Standard{% endif %} {% if proc.is_debugged %}Debugged{% endif %}
{% if proc.image_path %}
Image
{{ proc.image_path }}
{% endif %} {% if proc.commandline %}
Command
{{ proc.commandline }}
{% endif %}
{% else %}
No RedEdr telemetry data available.
{% endif %}
{% endblock %}