{% extends "base.html" %} {% block content %}

Transcript

Scan {{ scan_id }} ยท Finding {{ finding.id }}

Probe
{{ finding.probe_id }}
ASI
{{ finding.asi.value }}
Severity
{{ finding.severity.value }}
Attempts
{{ finding.attempt_count }}
Attack succeeded
{{ "yes" if finding.success else "no" }}
Confidence
{{ "%.2f"|format(finding.confidence) }}
{% if redact %} PII redaction: on show raw {% else %} re-redact PII redaction: off (raw) {% endif %}

Summary

{{ finding.summary }}

{% if finding.transcript_ref %}

Transcript

{{ finding.transcript_ref }}
{% else %}

No transcript artefact attached to this finding.

{% endif %}
{% endblock %}