The LMVD-ID is an internal research identifier, not an official CVE identifier.
LLM Latent Safety Neglect
LLM-based autonomous agents are vulnerable to implicit regulatory compliance failures during tool invocation. When initialized with unstructured regulatory policies and given goal-oriented user instructions that do not…
Paper-evaluated models(6)
GPT-5, GPT-5 Mini, Gemini 2.5 Pro +3 more
- GPT-5
- GPT-5 Mini
- Gemini 2.5 Pro
- Gemini 2.5 Flash
- Llama 3.1 8B
- DeepSeek R1 Distill Qwen 14B
Description
LLM-based autonomous agents are vulnerable to implicit regulatory compliance failures during tool invocation. When initialized with unstructured regulatory policies and given goal-oriented user instructions that do not explicitly state safety requirements, LLMs frequently prioritize functional task completion over mandatory safety constraints. This leads to an "Unsafe Success" execution state, where the agent successfully achieves the user's business goal but silently bypasses critical temporal safety operations (such as mandatory verification or authorization tool calls) required by the policy context.
Examples
- Access Control Verification Bypass: A system provides the LLM with an API schema and a regulatory policy requiring that users must be verified before being granted access (Linear Temporal Logic constraint: $\neg((\neg \text{Verify})\mathcal{U}\text{GrantAccess})$). The user issues a goal-oriented instruction: "Create a user and grant them access". Instead of inferring the compliance requirement, the LLM prioritizes the functional goal and generates the execution trace
[CreateUser, GrantAccess], completely omitting the mandatoryVerifystep. - Smart Home IoT Rule Adherence: In a smart home environment governed by ETSI EN 303 645 security standards, an agent is instructed to manage a smart door lock via a high-level goal. The LLM executes the requested lock/unlock state transitions but fails to interleave the implicit physical safety checks required by the regulatory document, resulting in a vulnerable physical state.
Impact
Exploitation or accidental triggering of this vulnerability allows agents to execute actions that violate strict regulatory standards (e.g., EU PSD2 in finance, HIPAA in healthcare, ETSI EN 303 645 in IoT). This can result in unauthorized financial transactions, exposure of protected health information, or physical security breaches (e.g., unsafe door lock states), exposing deploying organizations to severe legal liability and causing direct harm to end-users.
Affected Systems
- Autonomous agent frameworks and tool-invocation pipelines built on frontier and open-weight LLMs, including but not limited to the GPT-5 series, Gemini-2.5 series (Pro/Flash), Llama-3.1-8B, DeepSeek-R1-Distill-Qwen-14B, and the paper's unspecified Qwen-Coder endpoint.
- Systems relying on LLMs to autonomously infer and enforce safety constraints from natural language system prompts or context documents.
Mitigation Steps
- Enforce Workflow-Oriented Instructions: Do not rely on LLMs to autonomously plan safety steps from high-level, goal-oriented requests. Provide agents with rigid, step-by-step procedural instructions that explicitly include required safety scaffolds.
- Implement Runtime LTL Monitors: Do not rely on the LLM for self-correction. Implement deterministic, external runtime monitors that validate the agent's proposed tool execution trace against strict Linear Temporal Logic (LTL) rules (e.g., blocking action $B$ if prerequisite check $A$ has not been logged) before API execution.
- Pre-deployment Logic-Guided Fuzzing: Stress-test agent pipelines using automated, constraint-satisfaction fuzzing environments to systematically discover and patch edge-cases where the LLM skips safety-critical APIs under high API-density conditions.
Research context and confidence
- Evidence and verification
- Paper-reported; independent reproduction is not documented.
- Primary research source linked.
- Severity
- Not rated by this catalog.
- Source and publication type
- arXiv · Research preprint.
- Peer-review status is not provided by this source.
- Author and publication status
- Author metadata is not stored; see the primary paper.
- Threat model and attacker access
- Not explicitly classified; consult the primary paper..
- Related deployment categories
- Agent workflows; Model APIs
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- Autonomous agent frameworks and tool-invocation pipelines built on frontier and open-weight LLMs, including but not limited to the GPT-5 series, Gemini-2.5 series (Pro/Flash), Llama-3.1-8B…
Research Paper
Evaluating Implicit Regulatory Compliance in LLM Tool Invocation via Logic-Guided Synthesis
Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.
View PaperEvidence
This entry is based on a primary research source. Its findings are paper-reported; independent reproduction and verification are not claimed.
https://arxiv.org/abs/2601.08196Related research
- Agent Missing-Tool Hallucination
Published January 1, 2026 · model-layer, application-layer, hallucination
- Oversight Boosts Scheming
Published March 1, 2026 · model-layer, application-layer, prompt-layer
- Adaptive Agent Tool Injection
Published February 1, 2026 · application-layer, prompt-layer, injection