An LLM, or large language model, is a generative AI system trained on large amounts of text to produce and transform language. In security contexts, LLMs can support summarisation, analysis, and automation, but they also raise concerns around data exposure, misuse, and overreliance on outputs that are not always trustworthy.
Expanded Definition
An LLM, or large language model, is a generative AI system that predicts and produces language based on patterns learned from large text datasets. In practice, it is better understood as a probabilistic text engine than as a source of verified knowledge, because it can generate fluent but incorrect, incomplete, or contextually unsafe output.
For security and governance teams, the important boundary is that an LLM is not the same thing as an AI agent. An LLM can answer, transform, classify, or summarise text, but it does not inherently plan actions or execute tools unless an application wraps it with those capabilities. That distinction matters because the risk profile changes materially once outputs can trigger downstream systems. NIST’s AI Risk Management Framework is useful here because it frames LLMs as systems that need context-aware governance, not just model accuracy checks.
A common misunderstanding is to treat “larger” as automatically “better.” In operational settings, the more relevant question is whether the model is fit for the specific task, the data sensitivity, and the tolerance for uncertainty. Guidance versus consensus also matters: there is broad agreement that LLM outputs should be validated, but no consensus that a single control pattern fits every deployment.
Examples and Use Cases
LLMs appear in security-adjacent workflows where speed and language handling matter more than deterministic correctness. Their value is real, but so is the need to constrain what they are allowed to infer or influence.
- Analysts use an LLM to draft incident summaries from alerts, tickets, and chat logs, then verify the result before distribution.
- Security teams use an LLM to normalise policy language or compare control statements across documents, especially when preparing internal reviews.
- Developers use an LLM to generate code snippets or configuration examples, but still review them for unsafe defaults and hidden assumptions.
- Help desks use an LLM to answer repetitive user questions, where the tradeoff is faster response times versus the risk of confident but wrong guidance.
- Product teams use an LLM in retrieval-augmented generation workflows so answers can be grounded in approved sources rather than the model’s memory alone.
For teams evaluating more agent-like deployments, the OWASP view in the OWASP Top 10 for Agentic Applications 2026 becomes relevant when the LLM is no longer only generating text but is helping drive tool use or workflow decisions.
Security Implications
LLMs introduce risk when organisations treat generated text as if it were verified evidence. The most common failure mode is overtrust: an output can sound authoritative while still being unsupported, outdated, or subtly wrong. That creates integrity risk in documentation, triage, coding, policy interpretation, and customer communications.
Another issue is data exposure. If sensitive prompts, retrieved context, or conversation history are fed into an LLM without proper guardrails, the model can surface confidential information in places where it should not appear. That risk becomes sharper when users paste secrets, tickets, or regulated data into systems that retain logs or reuse content across sessions.
Security teams should also watch for prompt injection and instruction conflict, especially in workflows that mix external content with internal instructions. In those cases, untrusted text can manipulate the model’s behaviour even when the underlying application seems controlled. Anthropic’s report on an AI-orchestrated cyber espionage campaign is a useful reminder that language models can be abused as part of real operational tradecraft when human review is weak.
The practical symptom is not only a bad answer. It is a decision chain that starts with an unverified response and ends with action taken on false confidence.
Domain and Governance Relevance
In broader AI security, LLM governance is about controlling how the model is introduced, evaluated, monitored, and bounded over time. The model itself is only one layer; the surrounding data flow, user interface, retrieval layer, and approval logic often determine whether the system is acceptable for use.
For identity and access teams, the question is not whether an LLM is “secure” in the abstract, but who can prompt it, what data it can reach, and which outputs are allowed to influence downstream systems. That becomes material when the model operates inside business processes where access decisions, ticket actions, or knowledge-base updates may be affected by its responses.
Where LLMs are wrapped into autonomous or semi-autonomous workflows, governance shifts again: the model’s output becomes a control input, not just a suggestion. In that setting, policies for review, logging, and human override matter as much as the model choice itself.
For a concise practitioner lens on LLM risk governance, NIST’s Generative AI Profile helps translate the concept into operational management concerns without assuming that every deployment has the same exposure.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
MITRE ATLAS address the attack surface, NIST AI RMF, NIST AI 600-1 and CIS Controls v8 set the technical controls, and ISO/IEC 42001:2023 define the regulatory obligations.
| Framework | Control / Reference | Relevance |
|---|---|---|
| NIST AI RMF | GOVERN — Govern | LLMs require organisational AI risk governance and accountability. |
| Recommendation — Define ownership, oversight, and acceptable-use boundaries for each LLM deployment. | ||
| NIST AI 600-1 | GOVERN — Generative AI Profile | Applies to generative AI controls for LLM lifecycle and use oversight. |
| Recommendation — Apply generative-AI profile controls to manage model use, validation, and monitoring. | ||
| CIS Controls v8 | 14 — Security Awareness and Skills Training | LLM use increases the need for human verification of AI-generated content. |
| Recommendation — Train users to verify LLM output before relying on it in operational decisions. | ||
| MITRE ATLAS | AML.TA0002 — Prompt Injection | Prompt injection is a recognised adversarial technique against LLMs. |
| Recommendation — Hunt for prompt injection attempts in LLM inputs and isolate untrusted content. | ||
| ISO/IEC 42001:2023 | 4 — Context of the organization | LLM governance depends on AI context, boundaries, and intended use. |
| Recommendation — Document where each LLM is allowed to operate and what decisions it may influence. | ||