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

Analysis Summary

Comprehensive overview of all scan results.

Target File

File Path: {{ analysis_results.checkplz.findings.scan_results.file_path if analysis_results.checkplz else file_info.original_name }}

Overall Status
{{ 'Threats Detected' if yara_detections or checkplz_detections else 'Clean' }}
Total Detections
{{ yara_detections + checkplz_detections }}
Scan Duration
{{ scan_duration }}
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 %}
CheckPlz {{ 'Suspicious' if checkplz_detections else 'Clean' }} {{ checkplz_detections }} {{ analysis_results.checkplz.findings.initial_threat if checkplz_detections else 'No threats detected' }}
{% endblock %}