{% extends 'layouts/master-page' %} {% block title %}{{cve['id']}} - {{cve['summary'][:100]}}{% endblock %} {% block head %} {% if not minimal %} {% endif %} {% endblock %} {% block content %} {% if 'cwe' in cve%} {% if cve['cwe'] != 'Unknown' %} {% endif %} {% endif %} {% if 'capec' in cve%} {% if cve['cwe']|length != 0 %} {% endif %} {% endif %} {% if 'access' in cve %} {% endif %} {% if 'impact' in cve %} {% endif %} {% set keytype = ['vulnerable_configuration_cpe_2_2','impactCVSS','exploitCVSS' ,'cvss', 'capec', 'access', 'impact', 'cvss-time', 'Modified', 'Published', 'summary', 'vulnerable_configuration', 'references', '_id', 'id', 'last-modified', 'ranking', 'cwe'] %} {% for key, value in cve|dictsort %} {% if not key in keytype %} {% endif %} {% endfor %} {% for plugin in plugins %} {% endfor %} {% if 'last-modified' in cve%} {% 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 'cvss-time' in cve %}(as of {{ cve['cvss-time'].strftime('%d-%m-%Y - %H:%M') }}){% endif %}
Impact: {{ cve['impactCVSS'] }}
Exploitability:{{ cve['exploitCVSS'] }}
CWE {{ cve['cwe'] }}
CAPEC
    {% for c in cve['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 %}