{% 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', 'cvss4', 'cvss4Source', 'cvss4Time','cvss4Type', 'cvss4Vector', 'exploitability4', 'impact4'] %}
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 and cve['cwe'] %} {% if cve['cwe'][0] != 'Unknown' %}
CWE
{% for cwe in cve['cwe'] if cwe and '-' in cwe %} {{ cwe }} {% if not loop.last %}, {% endif %} {% endfor %}
{% 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']}}
CVSS4
{% if cve['cvss4'] is not none %}
Base
{{ cve['cvss4'] }}
Impact
{{ cve['impactScore4'] }}
Exploitability
{{ cve['exploitabilityScore4'] }}
{% else %}
None
{% endif %}
{% if cve['cvss4'] is not none %}
Access
Attack ComplexityAttack vectorPrivileges RequiredUser Interaction
{{cve['exploitability4']['attackcomplexity']}} {{cve['exploitability4']['attackvector']}} {{cve['exploitability4']['privilegesrequired']}} {{cve['exploitability4']['userinteraction']}}
{% endif %}
{% if cve['cvss4'] is not none %}
Impact vulnerable system
ConfidentialityIntegrityAvailability
{{cve['impact4']['vulnerable_system_confidentiality']}} {{cve['impact4']['vulnerable_system_integrity']}} {{cve['impact4']['vulnerable_system_availability']}}
{% endif %}
{% if cve['cvss4'] is not none %}
Impact subsequent system
ConfidentialityIntegrityAvailability
{{cve['impact4']['subsequent_system_confidentiality']}} {{cve['impact4']['subsequent_system_integrity']}} {{cve['impact4']['subsequent_system_availability']}}
{% endif %}
SourceTypeVector
{{cve['cvss4Source']}} {{cve['cvss4Type']}} {{cve['cvss4Vector']}}
VIA4 references
{% for key, value in cve|dictsort %} {% if not key in keytype %}
{{ key }} via4
{{ JSON2HTMLTable(value, key)|safe }}
{% endif %} {% endfor %}
{% endblock %}