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

Vulnerable Devices

Network devices with known CVE vulnerabilities, sorted by risk

{% set critical_devices = device_vulns|selectattr('critical')|list|length %} {% set high_devices = device_vulns|rejectattr('critical')|selectattr('high')|list|length %}
{{ device_vulns|length }}
Total Vulnerable
{{ critical_devices }}
With Critical CVEs
{{ high_devices }}
With High CVEs
{% if device_vulns %}
{% for dv in device_vulns %} {% endfor %}
DEVICE SITE VENDOR OS VERSION TOTAL CVEs CRITICAL HIGH ACTIONS
{{ dv.device.name }} {{ dv.device.site_code or dv.device.site_name or '-' }} {{ dv.vendor }} {{ dv.os_version }} {{ dv.total_cves }} {% if dv.critical %} {{ dv.critical }} {% else %}-{% endif %} {% if dv.high %} {{ dv.high }} {% else %}-{% endif %} View CVEs
{% else %}

No vulnerable devices found

Either no CVE data has been synced, or all devices are running clean versions.

Sync CVE Data
{% endif %}
{% endblock %}