Skip to main content

Compliance Matrix


LLM01: Prompt Injection — Deep Dive

Hexr deploys multiple defenses:
  1. Input scanning — LLM Guard scans every prompt before sending to the LLM
  2. Output scanning — Responses are scanned for hallucinated tool calls
  3. Credential scoping — Even if injection succeeds, the agent can only access authorized resources
  4. Per-process identity — A researcher sub-agent can’t escalate to admin-level access

LLM06: Sensitive Information — Deep Dive

Multiple layers prevent sensitive data leakage:
  1. PII detection — Scans input and output for email, phone, SSN, credit card patterns
  2. Secrets detection — Catches API keys, tokens, and passwords
  3. Vault isolation — Secrets stored per-agent, never in environment variables
  4. SPIFFE scoping — Sub-processes can only access their own secrets
  5. Audit trail — Every vault access and LLM call is traced

LLM07: Insecure Plugin Design — Deep Dive

Traditional agents have a “confused deputy” problem — plugins run with the agent’s full permissions. Hexr fixes this:
Each sub-process gets exactly the permissions it needs, nothing more.