{% extends "base.html" %} {% block title %}EMB3D Report — Dashboard{% endblock %} {% block content %}

MITRE EMB3D Analysis Report

Summary

Device Properties

{{ property_stats.applicable }} applicable out of {{ property_stats.total }} analyzed

Threats

{{ threat_stats.total }} threats analyzed

Mitigations

{{ threat_stats.mitigations_applied }} applied / {{ threat_stats.mitigations_total }} total

Device Properties

{% for category, props in properties_by_category.items() %}
{{ category }} ({{ props | length }} properties) {% for prop in props %} {% endfor %}
ID Name Applicable Evidence
{{ prop.property_id }} {{ prop.property_name }} {% if prop.is_applicable %} Yes {% else %} No {% endif %} {{ prop.evidence | length }} file{{ "s" if prop.evidence | length != 1 }}
{% endfor %}

Threats

{% for threat in threats %} {% endfor %}
ID Name Properties Mitigations Applied
{{ threat.threat_id }} {{ threat.threat_name }} {{ threat.properties | length }} {{ threat.mitigations_applied }} / {{ threat.mitigations_total }}
{% endblock %}