The LMVD-ID is an internal research identifier, not an official CVE identifier.
Agent Tool Execution Jailbreak
A multi-step tool execution vulnerability exists in Large Language Model (LLM) agents utilizing the Model Context Protocol (MCP) or similar tool-calling frameworks. Safety guardrails in aligned LLMs typically evaluate…
Paper-evaluated models(3)
- GPT-5
- Gemini Pro
- DeepSeek V3
Description
A multi-step tool execution vulnerability exists in Large Language Model (LLM) agents utilizing the Model Context Protocol (MCP) or similar tool-calling frameworks. Safety guardrails in aligned LLMs typically evaluate static, single-turn text generation. Attackers can bypass these text-centric guardrails by supplying adversarial prompts that force the agent into a complex planning sequence. The agent is manipulated into executing a trajectory of seemingly benign individual tool invocations that collectively achieve a harmful objective, converting prompt-level jailbreaks into realized environmental actions.
Examples
- Filesystem Configuration Manipulation: An attacker uses a refusal-suppression prompt, instructing the agent to act as a network engineer during an emergency drill. The agent sequentially executes
list_allowed_directories,search_files,read_text_file, andedit_fileto locateemergency_sinkhole_active.confand append attacker-controlled domains across multiple formats (dnsmasq, Unbound, hosts), compromising availability. - Cross-Server Chaining (Playwright + Filesystem): Framed as a "security containment drill," the attacker prompts the agent to simulate a credential-stealing script. The agent uses Filesystem tools to create a directory and write a functional input-capturing JavaScript file (
write_file), then seamlessly switches to Playwright tools (browser_navigate) to load a target page and deploy the payload. - Authorized Messaging Abuse (Slack): Operating under an "Authority Manipulation" prompt, the agent uses
channels_listto identify a company-wide announcement channel andconversations_add_messageto post a deceptive phishing notice instructing employees to reset passwords at an attacker-controlled portal.
Impact
Successful exploitation allows attackers to perform unauthorized real-world actions constrained only by the permissions of the tools exposed to the agent. Impacts include arbitrary code execution, denial of service, sensitive data exfiltration, deployment of malicious infrastructure, and automated spear-phishing, bypassing the LLM's inherent safety alignment.
Affected Systems
Autonomous LLM agents integrated with multi-step tool-calling frameworks (e.g., Model Context Protocol). Models empirically found vulnerable to this trajectory-based manipulation include GPT-5.2, Gemini-3-Pro, Qwen3.5, and GLM-5 when connected to operational environments such as CodeExecutor, Slack, Gmail, Playwright, and local filesystems.
Mitigation Steps
- Enforce Least Privilege: Restrict the scopes and permissions of tools exposed to the agent to the absolute minimum required for specific tasks.
- Human-in-the-Loop (HITL): Require explicit user confirmation before the execution of high-risk tool operations (e.g., writing files, sending emails, executing arbitrary code, or modifying configurations).
- Input Validation & Sandboxing: Implement strict input validation on all parameters passed to external tools and enforce execution sandboxing to prevent state contamination or lateral movement.
- Trajectory-Aware Monitoring: Deploy security mechanisms capable of evaluating the holistic intent of an ongoing multi-step execution sequence, rather than relying solely on text-based prompt-and-response filters.
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
- Black-box model, service, or application access.
- Related deployment categories
- Agent workflows
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- Autonomous LLM agents integrated with multi-step tool-calling frameworks (e.g., Model Context Protocol). Models empirically found vulnerable to this trajectory-based manipulation include GPT-5.2, Gemini-3-Pro, Qwen3.5…
Research Paper
T-MAP: Red-Teaming LLM Agents with Trajectory-aware Evolutionary Search
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/2603.22341Related research
- CoT Detector Obfuscation Bypass
Published December 1, 2025 · application-layer, prompt-layer, jailbreak
- Cross-Environment Agent Jailbreak
Published December 1, 2025 · application-layer, prompt-layer, injection
- Agent Implicit Doc Execution
Published April 1, 2026 · application-layer, prompt-layer, injection