{% 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 %}
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 %}| PE-sieve | {{ scanner_status_cell(pesieve_detections) }} {{ scanner_count_cell(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: {{ 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 | {{ scanner_status_cell(moneta_detections) }} {{ scanner_count_cell(moneta_detections) }}
{% 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 | {{ scanner_status_cell(patriot_detections) }} {{ scanner_count_cell(patriot_detections) }}
{% if patriot_detections %}
{% for finding in analysis_results.patriot.findings.findings %}
{{ finding.type }} ({{ finding.level }})
{% endfor %}
{% else %}
No indicators observed
{% endif %}
|
| Hunt-SB | {{ scanner_status_cell(hsb_detections) }} {{ scanner_count_cell(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 sleep-pattern indicators
{% endif %}
|
{{ analysis_results.get('process_output', {}).get('stdout') }}
{{ analysis_results.get('process_output', {}).get('stderr') }}