{% extends "base.html" %} {% block title %} {% if vendor %} {{ vendor.name | humanize }} {% if product %} - {{ product.name | humanize }} {% endif %} CVE {% elif request.args.get('cwe') %} CWE-{{ request.args.get('cwe') }} CVE {% else %} Vulnerabilities (CVE) {% endif %} - {{ super() }} {% endblock %} {% block content %}

Vulnerabilities (CVE)

{% if request.args.get('cwe') %}
Filtered by {{ request.args.get('cwe') }}
{% elif vendor or product %}
{% if vendor %}
Filtered by vendor {{ vendor.name | humanize }} {% if current_user.is_authenticated %} {% if vendor in current_user.vendors %} {% else %} {% endif %} {% else %} {% endif %}
{% endif %} {% if product %}
Filtered by product {{ product.name | humanize }} {% if current_user.is_authenticated %} {% if product in current_user.products %} {% else %} {% endif %} {% else %} {% endif %}
{% endif %}
{% endif %}

Search

Total {{ cves.total }} CVE
{% 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 }}
{{ pagination.links }}
{% else %}

No CVE found.

{% endif %}
{% endblock %}