{% for f in fixes %} {% endfor %}
Fixes
HostBinary PackageSource PackageBinary VersionFixed VersionCVEIDsRemotely ExploitableUrgencyOS VersionSkipped
{% set fix_index = loop.index %} {% if f['hosts']|length == 1 %} {{ f['hosts'][0] }} {% else %} {% for host in f['hosts'] %} {% if loop.index == 1 %}{{ host }}
    {% else %}
  • {{ host }}
  • {% endif %} {% endfor %}
{% endif %}
{{ f['bin_package'] }} {{ f['src_package'] }} {{ f['bin_version'] }} {{ f['fixed_version'] }} {% set fix_index = loop.index %} {% if f['cve_ids']|length == 1 %} {{ f['cve_ids'][0] }} {% else %} {% for cve_id in f['cve_ids'] %} {% if loop.index == 1 %}{{ cve_id }}
    {% else %}
  • {{ cve_id }}
  • {% endif %} {% endfor %} {% if f['cve_ids']|length > 1 %}
{% endif %} {% endif %}
{% if f['remotely_exp'] is none %} unknown {% elif f['remotely_exp'] %} yes {% elif not f['remotely_exp'] %} no {% endif %} {% if f['urgency'] == "" %} unknown {% else %} {{ f['urgency'] }} {% endif %} {{ f['os_type'] }} {{ f['os_version'] }} {% if f['skipped'] == False %}
{% elif f['skipped'] == True %}
{% endif %}
Back to Top Mark selected