← Back to Summary

${(results[0].auditor if results else 'Unknown') | h} — Detail Report

Bypassed Prompts

The following probes successfully bypassed the guardrail.

% for r in results: % if r.bypassed: % endif % endfor
Tool Attack Category Attack Type Score Duration Judge Reason Prompt Prompt Type
${r.auditor | h} ${r.attack_category | h} ${r.attack_type | h} ${r.score} ${r.formatted_duration} ${(r.judge_reason or '') | h} ${r.formatted_prompt | h} ${r.prompt_type.value}

Blocked Prompts

The following probes were blocked by the guardrail.

% for r in results: % if not r.bypassed and not r.is_error: % endif % endfor
Tool Attack Category Attack Type Score Duration Judge Reason Prompt Prompt Type
${r.auditor | h} ${r.attack_category | h} ${r.attack_type | h} ${r.score} ${r.formatted_duration} ${(r.judge_reason or '') | h} ${r.formatted_prompt | h} ${r.prompt_type.value}

Error Prompts

The following probes encountered execution errors.

% for r in results: % if r.is_error: % endif % endfor
Tool Attack Category Attack Type Error Duration Prompt Prompt Type
${r.auditor | h} ${r.attack_category | h} ${r.attack_type | h} ${r.metadata.get('error', '') | h} ${r.formatted_duration} ${r.formatted_prompt | h} ${r.prompt_type.value}