{% extends 'layouts/master-page.html' %} {% set minimal = get_WebInterface() %} {% block title %}CVE: {{cve['id']}}{% endblock %} {% block head %} {% if not minimal %} {% endif %} {% endblock %} {% block content %} {% include 'subpages/breadcrumbs.html' %} {% set keytype = ['exploitability3', 'impact3', 'cvss3', 'vulnerable_configuration_cpe_2_2', 'cvss', 'capec', 'access', 'impact', 'cvssTime', 'modified', 'published', 'summary', 'vulnerable_configuration', 'references', '_id', 'id', 'lastModified', 'ranking', 'cwe', 'vulnerable_product', 'assigner', 'products', 'vendors', 'vulnerable_configuration_stems', 'vulnerable_product_stems', 'impactScore', 'exploitabilityScore', 'impactScore3', 'exploitabilityScore3', 'status', 'cvssVector', 'cvss3Vector', 'cvssType', 'cvss3Type', 'cvssSource', 'cvss3Source', 'cvss3Time', 'cvssTime'] %}
CVE Details for CVE: {{ cve['id'] }}
Summary
{{ cve['summary'] }}
{% if 'lastModified' in cve%} {% endif %} {% if 'status' in cve%} {% endif %} {% if 'epss' in cve%} {% endif %}
Timestamps
Last major update {{ cve['modified'].strftime('%d-%m-%Y - %H:%M') }}
Published {{ cve['published'].strftime('%d-%m-%Y - %H:%M') }}
Last modified {{ cve['lastModified'].strftime('%d-%m-%Y - %H:%M') }}
Status {{ cve['status'] }}
EPSS {{ cve['epssMetric']['lastModified'].strftime('%d-%m-%Y - %H:%M') }}
{% if 'status' in cve%} {% endif %}
Status
{{ cve['status'] }}
EPSS
{% if 'epss' in cve %} {{ cve['epss'] }} {% endif %}
EPSS %
{% if 'epssMetric' in cve %} {{ cve['epssMetric']['percentile'] }} {% endif %}
References
    {% for ref in cve['references'] %}
  • {{ ref }}
  • {% endfor %}
Vulnerable Configurations
    {% for vulconf in cve['vulnerable_configuration'] %}
  • {{ vulconf['title'] }}
    {{ vulconf['id'] }}
  • {% endfor %}
{% if 'capec' in cve%} {% if cve['cwe']|length != 0 %}
CAPEC
Click the CAPEC title to display a description
{% endif %} {% endif %} {% if 'cwe' in cve%} {% if cve['cwe'] != 'Unknown' %} {% endif %} {% endif %}
CVSS
Base
{{ cve['cvss'] }}
Impact
{{ cve['impactScore'] }}
Exploitability
{{ cve['exploitabilityScore'] }}
Access
{% if 'access' in cve %}
VectorComplexityAuthentication
{{cve['access']['vector']}} {{cve['access']['complexity']}} {{cve['access']['authentication']}}
{% endif %}
Impact
{% if 'impact' in cve %}
ConfidentialityIntegrityAvailability
{{cve['impact']['confidentiality']}} {{cve['impact']['integrity']}} {{cve['impact']['availability']}}
{% endif %}
SourceTypeVector
{{cve['cvssSource']}} {{cve['cvssType']}} {{cve['cvssVector']}}
CVSS3
{% if cve['cvss3'] is not none %}
Base
{{ cve['cvss3'] }}
Impact
{{ cve['impactScore3'] }}
Exploitability
{{ cve['exploitabilityScore3'] }}
{% else %}
None
{% endif %}
{% if cve['cvss3'] is not none %}
Access
Attack ComplexityAttack vectorPrivileges RequiredScopeUser Interaction
{{cve['exploitability3']['attackcomplexity']}} {{cve['exploitability3']['attackvector']}} {{cve['exploitability3']['privilegesrequired']}} {{cve['exploitability3']['scope']}} {{cve['exploitability3']['userinteraction']}}
{% endif %}
{% if cve['cvss3'] is not none %}
Impact
ConfidentialityIntegrityAvailability
{{cve['impact3']['confidentiality']}} {{cve['impact3']['integrity']}} {{cve['impact3']['availability']}}
{% endif %}
SourceTypeVector
{{cve['cvss3Source']}} {{cve['cvss3Type']}} {{cve['cvss3Vector']}}
VIA4 references
{% for key, value in cve|dictsort %} {% if not key in keytype %}
{{ key }} via4
{{ JSON2HTMLTable(value, key)|safe }}
{% endif %} {% endfor %}
{% endblock %}