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