ShieldBOM Scan Report

File: {{ sbom_file }} Format: {{ format_detected }} Date: {{ timestamp }}
{{ stats.total_components }}
Components
{{ stats.critical }}
Critical
{{ stats.high }}
High
{{ stats.medium }}
Medium
{{ stats.low }}
Low
{{ stats.license_issues }}
License Issues

Components ({{ components | length }})

{% if components | length > 0 %} {% for comp in components %} {% endfor %}
# Name Version License
{{ loop.index }} {{ comp.name }} {{ comp.version }} {% if comp.licenses | length > 0 %}{{ comp.licenses | join(sep=", ") }}{% else %}None{% endif %}
{% else %}
No components found.
{% endif %}

Vulnerabilities ({{ vulnerabilities | length }})

{% if vulnerabilities | length > 0 %} {% for vuln in vulnerabilities %} {% endfor %}
CVE ID Severity CVSS Component Description
{{ vuln.cve_id }} {{ vuln.severity }} {% if vuln.cvss_score %}{{ vuln.cvss_score }}{% else %}-{% endif %} {{ vuln.component_name }} @ {{ vuln.component_version }} {{ vuln.description_truncated }}
{% else %}
No vulnerabilities found.
{% endif %}

License Issues ({{ license_issues | length }})

{% if license_issues | length > 0 %} {% for issue in license_issues %} {% endfor %}
Type Component Description
{{ issue.issue_type }} {{ issue.component_name }} @ {{ issue.component_version }} {{ issue.description }}
{% else %}
No license issues found.
{% endif %}