| 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 cve.cvss_time %}(as of {{ cve.cvss_time.strftime('%d-%m-%Y - %H:%M') }}){% endif %} |
| Impact: | {{ cve.impact.cvss }} |
| Exploitability: | {{ cve.access.cvss }} |
|
{% if cve.cwe %}
{% if cve.cwe.name != 'Unknown' %}
| CWE |
CWE-{{ cve.cwe.id }} |
{% endif %}
{% if cve.cwe.capec %}
{% if cve.cwe.capec|length != 0 %}
| CAPEC |
{% for c in cve.cwe.capec %}
-
{{c.name}}
{{c.summary}}
{% endfor %}
|
{% endif %}
{% endif %}
{% endif %}
{% if cve.access %}
| Access |
| Vector | Complexity | Authentication |
| {{cve.access.vector}} |
{{cve.access.complexity}} |
{{cve.access.authentication}} |
|
{% endif %}
{% if cve.impact %}
| Impact |
| Confidentiality | Integrity | Availability |
| {{cve.impact.confidentiality}} |
{{cve.impact.integrity}} |
{{cve.impact.availability}} |
|
{% endif %}
{% if cve.via4 %}
{% for key, value in cve.via4.dict()|dictsort %}
| {{ key }}
via4
|
{{ JSON2HTMLTable(value, key)|safe }}
|
{% endfor %}
{% endif %}
{% 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.summary %}
| Last modified |
{{ cve['last-modified'].strftime('%d-%m-%Y - %H:%M') }} |
{% endif %}