{% extends "base.html" %} {% block title %}Sync CVE Data - Security - VelocityCMDB{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Sync CVE Data

Synchronize vulnerability data from NIST NVD for your deployed OS versions

How it works: Select the OS versions you want to sync, then click "Sync Selected". The system will query the NIST National Vulnerability Database for CVEs affecting each version. Due to rate limiting, syncing takes approximately 6 seconds per version.
Rate Limiting: NVD allows 5 requests per 30 seconds without an API key. For large syncs, consider getting a free API key from nvd.nist.gov.

CMDB OS Versions

0 selected
{% for v in sync_status %} {% endfor %}
CMDB VENDOR OS VERSION DEVICES CPE MAPPING STATUS CVEs LAST SYNCED
{% if v.supported %} {% endif %} {{ v.vendor }} {{ v.os_version }} {{ v.device_count }} {% if v.supported %} {{ v.cpe_vendor }}:{{ v.cpe_product }}:{{ v.cpe_version }} {% else %} Not mapped {% endif %} {% if not v.supported %} Unsupported {% elif v.synced %} Synced {% else %} Pending {% endif %} {% if v.cve_count is not none %} {{ v.cve_count }} {% else %}-{% endif %} {% if v.last_synced %} {{ v.last_synced[:10] }} {% else %}-{% endif %}
{% endblock %}