Skip to main content
Data leakage prevention is about keeping sensitive information from crossing a boundary it should not cross. That boundary might be a third-party model, a connector, an external domain, another user, or a downstream system. Anthale treats this as policy-driven runtime behavior. When your policy enables this guardrail, you configure it to detect, redact, or block when it finds sensitive content. The returned enforcement action can still be allow, detect, redact, or block, depending on what Anthale finds for that request.

What counts as leakage

Leakage is not limited to classic PII. It also includes secrets, internal instructions, confidential business information, and organization-specific identifiers that should stay inside a trusted boundary.

Common sensitive entity families

Treat exact format validation, model behavior, and detector coverage as platform behavior rather than as a documentation promise. Use policy tests and real enforcement responses as the source of truth for production tuning.

Where it matters

This guardrail matters before a model call, before retrieved or tool-generated context is appended on the input path, and before model output is shown to a user or passed into another system. If retrieved context is untrusted, check it on the input path before prompt assembly.

When to enforce it first

Start with the boundaries where sensitive content is most likely to escape the trusted path: before third-party model calls, before external tools receive content, and before generated output is returned to users or downstream systems.

What it does not replace

Data leakage prevention does not replace access control, business authorization, or Prompt Injection Protection. It answers whether sensitive data is being exposed, not whether a user was entitled to ask for it or whether an attacker is trying to seize control of the model. Read Exfiltration Patterns when repeated leak attempts change their wording but follow the same underlying pattern.

Next steps

Next, read Exfiltration Patterns or go to Link Control.
Last modified on March 19, 2026