By NHI Mgmt Group Editorial TeamDomain: AI SecuritySource: HighflamePublished January 6, 2026

TL;DR: LLM attacks have moved from obvious one-shot jailbreaks to slow-burn, multi-turn manipulation that exploits stateless guardrails, according to Highflame. The core security shift is that defenders now need conversational memory, not prompt-by-prompt filtering, because malicious intent often only appears across exchanges, and Highflame says DeepContext is designed to detect those trajectories without replaying full transcripts on every request.


At a glance

What this is: This is an analysis of multi-turn LLM jailbreak and prompt injection defense, with the key finding that stateless guardrails miss malicious intent that only emerges across a conversation.

Why it matters: It matters because IAM, PAM, and AI security teams now have to govern LLMs and agents as stateful systems whose decision boundaries, tool use, and downstream actions can be manipulated over time.

By the numbers:

  • 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 Highflame's analysis of multi-turn LLM jailbreak defence and DeepContext


Context

Multi-turn prompt injection is a governance problem as much as it is a model-safety problem. A single prompt may look harmless, but the cumulative conversation can steer an LLM toward policy violations, unsafe actions, or tool misuse that a stateless filter never sees. In enterprise settings, that becomes an identity and access issue once the model can influence systems, credentials, or data flows.

The technical failure here is the assumption that each message can be judged in isolation. Highflame's analysis shows why that breaks down: attackers build trust, reshape context, and escalate gradually until the malicious intent is only visible in hindsight. That pattern is directly relevant to agentic AI programmes, where the model's runtime behaviour needs continuous oversight, not just a front-door check.


Key questions

Q: What breaks when LLM guardrails only inspect one prompt at a time?

A: They miss attacks that unfold gradually. A single message can look harmless while the conversation as a whole is steering the model toward restricted content, unsafe tool use, or policy violations. Security teams need controls that preserve conversational state and detect escalation over time, because the malicious pattern often only appears in the sequence, not in any one turn.

Q: Why do multi-turn prompt injections create more risk for agentic AI systems?

A: Agentic systems can act on intermediate context, call tools, and influence workflows before the final harmful intent is obvious. That means a model that is being slowly manipulated can already expose data or trigger actions while it still appears to be in a benign exchange. The risk comes from runtime behaviour plus accumulated context, not from the final prompt alone.

Q: How do security and AI teams evaluate whether LLM safety controls are actually working?

A: They should look for evidence that the system is capturing conversation logs, control activations, and quality signals consistently across traffic. Useful indicators include rail execution rates, alert fidelity, hallucination trends, privacy flags, and latency impact. If those signals are incomplete or inconsistent, the controls may exist in design but not in practice.

Q: Why do AI agents need identity and access governance if the model is already strong?

A: Because model strength does not control who or what the agent can touch in production. The real risk comes from standing permissions, weak supervision, and access to tools and data that the task does not require. Governance has to define runtime authority, not just model output quality.


Technical breakdown

Why stateless guardrails fail against multi-turn prompt injection

Stateless guardrails evaluate each prompt independently, which works only when the attack is concentrated in a single message. Multi-turn attacks exploit the fact that malicious intent can be distributed across benign-looking exchanges, making the harmful trajectory invisible until the conversation is viewed as a whole. In practice, this means the model is not being tricked by one sentence but by the accumulated context that changes what later messages mean. The architectural weakness is not just the classifier, it is the absence of memory about how the interaction evolved.

Practical implication: security teams need conversation-aware controls that preserve state across turns, not only prompt-level filters.

Intent signatures and context vectors in continuous LLM defence

Highflame describes a two-layer design. The first layer computes an Intent Signature from the current user message, a compact representation of semantic intent and risk posture. The second layer maintains a Context Vector, which increments over time and stores the security-relevant meaning of prior turns. That separation matters because it lets the system gate decisions with fresh input while still remembering trajectory. The result is a form of long-horizon detection without reprocessing the full transcript every time, which reduces latency while keeping the model aware of escalation patterns.

Practical implication: treat memory as part of the security control plane when designing agent and LLM governance.

Trajectory awareness is the real control surface in LLM security

The key security signal is not just what a user says, but how the conversation changes. Trajectory awareness looks for repeated boundary testing, constraint shaping, narrative traps, and gradual pivots from safe topics to restricted requests. That is materially different from content moderation because the same words can be harmless or malicious depending on where they appear in the sequence. For agentic systems, this matters even more because the model may act on intermediate instructions before the final harmful intent is obvious.

Practical implication: evaluate guardrails on behavioural sequences, not only on isolated prompts or keyword triggers.


Threat narrative

Attacker objective: The attacker wants the model to comply with harmful instructions while appearing benign until the safety boundary has already been crossed.

  1. Entry begins with benign questions or contextual prompts that do not trigger obvious safety filters.
  2. Credential_access is not the primary mechanic here, but the attacker gains control of the model's instruction context by overriding or corrupting hidden guidance over several turns.
  3. Escalation occurs as the attacker builds trust, reframes terms, and gradually steers the model toward restricted output or unsafe downstream actions.
  4. Impact is policy violation, unsafe tool use, data exposure, or reputational harm once the model acts on the manipulated trajectory.

NHI Mgmt Group analysis

Multi-turn prompt injection is a state problem, not a content problem. The article is right to move the discussion away from single-prompt moderation, because the failure mode is cumulative context manipulation. That means the governance question is whether the control layer can remember intent over time, not whether it can classify one message correctly. For agentic AI programmes, that shifts the control model toward runtime state inspection and away from isolated prompt review.

