{% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} {% load static %} {% block title %} VulnerableCode Vulnerability Details - {{ vulnerability.vulnerability_id }} {% endblock %} {% block content %}
{% include "vulnerability_search_box.html" %}
{% if vulnerability %}
Vulnerability details: {{ vulnerability.vulnerability_id }}
Vulnerability ID {{ vulnerability.vulnerability_id }}
Aliases {% for alias in aliases %} {% if alias.url %} {{ alias }} {% else %} {{ alias }} {% endif %}
{% endfor %}
Summary {{ vulnerability.summary }}
Severity ({{ severities|length }})
{% for severity in severities %} {% if severity.reference.url %} {% else %} {% endif %} {% empty %} {% endfor %}
System Score Found at
{{ severity.scoring_system }} {{ severity.value }} {{ severity.reference.url }}{{ severity.reference.reference_id }}
There are no known severity scores.
Fixed by packages ({{ fixed_by_packages|length }})
{% for package in fixed_by_packages|slice:":3" %} {% empty %} {% endfor %} {% if fixed_by_packages|length > 3 %} {% endif %}
{{ package.purl }}
There are no known fixed packages.
... see Fixed by packages tab for more
Affected packages ({{ affected_packages|length }})
{% for package in affected_packages|slice:":3" %} {% empty %} {% endfor %} {% if affected_packages|length > 3 %} {% endif %}
{{ package.purl }}
There are no known affected packages.
... see Affected packages tab for more
Weaknesses ({{ weaknesses|length }})
{% for weakness in weaknesses %} {% empty %} {% endfor %}
CWE-{{ weakness.cwe_id }} {{ weakness.name }}
There are no known CWE.
{% for ref in references %} {% if ref.reference_id %} {% else %} {% endif %} {% empty %} {% endfor %}
Reference id URL
{{ ref.reference_id }}{{ ref.url }}
There are no known references.
{% for package in affected_packages %} {% empty %} {% endfor %}
Package URL
{{ package.purl }}
This vulnerability is not known to affect any packages.
{% for package in fixed_by_packages %} {% empty %} {% endfor %}
Package URL
{{ package.purl }}
This vulnerability is not known to be fixed by any packages.
{% endif %} {% endblock %}