{% extends 'layouts/master-page' %} {% block title %}{{cve.id}} - {{cve.summary[:100]}}{% endblock %} {% block head %} {% if not minimal %} {% endif %} {% endblock %} {% block content %} {% if cve.cwe %} {% if cve.cwe.name != 'Unknown' %} {% endif %} {% if cve.cwe.capec %} {% if cve.cwe.capec|length != 0 %} {% endif %} {% endif %} {% endif %} {% if cve.access %} {% endif %} {% if cve.impact %} {% endif %} {% if cve.via4 %} {% for key, value in cve.via4.dict()|dictsort %} {% endfor %} {% endif %} {% for plugin in plugins %} {% endfor %} {% if 'last-modified' in cve.summary %} {% endif %}
ID {{ cve.id }} {% if not minimal %}
Actions  loading...
{% endif %}
Summary {{ cve.summary }}
References
    {% for ref in cve.references %}
  • {{ ref }}
  • {% endfor %}
Vulnerable Configurations
    {% for vulconf in cve.vulnerable_configuration %}
  • {{ vulconf.title }}
    {{ vulconf.id }}
  • {% endfor %}
CVSS
Base: {{ cve.cvss }} {% if cve.cvss_time %}(as of {{ cve.cvss_time.strftime('%d-%m-%Y - %H:%M') }}){% endif %}
Impact: {{ cve.impact.cvss }}
Exploitability:{{ cve.access.cvss }}
CWE CWE-{{ cve.cwe.id }}
CAPEC
    {% for c in cve.cwe.capec %}
  • {{c.name}}
    {{c.summary}}
  • {% endfor %}
Access
VectorComplexityAuthentication
{{cve.access.vector}} {{cve.access.complexity}} {{cve.access.authentication}}
Impact
ConfidentialityIntegrityAvailability
{{cve.impact.confidentiality}} {{cve.impact.integrity}} {{cve.impact.availability}}
{{ key }} via4 {{ JSON2HTMLTable(value, key)|safe }}
{{plugin['title']}} plugin
{{plugin['data']|safe}}
Last major update {{ cve.modified.strftime('%d-%m-%Y - %H:%M') }}
Published {{ cve.published.strftime('%d-%m-%Y - %H:%M') }}
Last modified {{ cve['last-modified'].strftime('%d-%m-%Y - %H:%M') }}
{% endblock %}