{% if domain %}{% endif %}
Project staleness based on days since last scan.
Number of projects with each scan type present in their latest version.
Distribution of firmware unpack quality ratings across evaluated versions.
One row per project, showing the latest version's scan coverage and quality indicators.
{% if summary_table and summary_table | length > 0 %}| Project | Folder | Versions | Latest Version | Last Scan | {% if ns.has_unpack %}Unpack Rating | {% endif %}Staleness | Coverage | Reachability | Critical | High | Total |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ row.project_name | default('') }} | {{ row.folder_name | default('') }} | {{ row.version_count | default(0) }} | {{ row.latest_version | default('') }} | {{ row.last_scan_date | default('') }} | {% if ns.has_unpack %}
{% set ur = row.unpack_rating | default('') %}
{% if ur == 'Excellent' %}Excellent
{% elif ur == 'Good' %}Good
{% elif ur == 'Fair' %}Fair
{% elif ur == 'Poor' %}Poor
{% else %}—{% endif %}
{% if row.unpack_short_summary is defined and row.unpack_short_summary %}
{{ row.unpack_short_summary }}
{% endif %}
|
{% endif %}
{% if staleness_lc %} {{ row.staleness }} {% else %}—{% endif %} | {% set cs = row.coverage_score | default(0) %} {{ cs }} | {% set reach = row.has_reachability | default('') %} {% if reach == 'Yes' %}Yes {% elif reach == 'No' %}No {% else %}N/A{% endif %} | {{ row.critical_findings | default(0) }} | {{ row.high_findings | default(0) }} | {{ row.total_findings | default(0) }} |
One row per project-version. Hover over Unpack Rating to see the short summary.
{% if detail_table and detail_table | length > 0 %} {% set dns = namespace(has_unpack=false) %} {% for row in detail_table %} {% if row.unpack_rating is defined and row.unpack_rating %} {% set dns.has_unpack = true %} {% endif %} {% endfor %}| Project | Folder | Version | Scans | Last Scan | {% if dns.has_unpack %}Unpack Rating | {% endif %}Staleness | Coverage | Reachability | Critical | High | Total |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ row.project_name | default('') }} | {{ row.folder_name | default('') }} | {{ row.version_name | default('') }} | {{ row.scan_count | default(0) }} | {{ row.last_scan_date | default('') }} | {% if dns.has_unpack %}
{% set ur = row.unpack_rating | default('') %}
{% if ur == 'Excellent' %}Excellent
{% elif ur == 'Good' %}Good
{% elif ur == 'Fair' %}Fair
{% elif ur == 'Poor' %}Poor
{% else %}—{% endif %}
{% if row.unpack_short_summary is defined and row.unpack_short_summary %}
{{ row.unpack_short_summary }}
{% endif %}
|
{% endif %}
{% if staleness_lc %} {{ row.staleness }} {% else %}—{% endif %} | {% set cs = row.coverage_score | default(0) %} {{ cs }} | {% set reach = row.has_reachability | default('') %} {% if reach == 'Yes' %}Yes {% elif reach == 'No' %}No {% else %}N/A{% endif %} | {{ row.critical_findings | default(0) }} | {{ row.high_findings | default(0) }} | {{ row.total_findings | default(0) }} |