{% extends "base.html" %} {% block title %}{{ cve.cve_id }} - Security - VelocityCMDB{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

{{ cve.cve_id }}

{{ cve.severity or 'N/A' }} View on NVD
CVSS v3 Score
{{ cve.cvss_v3_score or 'N/A' }}
{% if cve.cvss_v2_score %}
CVSS v2 Score
{{ cve.cvss_v2_score }}
{% endif %}
Published
{{ cve.published_date[:10] if cve.published_date else 'N/A' }}
Last Modified
{{ cve.last_modified[:10] if cve.last_modified else 'N/A' }}
{% if cve.cvss_v3_vector %}

CVSS v3 Vector

{{ cve.cvss_v3_vector }}
{% endif %}

Description

{{ cve.description or 'No description available.' }}
{% if affected %}

Affected Versions in Your Environment

{% endif %} {% set cwe_list = cve.cwe_ids|from_json if cve.cwe_ids else [] %} {% if cwe_list %}

CWE Classifications

{% for cwe in cwe_list %} {{ cwe }} {% endfor %}
{% endif %} {% set ref_list = cve.ref_urls|from_json if cve.ref_urls else [] %} {% if ref_list %}

References

{% endif %} {% endblock %}