{% extends "base.html" %} {% block title %}Dashboard - {{ super() }}{% endblock %} {% block content %}

Dashboard

Filter

{% if cves.items %}
{% for cve in cves.items %} {% if cve.json.impact.baseMetricV2 %} {% else %} {% endif %} {% if cve.json.impact.baseMetricV3 %} {% else %} {% endif %} {% endfor %}
CVE Vendors Products Updated CVSS v2 CVSS v3
{{ cve.cve_id }} {{ cve.vendors|vendors_excerpt|safe }} {{ cve.vendors|products_excerpt|safe }} {{ cve.updated_at.strftime('%Y-%m-%d') }}{{ cve.json.impact.baseMetricV2.cvssV2.baseScore }} {{ cve.json.impact.baseMetricV2.severity }} N/A{{ cve.json.impact.baseMetricV3.cvssV3.baseScore }} {{ cve.json.impact.baseMetricV3.cvssV3.baseSeverity }} N/A
{{ cve.summary }}
{% if pagination %}
{{ pagination.links }}
{% endif %}
{% else %}

No CVE found, subscribe to vendors and products to display their CVE in your dashboard.

{% endif %}
{% if current_user.vendors or current_user.products %}
Subscriptions
{% if current_user.vendors %}
Vendors ({{ current_user.vendors|length }})
{% for vendor in current_user.vendors %} {{ vendor.name | humanize }} {% endfor %} {% if current_user.products %}
{% endif %} {% endif %} {% if current_user.products %}
Products ({{ current_user.products|length }})
{% for product in current_user.products %} {{ product.name | humanize }} {% endfor %} {% endif %}
{% endif %}
{% endblock %}