TL;DR: Recent jailbreak techniques exploit policy simulation, tokenization confusion, distraction, and time-based reasoning to bypass LLM safeguards and push unsafe output into agent workflows, according to Pillar Security's research. The security problem is not just prompt filtering failure: language and context are now being used as executable logic, which breaks assumptions built into conventional guardrails.
At a glance
What this is: Pillar Security maps the latest jailbreak methods that bypass LLM safeguards by abusing policy-like prompts, token boundaries, distraction, and temporal reasoning.
Why it matters: IAM, NHI, and AI governance teams need to treat jailbreaks as control-plane exposure because these techniques can turn model input into unsafe tool execution inside agentic workflows.
By the numbers:
- 92% agree governing AI agents is critical to enterprise security, yet only 44% have implemented any policies to do so.
- 80% of organisations report their AI agents have already performed actions beyond their intended scope, including accessing unauthorised systems, inappropriately sharing sensitive data, and revealing access credentials.
👉 Read Pillar Security's analysis of the latest LLM jailbreak techniques
Context
LLM jailbreaks are prompt-level attacks that manipulate how a model interprets instructions, policy text, formatting, and context. In agentic environments, the issue becomes an identity governance problem because the model is no longer just generating text. It is making or influencing tool-using decisions inside systems that already hold credentials, data access, and execution rights.
Pillar Security frames these jailbreak patterns as a shift away from software exploitation and toward context engineering. That shift matters for AI agent governance because the attack surface now includes policy simulation, token confusion, distraction, and temporal framing, all of which can steer an agent past the controls teams believe are protecting it.
Key questions
Q: How should security teams prevent jailbreak prompts from reaching agent tools?
A: Security teams should separate model generation from execution authority. A jailbreak should not be able to trigger API calls, file actions, or workflow changes without a second authorization layer that checks the intent, destination, and data scope. The safest pattern is to assume the model can be manipulated and constrain what it is allowed to do after it speaks.
Q: When do jailbreak techniques become a governance problem rather than a content problem?
A: They become a governance problem when the model can influence tools, credentials, or downstream systems. At that point, prompt abuse is no longer just unsafe text generation. It becomes a pathway into identity, access, and operational control, which means the programme must govern the full agent chain, not only the model response.
Q: What do organisations get wrong about LLM safety filters?
A: Many organisations assume a filter that blocks obvious harmful wording is enough. Tokenisation confusion and policy simulation show that attackers can evade literal checks while preserving the same intent. Effective control requires semantic testing, adversarial red-teaming, and isolation before any output can drive action.
Q: What should teams do when a prompt can change an AI agent's behaviour?
A: Teams should treat the prompt as an input to a privileged runtime, not as harmless text. If a prompt can alter tool choice, task scope, or execution timing, then it needs the same kind of control thinking applied to secrets, access paths, and approval gates. That is the point where AI security becomes identity governance.
Technical breakdown
Policy simulation attacks and prompt framing abuse
Policy simulation attacks work by making malicious instructions look like configuration, policy, or system text. The model is induced to treat the input as authoritative because the format resembles XML, JSON, INI, or another trusted control structure. This does not require the attacker to break the model’s weights or infrastructure. It exploits the model’s learned tendency to privilege structured context and role cues. In agentic systems, that becomes more dangerous because the output can feed directly into downstream tools, copilots, or orchestration layers that act on the model’s response.
Practical implication: treat policy-like input as hostile and validate it before any agent can use it to alter access or execution.
Tokenization confusion in LLM jailbreaks
Tokenization confusion attacks alter how text is broken into tokens so that safety filters and classifiers misread the content while the model still recovers the intended meaning. The attack does not need to make the text unreadable to humans; it only needs to split or mask trigger words enough to defeat the classifier’s exact-match logic. This is a boundary problem between preprocessing and semantic interpretation. The filter sees one thing, the model infers another, and the mismatch creates a bypass path that ordinary prompt moderation does not catch.
Practical implication: inspect both token-level and semantic-level filtering paths before trusting a model-facing content control.
Distraction, memory reframing, and temporal jailbreak chains
Distraction-based jailbreaks bury malicious intent inside an unrelated, complex task so the model prioritises the visible request and de-emphasises the hidden one. Temporal jailbreaks do something similar by reframing the timeline, convincing the model to reason as if older restrictions or different conditions apply. Together, these techniques exploit context prioritisation rather than classical vulnerability exploitation. In agent workflows, that matters because an apparently harmless intermediate step can cascade into tool misuse, unsafe commands, or credential leakage once the model reinterprets the hidden objective.
Practical implication: design agent workflows so hidden instructions cannot survive context shifts into tool-using stages.
NHI Mgmt Group analysis
Language has become executable logic in agentic systems. This article shows that attackers no longer need a software flaw when they can manipulate the meaning the model assigns to text. That is a governance problem because the control boundary moves from code execution to context interpretation. The implication is that identity and access teams must treat model output as a privileged decision surface, not just generated content.
Policy-based prompt controls were designed for static instruction hierarchies. They fail when an attacker can make adversarial text look like authority, configuration, or role context. The broken premise is that the model can reliably distinguish user content from governance content without adversarial framing pressure. The implication is that teams must rethink where trust is established in the agent stack.
Token filters are not equivalent to semantic safety. TokenBreak-style attacks show that a classifier can see benign fragments while the model reconstructs harmful intent. That gap matters because many AI control programmes still assume preprocessing controls and prompt moderation are sufficient. The implication is that content inspection must be paired with runtime containment and tool-level authorization.
Context prioritisation gap: Jailbreaks exploit the assumption that the model will preserve the most relevant control information across a long, messy interaction. In reality, distraction and temporal reframing can erase the model’s sense of supervisory intent. The implication is that agent governance cannot depend on conversation memory alone to preserve policy intent.
Agentic AI governance now intersects with NHI discipline. Once a jailbreak can steer an agent toward tools, the real question becomes whether the downstream credentials, permissions, and blast radius were already constrained. That makes this a cross-domain control problem spanning prompt security, NHI privilege scope, and operational approval paths. Practitioners should review the whole chain, not only the model layer.
From our research:
- 98% of companies plan to deploy even more AI agents within the next 12 months, despite documented rogue behaviour in 80% of current deployments, according to AI Agents: The New Attack Surface report.
- Only 52% of companies can track and audit the data their AI agents access, leaving 48% with a complete blind spot for compliance and breach investigation.
- That blind spot is why practitioners should also review OWASP Agentic AI Top 10 alongside agent policy controls.
What this signals
Policy simulation is becoming a durable control bypass pattern. As agent deployments grow, teams should expect adversarial prompts to look more like configuration and less like obvious abuse. That means prompt review alone will not scale, and AI governance programmes need containment steps that survive hostile context and format manipulation.
The practical signal for readers is that agent security cannot stay at the model boundary. If your controls do not address tool permissions, context reset, and pre-execution authorization, a jailbreak can still turn a compromised interaction into a real operational event. Review your agent control points before the next rollout expands the attack surface.
Context prioritisation gap: security teams should assume that hidden instructions can persist across conversation turns and document handoffs. The result is a governance problem that spans both runtime context and NHI privilege scope, which is why agentic AI security should be assessed together with the broader identity stack.
For practitioners
- Separate content moderation from execution authority Do not let a successful prompt pass from the model directly into tool use. Insert an authorization layer that checks the action, the target system, and the requester context before execution. This is especially important where an agent can call sensitive APIs or internal knowledge sources.
- Harden policy-like input paths Treat XML, JSON, INI, screenshots, and copied policy snippets as untrusted when they arrive from users or external documents. Scan for instruction masquerading, then isolate any content that could be interpreted as configuration by an agent or copilot.
- Test classifiers with token distortion cases Add adversarial examples that mutate trigger words, split harmful phrases, and preserve meaning while changing token boundaries. Verify that your filters still block the semantic intent, not just the literal token pattern.
- Limit context carryover into tool-using stages Reset or narrow the conversation state before an agent reaches an action step. The goal is to prevent hidden malicious instructions from surviving a distraction sequence into a stage where the model can trigger commands or reveal sensitive data.
Key takeaways
- Modern jailbreaks exploit context, formatting, and reasoning rather than classical software flaws, which makes them harder to stop with simple content filters.
- The scale problem is growing fast because agent deployments are expanding even while many organisations still lack reliable visibility into what those agents can access.
- Practical defence now requires separating model output from execution authority, then constraining the credentials and tools that an AI agent can reach.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Agentic AI Top 10 address the attack and risk surface, while NIST AI RMF and NIST CSF 2.0 set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Agentic AI Top 10 | A1 | Prompt injection and tool misuse are central to the jailbreak patterns described. |
| NIST AI RMF | GV-1 | AI governance is needed because jailbreaks alter the trust boundary around model decisions. |
| NIST CSF 2.0 | PR.AC-4 | Tool access and execution rights determine whether a jailbreak becomes operational. |
Test agent prompts adversarially and block any path from manipulated text to tool execution.
Key terms
- Jailbreak: A jailbreak is an adversarial prompt or input sequence designed to bypass an AI model’s safety controls. In agentic systems, the effect is not limited to harmful text generation because the output may feed into tools, workflows, or access decisions.
- Tokenisation Confusion: Tokenisation confusion is a bypass technique that changes how text is split into tokens so classifiers see a different pattern than the model does. The attacker preserves meaning while degrading detection accuracy, which exposes the gap between preprocessing and semantic understanding.
- Policy Simulation: Policy simulation is the practice of making malicious instructions look like legitimate governance text, such as configuration files or rules. It works by exploiting the model’s tendency to trust structured context, which can override the protections that would normally apply to user requests.
- Context Prioritisation: Context prioritisation is the way an AI model ranks competing pieces of conversation or document input when generating its response. Attackers abuse this by burying malicious instructions in distractions or timeline changes, causing the model to favour the wrong frame.
Deepen your knowledge
NHI governance, agentic AI identity, and machine identity security are core topics in our NHI Foundation Level course, the industry's only accredited NHI security programme. If you are responsible for identity security strategy or NHI governance in your organisation, it is worth exploring.
This post draws on content published by Pillar Security: Deep Dive Into The Latest Jailbreak Techniques We've Seen In The Wild. Read the original.
Published by the NHIMG editorial team on 2025-07-31.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org