ID |
{{ cve['id'] }}
{% if not minimal %}
{% 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'] }} |
|
{% if 'cwe' in cve%}
{% if cve['cwe'] != 'Unknown' %}
CWE |
{{ cve['cwe'] }} |
{% endif %}
{% endif %}
{% if 'capec' in cve%}
{% if cve['cwe']|length != 0 %}
CAPEC |
{% for c in cve['capec'] %}
-
{{c['name']}}
{{c['summary']}}
{% endfor %}
|
{% endif %}
{% endif %}
{% if 'access' in cve %}
Access |
Vector | Complexity | Authentication |
{{cve['access']['vector']}} |
{{cve['access']['complexity']}} |
{{cve['access']['authentication']}} |
|
{% endif %}
{% if 'impact' in cve %}
Impact |
Confidentiality | Integrity | Availability |
{{cve['impact']['confidentiality']}} |
{{cve['impact']['integrity']}} |
{{cve['impact']['availability']}} |
|
{% 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 %}
{{ key }}
via4
|
{{ JSON2HTMLTable(value, key)|safe }}
|
{% endif %}
{% endfor %}
{% for plugin in plugins %}
{{plugin['title']}} plugin |
{{plugin['data']|safe}} |
{% endfor %}
Last major update |
{{ cve['Modified'].strftime('%d-%m-%Y - %H:%M') }} |
Published |
{{ cve['Published'].strftime('%d-%m-%Y - %H:%M') }} |
{% if 'last-modified' in cve%}
Last modified |
{{ cve['last-modified'].strftime('%d-%m-%Y - %H:%M') }} |
{% endif %}