{% extends "base.html" %} {% block content %}
Comprehensive overview of all scan results.
File Path: {{ analysis_results.checkplz.findings.scan_results.file_path if analysis_results.checkplz else file_info.original_name }}
| Scanner | Status | Detections | Details |
|---|---|---|---|
| YARA | {{ 'Suspicious' if yara_detections else 'Clean' }} | {{ yara_detections }} |
{% if yara_detections %}
{% for match in analysis_results.yara.matches %}
{% else %}
No threats detected
{% endif %}
Rule: {{ match.rule }}
{% if match.metadata %}
(Severity: {{ match.metadata.severity }})
{% endif %}
{% endfor %}
|
| CheckPlz | {{ 'Suspicious' if checkplz_detections else 'Clean' }} | {{ checkplz_detections }} | {{ analysis_results.checkplz.findings.initial_threat if checkplz_detections else 'No threats detected' }} |