{% extends 'layouts/master-page.html' %} {% block title %}CAPEC browsing{% endblock %} {% block head %} {% endblock %} {% block content %} {% include 'subpages/breadcrumbs.html' %} {% if capec.execution_flow %} {% endif %} {% if capec.related_weakness|length != 0 %} {% endif %} {% if capec.related_capecs|length != 0 %} {% endif %} {% if capec.taxonomy|length != 0 %} {% for each in capec.taxonomy %} {% endfor %} {% endif %}
CAPEC Details
Name {{capec.name}}
Likelyhood of attack Typical severity
{{capec.loa}} {{ capec.typical_severity }}
Summary {{capec.summary}}
Prerequisites {{capec.prerequisites}}
Execution Flow {% for entry in capec.execution_flow %} {% endfor %}
Step Phase Description Techniques
{{ entry }} {{ capec["execution_flow"][entry]["Phase"] }} {{ capec["execution_flow"][entry]["Description"] }}
    {% for each in capec["execution_flow"][entry]["Techniques"] %}
  • {{ each }}
  • {% endfor %}
Solutions {{capec.solutions}}
Related Weaknesses {% for c in capec.related_weakness|sortIntLikeStr %} {% endfor %}
CWE ID Description
CWE-{{c}} {{cwes[c]}}
Related CAPECS {% for c in capec.related_capecs|sortIntLikeStr %} {% endfor %}
CAPEC ID Description
CAPEC-{{c}} {{capecs[c]}}
Taxonomy: {{ each }} {% for item in capec["taxonomy"][each] %} {% endfor %}
Entry ID Entry Name
{{ capec["taxonomy"][each][item]["Entry_ID"] }} {{ capec["taxonomy"][each][item]["Entry_Name"] }}
{% endblock %}