1. Data Leakage
Sensitive content reaches a model, vendor or log it should not.
Common via prompts containing PII or via embedding sensitive content into shared vector stores.
Control: data classification gate at the ingestion point; vendor data-handling agreements; private deployment of high-sensitivity workloads.
2. Hallucination
Model produces a confident, fluent answer that is factually wrong. Particularly dangerous when the user is not the domain expert.
Control: RAG grounding, source citation in response schema, low-confidence rejection, scope narrowing.
3. Prompt Injection
Untrusted content (documents, user input, retrieved web pages) carries instructions that override the system prompt.
Control: separation of system and user channels, content sanitization, output validation, capability restriction.
4. Unauthorized Action
LLM with tool access takes an action it should not — sends an email, modifies data, calls a costly API.
Control: tool allow-listing, per-tool authorization, human approval for irreversible actions, action audit logs.
5. Model Drift
Vendor updates the model silently; behavior on existing prompts changes without notice. Affects every SaaS LLM consumer.
Control: pinned model versions where supported, regression test suite run on each vendor announcement, dual-model evaluation during transitions.
6. Bias and Disparate Impact
Outputs systematically disadvantage a protected class. Critical for any AI touching hiring, credit, insurance, healthcare, education.
Control: disparate-impact testing per decision class, demographic disaggregation in monitoring, documented mitigation when found.
7. Cost Runaway
Token consumption, retrieval lookups, or agent loops produce costs far above forecast. Operationally an availability risk.
Control: per-user and per-system rate limits, cost monitoring with alerting, hard budget caps on autonomous agents.