{% extends "base.html" %} {% block title %}{{ comp_name }} - Threat Model{% endblock %} {% block content %}
{{ component.description }}
{% if unimplemented_mitigations %}Properties not currently implemented that would mitigate applicable threats:
{% endif %}| Threat ID | Name | Description | Potential Mitigations |
|---|---|---|---|
| {{ threat_id }} | {{ threat.description }} | {{ threat.details }} | {% for mit in threat_unimplemented[threat_id] %} {{ mit | replace('_', ' ') | replace('.', ' ยท ') }} {% endfor %} |
No threats identified for this component.
{% endif %}This component is not used in any scenarios.
{% endif %} {% endblock %}