{% extends "base.html" %} {% block title %}SAST — All Findings — secfoo{% endblock %} {% block content %} ← Back to SAST SAST

All findings

Open ({{ open_count }}) Closed ({{ closed_count }})
{% if findings %}
{% for f in findings %} {% endfor %}
ProjectAccessTitleSource locationLast seenCVSS
{{ f.project_display_name }} {% if f.verdict and f.verdict.lower() == 'confirmed' %}Verified{% endif %} {% if f.cvss_vector | cvss_network_reachable %}External{% endif %} {{ f.title }}
{{ f.cwe or "unverified" }}
{{ f.location_file }}{% if f.location_line %}:{{ f.location_line }}{% endif %} {{ f.last_seen_at | fmt_time }} {% if f.cvss_score is not none %} {{ f.cvss_score | cvss_rating_label | capitalize }} {{ "%.1f"|format(f.cvss_score) }} {% else %} No vector {% endif %}
{% else %}
No {{ selected_status }} findings{% if search %} matching "{{ search }}"{% endif %}{% if selected_project_id %} for this project{% endif %}.
{% endif %} {% endblock %}