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

{{ cve.cve_id }}

{{ cve.summary[:1] }}{{ cve.summary[1:] }}
{% if cve.json.impact.baseMetricV3 or cve.json.impact.baseMetricV2 %} {% else %}
CVSS

No CVSS.

{% endif %}
References
{% if cve.json.cve.references.reference_data %} {% for ref in cve.json.cve.references.reference_data %} {% endfor %}
Link Resource
{{ ref.url }} {% for tag in ref.tags %}{{ tag }} {% endfor %}
{% else %}

No reference.

{% endif %}
Configurations
{% if cve.json.configurations.nodes %}
{% for conf in cve.json.configurations.nodes %}

Configuration {{ loop.index }} (hide)

{% if conf.operator == 'AND'%} {% set children = conf.children %} {% else %} {% set children = [conf] %} {% endif %} {% if children|length > 1 %} {% endif %}
AND {% for child in children %} {% for cpe in child.cpe_match %} {% if loop.index == 1 and child.cpe_match|length > 1 %} {% endif %} {% endfor %}
OR{{ cpe.cpe23Uri }}
{% endfor %}

{% endfor %}
{% else %}

No configuration.

{% endif %}
Information

Published : {{ cve.created_at.strftime('%Y-%m-%d %H:%M') }}

Updated : {{ cve.updated_at.strftime('%Y-%m-%d %H:%M') }}


NVD link : {{ cve.cve_id }}

Mitre link : {{ cve.cve_id }}


JSON object : View

Products Affected
{% if vendors %}
{% for vendor, products in vendors.items() %}

{{ vendor }}

    {% for product in products %}
  • {{ product }}
  • {% endfor %}
{% endfor %}
{% else %}

No product.

{% endif %}
CWE
{% if cwes %} {% for cwe_id, name in cwes.items() %} {{ cwe_id }} {% if name %}

{{ name }}

{% endif %} {% endfor %} {% else %}

No CWE.

{% endif %}
{% endblock %}