| ID |
{{ cve['id'] }}
|
| 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']|currentTime }}){% 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 k in cve|dictsort %}
{% if not k[0] in keytype %}
| {{ k[0]|vFeedName }} vFeed |
{% for item in k[1]|dictsort %}
|
{{item[0]}}
|
{% if item[1]|isURL%}
{{ item[1] }}
{% else %}
{{ item[1] }}
{% endif %}
|
{% endfor %}
|
{% endif %}
{% endfor %}
{% for plugin in plugins %}
| {{plugin['title']}} plugin |
{{plugin['data']|safe}} |
{% endfor %}
| Last major update |
{{ cve['Modified']|currentTime }} |
| Published |
{{ cve['Published']|currentTime }} |
{% if 'last-modified' in cve%}
| Last modified |
{{ cve['last-modified']|currentTime }} |
{% endif %}