{% extends "base.html" %} {% block title %}{{ finding.secret_type }} — secfoo{% endblock %} {% block content %} ← Back to all findings
{{ finding.severity }} {% if finding.validity.lower() == 'looks live' %}{{ finding.validity }} {% else %}{{ finding.validity }}{% endif %}

{{ finding.secret_type }}

{{ finding.project_display_name }} · {{ finding.source }} · {{ finding.location }}

{% if finding.validity.lower() == 'looks live' %}
This credential looks live. Rotate it now, then address the location it was found in.
{% endif %}
{% if finding.evidence %}

Evidence

{{ finding.evidence }}

Redacted — only a short prefix is stored, never the full secret value.

{% endif %} {% if finding.exposure %}

Exposure

{{ finding.exposure }}

{% endif %}

Remediation

{% if finding.remediation %}

{{ finding.remediation }}

{% else %}
Rotate this credential and confirm it's removed from the tracked location.
{% endif %}
{% endblock %}