{% extends "base.html" %} {% set active_page = "security" %} {% block title %}FaultRay - Security Analysis{% endblock %} {% block page_title %}Security Analysis{% endblock %} {% block page_subtitle %}Attack resilience and defense coverage{% endblock %} {% block top_actions %} {% endblock %} {% block content %}
| Attack Type | Resilience | Defense Mechanisms | Status |
|---|---|---|---|
| {{ atk.type }} | {% if atk.score >= 80 %} {{ atk.score }}% {% elif atk.score >= 60 %} {{ atk.score }}% {% else %} {{ atk.score }}% {% endif %} | {{ atk.defenses }} | {% if atk.status == "protected" %} Protected {% elif atk.status == "partial" %} Partial {% else %} Vulnerable {% endif %} |