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

Tracked Versions

All OS versions with CVE vulnerability data

{% if versions %}
{% for v in versions %} {% endfor %}
VERSION DEVICES TOTAL CVEs CRITICAL HIGH MEDIUM LOW LAST SYNCED ACTIONS
{{ v.vendor|title }} {{ v.product|upper }} {{ v.version }} {% if v.device_count %} {{ v.device_count }} {% else %}-{% endif %} {{ v.cve_count or 0 }} {% if v.critical %} {{ v.critical }} {% else %}-{% endif %} {% if v.high %} {{ v.high }} {% else %}-{% endif %} {% if v.medium %} {{ v.medium }} {% else %}-{% endif %} {% if v.low %}{{ v.low }}{% else %}-{% endif %} {% if v.last_synced %} {{ v.last_synced[:10] }} {% else %}-{% endif %} View CVEs
{% else %}

No versions synced yet

Sync CMDB Versions
{% endif %}
{% endblock %}