Conversational memory becomes an access-control primitive when LLMs can act. Once a model can call tools, influence workflows, or expose data, its conversation history effectively becomes part of the authorisation context. That intersects directly with IAM and PAM because the model's trusted state can be shaped by untrusted inputs. Programmes that still treat LLM safety as a moderation layer are underestimating the governance impact of agent behaviour.

Trajectory awareness is the named concept that security teams should operationalise. This article shows that the real signal is the sequence of intent, not the surface wording of any single turn. That matters for OWASP Agentic AI Top 10 style threat modelling and for control testing under NIST AI RMF, because both frameworks assume you can assess behaviour across time. Practitioners should measure whether their controls can detect escalation patterns, not just blocked prompts.

Latency-aware safety controls will become the default requirement for production AI. The article makes a useful point that full transcript replay is too slow and brittle for real-time use. That creates a governance trade-off between computational efficiency and security confidence, which is likely to shape how vendors design runtime guardrails for enterprise copilots and agents. Teams should expect continuous evaluation of memory-based controls, not one-time deployment checks.

Identity governance must follow the model into the conversation layer. If AI agents can surface credentials, access sensitive systems, or trigger downstream actions, then the boundary between model safety and identity security disappears. That is why NHI governance, agent identity, and prompt defence need to be aligned rather than managed as separate projects. The practitioner conclusion is simple: if the system can remember, it can also be steered.

What this signals

Trajectory-aware control design will matter more than one-off prompt filtering as agentic systems become embedded in business workflows. The practical challenge is to preserve enough conversational state to detect escalation without creating latency or review overhead that makes the control unusable in production.

For programmes already aligning to OWASP Agentic AI Top 10 and the NIST AI 600-1 Generative AI Profile, the next step is to treat memory, state, and tool access as linked governance problems. If an LLM can retain context, it can also retain manipulated intent, which makes runtime verification a continuing obligation rather than a deployment checkpoint.


For practitioners

  • Implement conversation-level risk scoring Score not only the current turn but also the conversation trajectory, so repeated boundary testing and slow escalation are visible before the model crosses a policy boundary.
  • Separate benign context from security-relevant state Preserve only the interaction features that affect safety decisions, and down-weight conversational noise so irrelevant turns do not drown out suspicious escalation patterns.
  • Test guardrails against multi-turn red-team patterns Use crescendo-style sequences, trust-building exchanges, and narrative traps in evaluation rather than relying on isolated jailbreak prompts that overstate control strength.
  • Tie LLM safety to identity and tool governance When an LLM can access systems, secrets, or APIs, require the same access review discipline you would use for other non-human identities and privileged workflows.

Key takeaways

  • Multi-turn jailbreaks defeat controls that only judge prompts in isolation, because the malicious intent is often distributed across the conversation.
  • The measurable risk is trajectory, not just content, which is why memory-aware guardrails and sequence testing are becoming essential.
  • When LLMs can access tools or data, prompt safety and identity governance must be designed together or the control model stays incomplete.

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, OWASP Non-Human Identity Top 10 and MITRE ATLAS address the attack and risk surface, while NIST AI RMF and NIST AI 600-1 set the governance and control requirements practitioners need to meet.

FrameworkControl / ReferenceRelevance
OWASP Agentic AI Top 10Multi-turn prompt injection and agent hijacking map directly to agentic AI attack patterns.
NIST AI RMFMANAGEThe article is about operationalising ongoing AI safety controls in production.
NIST AI 600-1Generative AI risk management applies to prompt injection, safety, and provenance issues.
OWASP Non-Human Identity Top 10NHI-08When models can act, their runtime identity and access posture becomes relevant to NHI governance.
MITRE ATLASThe article describes adversarial manipulation of AI systems through multi-turn prompts.

Map multi-turn jailbreak scenarios to agentic AI threat categories and test controls against sequence-based abuse.


Key terms

  • Prompt Injection (Agentic): An attack where malicious instructions are embedded in content that an AI agent reads — causing the agent to execute unintended actions using its own legitimate credentials. A primary vector for agent goal hijacking and identity abuse.
  • Jailbreaking: Jailbreaking is the practice of crafting prompts that persuade an AI model to ignore its safeguards and produce restricted outputs. It shows that authentication to the service does not guarantee safe behavior, which is why governance must extend beyond the chat interface.
  • Conversation Trajectory: Conversation trajectory is the security-relevant pattern created by how a dialogue changes over time, not by any single message. It helps defenders detect slow escalation, repeated boundary testing, and narrative manipulation that would look harmless in isolation.
  • Context Vector: A context vector is a compact representation of the important security state accumulated across multiple turns in a conversation. It allows a guardrail or classifier to retain memory of prior intent without replaying the full transcript every time, which is useful for low-latency detection.

What's in the full article

Highflame's full article covers the operational detail this post intentionally leaves for the source:

  • The two-pillar DeepContext architecture, including the Intent Signature and Context Vector design choices.
  • Benchmark methodology against multiturn jailbreak datasets and single-turn guardrail baselines.
  • Demo-level examples of how an ActorAttack unfolds across turns and where the guardrail blocks it.
  • Performance claims and evaluation framing that are useful if you are comparing runtime safety approaches.

👉 Highflame's full article covers the attack patterns, architecture details, and benchmark comparisons behind DeepContext.

Deepen your knowledge

The NHI Foundation Level course, the industry's only accredited NHI security programme, covers NHI governance, machine identity security, and secrets management. It helps security practitioners connect identity controls to emerging AI and automation risks across modern programmes.
NHIMG Editorial Note
Published by the NHIMG editorial team on September 2, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org