{% from "partials/_macros.html" import card_header %}
| software | vulnerabilities | cvss | flag | source |
|---|---|---|---|---|
|
{{ v.software }}
{% if v.exposed or v.running %}
{% if v.exposed %}
exposed
{% elif v.running %}
running
{% endif %}
{% endif %}
|
{% if v.cves %}
{% for c in v.cves %}
{{ c.id }}{% if c.cvss %} ({{ c.cvss }}){% endif %}
{% endfor %}
{% elif v.eol %}
end-of-life / unsupported OS
{% endif %}
{% if v.summary %}{{ v.summary }} {% endif %}
|
{{ v.cvss if v.cvss is not none else '—' }} | {% if v.kev %} KEV {% elif v.eol %} EOL {% else %} CVE {% endif %} | {{ v.source }} |