```html id="redbot-mythos-hero-image-visible-v2"
AI Security Brief

Defending in the Mythos Era: Why AI Security Has to Move Beyond the Model

Frontier AI systems are beginning to compress parts of vulnerability discovery, exploit reasoning, and attack-path analysis. For defenders, the practical lesson is not that every model will become an autonomous attacker. The lesson is that AI security can no longer stop at prompts, outputs, or model behavior alone.

Technical Briefing AI Security Estimated Read Time: 9 Minutes Redbot Security
Core Thesis

In the Mythos era, the model is not the security boundary. The real attack surface is the system around the model: tools, permissions, retrieval pipelines, APIs, identity controls, workflow approvals, data stores, logging, and the humans who trust AI-generated recommendations.

What Changed

Public reporting around Claude Mythos and Project Glasswing signals that frontier AI capability is moving deeper into vulnerability discovery and defensive security testing.

Why It Matters

AI agents connected to tools can retrieve data, call APIs, write code, trigger workflows, and influence downstream actions far beyond model output alone.

What To Test

Security teams need to test prompt handling, RAG pipelines, tool-call validation, data boundaries, least privilege, approval workflows, and identity-linked attack paths.

```

The real risk is not just what the model says. It is what the system lets the model do.

Many AI security conversations still focus on model behavior: whether the model refuses a harmful prompt, reveals a system instruction, produces unsafe content, or answers a question it should not answer. Those issues matter, but they are not the full enterprise risk.

The more important question is architectural: what authority exists around the model? A standalone model may produce text. A tool-connected agent can retrieve documents, call APIs, summarize records, write code, open tickets, query databases, trigger workflows, or influence a human decision. Once the model is placed inside that system, the attack surface expands from prompt and response to identity, authorization, data flow, tool execution, logging, approval, and business logic.

The model should be treated as a reasoning component, not a trust boundary. Prompt instructions, retrieved documents, tool outputs, emails, tickets, browser content, and user-submitted files can all influence the model. None of those inputs should automatically inherit authority to affect privileged actions.

Prompt injection is still the front door.

Prompt injection remains the cleanest example of the underlying problem. The model receives text that appears to be data, but the text contains instructions. If the system does not preserve a hard distinction between trusted instructions and untrusted content, the model may treat attacker-controlled data as operational guidance.

This can happen directly when a user submits a malicious prompt. It can also happen indirectly when the model processes content from a webpage, document, support ticket, repository, email, spreadsheet, or retrieved knowledge base entry. In retrieval-augmented generation systems, that means the risk is not limited to the user prompt. The retrieved corpus itself can become part of the attack path.

Technical Failure Pattern
  • Trusted instruction: The application gives the model a system or developer instruction that defines the intended task.
  • Untrusted content: The model retrieves or receives data from a user, document, website, ticket, email, file, repository, or third-party system.
  • Instruction collision: The untrusted content contains language that conflicts with, overrides, reframes, or manipulates the intended instruction.
  • Downstream effect: The model produces an unsafe answer, leaks sensitive context, calls the wrong tool, changes a parameter, recommends a risky action, or influences a human approval path.

Tool-connected agents raise the impact.

Prompt injection becomes more serious when the model is connected to tools. A model that only produces text can still mislead a user. A model that can call tools can create operational impact. The difference is not semantic; it is architectural.

If an agent can send messages, write to a repository, query internal systems, access files, or call privileged APIs, then every tool-call boundary becomes a security decision point. The model may propose the action, but the system around it should determine whether the action is allowed, whether the parameters are safe, whether the content source is trusted, and whether a human approval is required.

What Mature Defenses Move Outside The Model
  • Tool-call authorization: Enforce policy before execution, not after the model has already decided.
  • Parameter validation: Validate API calls, file paths, repository actions, recipients, command arguments, and database queries deterministically.
  • Data provenance: Track whether content came from a trusted instruction, internal source, external document, third-party webpage, user upload, or retrieved knowledge store.
  • Least privilege: Limit each agent to the minimum tools, scopes, records, and actions required for the specific workflow.
  • Human approval paths: Require review for sensitive actions such as code execution, production changes, external messages, credential access, financial workflow changes, and destructive operations.
  • Auditability: Log the prompt chain, retrieval sources, tool calls, parameters, approval decisions, and resulting system changes.

Mythos-era defense requires attack-path thinking.

The strategic shift is not that AI introduces one new vulnerability class. The shift is that AI can compress the time required to connect weaknesses across a system. A weak prompt boundary, excessive tool permission, exposed internal document, permissive API token, over-trusted RAG result, and casual human approval process may each look moderate in isolation. Together, they can become a material attack path.

That is why AI security testing has to move beyond the model. The test should not stop at whether the model can be tricked. It should ask what happens after the trick works. Can the agent access sensitive data? Can it call a tool it should not call? Can it alter a workflow? Can it persuade a human to approve an action? Can it cross from untrusted content into privileged execution?

Prompt

Can untrusted text override task intent, suppress safeguards, or influence sensitive output?

RAG

Can poisoned or malicious retrieved content become instruction inside the application context?

Tools

Can attacker-controlled context influence tool selection, tool parameters, or downstream execution?

Identity

Does the agent inherit broader access than the workflow requires or cross sensitive privilege boundaries?

Human

Can AI-generated output push users toward unsafe approval decisions or unreviewed operational changes?

Source notes

Current standards and research point in the same direction: organizations should reduce reliance on model obedience and enforce controls at the system boundaries around the model.

Defensive Architecture

Mythos-ready defense means moving controls out of the model and into the system.

The organizations best prepared for frontier AI-assisted attack paths will be the ones that assume AI systems will be attacked, manipulated, confused, over-trusted, and misused. That assumption changes where security controls belong.

A system prompt can clarify intent, but it is not a control plane. A refusal policy can reduce certain unsafe responses, but it does not validate tool parameters. A model can be instructed not to reveal sensitive data, but it cannot reliably enforce access control across every workflow, document, API, and user context it touches. The durable controls belong around the model: identity, authorization, data classification, tool execution policy, deterministic validation, logging, approval workflows, and remediation processes.

Principle 01 Constrain agent authority.

AI agents should receive only the tools, permissions, scopes, repositories, records, and workflows required for the task. If the agent does not need access, the agent should not have access.

Principle 02 Validate tool calls outside the model.

The model may suggest an action, but the surrounding application should enforce whether that action is allowed, whether the parameters are safe, and whether approval is required.

Principle 03 Treat retrieved content as untrusted.

RAG output, web content, documents, tickets, emails, and repository text should be treated as data, not as instructions. Content provenance should affect authority.

Principle 04 Test attack paths, not isolated prompts.

Prompt injection is only the starting condition. The test should continue into tool execution, identity context, business logic, logging, approval decisions, and impact.

Least privilege is the first control.

Least privilege matters more when AI agents are connected to operational systems. An agent designed to summarize support tickets should not also have access to production credentials, billing records, internal messaging exports, administrative APIs, or broad cloud permissions. A coding assistant that can read a repository should not automatically be able to push to protected branches, deploy code, run arbitrary commands, or modify CI/CD secrets.

The practical question is not whether the model is trustworthy. The question is whether the workflow is overprivileged. If a prompt injection succeeds, the blast radius should still be limited by hard permissions, narrow scopes, and deterministic policy enforcement.

In AI systems, excessive agency turns a model error into an operational security event. If the model can affect tools, data, code, identity, financial workflows, customer communications, or administrative actions, then AI security testing has to evaluate the authority chain around the model.

Tool validation should be deterministic.

Tool-connected agents require a clear separation between model reasoning and system enforcement. The model can classify, summarize, suggest, or propose, but the application should validate execution. That includes checking recipients before messages are sent, validating file paths before content is read, limiting API actions to allowed scopes, preventing dangerous command arguments, and blocking destructive operations unless a separate approval flow confirms intent.

This is where many AI workflows fail. They rely on the model to behave correctly inside a complex context window instead of enforcing rules outside the model. A secure system does not ask the model whether a database query is safe. It applies query allowlists, parameter constraints, data access policy, rate limits, audit logging, and human review where needed.

Control Stack
  • Tool registry policy: Define which tools each agent can access, when they can be used, and which workflows require approval.
  • Parameter constraints: Validate recipients, URLs, API methods, file paths, repository branches, command arguments, database targets, and cloud resource identifiers.
  • Action risk scoring: Treat read-only actions, internal lookups, external messages, code execution, production writes, and destructive operations differently.
  • Human approval gates: Require separate review for high-impact actions such as production deployment, credential access, external communication, financial change, data export, or privilege modification.
  • Execution logging: Record prompts, retrieved sources, tool selections, tool parameters, approval decisions, response outputs, and resulting system changes.

Data boundaries need explicit authority rules.

AI applications often collapse different kinds of information into the same context window. A system instruction, user question, retrieved support article, third-party webpage, PDF upload, source-code comment, Slack export, and ticket attachment may all become text the model can process. That does not mean they should carry the same authority.

Mythos-era defense requires data-boundary discipline. External documents should not be allowed to redefine workflow behavior. Retrieved content should not silently override higher-trust instructions. User-uploaded files should not be able to influence privileged tool parameters. And model output should not be treated as validated truth simply because it is confident, complete, or technically detailed.

High Trust

System-owned instructions, application policy, enterprise authorization rules, deterministic validation logic, and approved workflow controls.

Medium Trust

Internal documents, approved knowledge bases, authenticated user inputs, managed ticket records, and controlled repositories.

Low Trust

External webpages, email attachments, user-uploaded files, third-party documents, public code snippets, scraped content, and unknown retrieval sources.

No Authority

Any untrusted content attempting to override instructions, request secrets, manipulate tools, redirect workflows, suppress warnings, alter policy, or influence privileged actions.

Defenders should use AI, but with guardrails.

The answer is not to avoid AI. The answer is to use AI defensively with clear boundaries. Security teams can use AI to accelerate code review, triage vulnerabilities, map attack paths, enrich alerts, summarize logs, compare configuration drift, detect anomalous behavior, and reduce the time between discovery and remediation.

But defensive use still requires governance. AI-assisted security workflows should have defined scopes, traceable evidence, approval requirements, clear ownership, and reviewable output. If AI helps identify a likely exploit path, the organization still needs human validation, compensating controls, remediation ownership, and verification that the path has been broken.

Source notes

This defense model aligns with current AI security guidance and research: treat AI systems as socio-technical systems, manage generative AI risks explicitly, and place enforceable controls around tools, data, identity, and execution paths.

AI Red Teaming

What Mythos-era AI red teaming should actually test.

A realistic AI security assessment cannot stop at jailbreak prompts or model refusal testing. It has to evaluate the full operating environment around the AI system: data sources, retrieval, tools, identity, APIs, workflow approvals, logging, monitoring, and downstream business impact.

The objective is not just to prove that a model can be manipulated. The objective is to determine whether manipulation can become exposure, unauthorized action, bad data movement, unsafe code, privilege misuse, or a human-approved business process failure.

Objective 01 Find control gaps.

Identify where the system relies on model obedience instead of enforceable policy, validation, access control, or human approval.

Objective 02 Chain the weakness.

Test whether prompt injection, overprivilege, bad retrieval, weak identity, and tool exposure can combine into a material path.

Objective 03 Break the path.

Produce evidence that helps teams reduce access, validate tool calls, harden workflows, improve logging, and verify remediation.

01

Prompt and instruction handling

Test how the system separates trusted instructions from user-controlled and externally retrieved content.

  • Direct prompt injection: Attempt to override system intent, expose hidden instructions, suppress safety warnings, or force responses outside expected workflow boundaries.
  • Indirect prompt injection: Embed malicious instructions in webpages, documents, tickets, emails, comments, uploaded files, repository text, and knowledge-base entries.
  • Instruction hierarchy testing: Verify whether lower-trust content can override system, developer, application, or enterprise policy instructions.
  • Refusal bypass testing: Determine whether formatting, role play, translation, encoding, tool context, or multi-step task framing can weaken intended restrictions.
02

RAG and data-boundary testing

Test whether retrieved content can become instruction, leak sensitive material, or distort decision-making.

  • Corpus poisoning: Introduce controlled malicious documents or low-trust content to test whether retrieval pipelines elevate attacker-controlled text.
  • Source trust confusion: Evaluate whether the system distinguishes approved internal knowledge, external web data, user uploads, third-party PDFs, and unknown retrieval sources.
  • Sensitive data retrieval: Test whether the model can surface records, credentials, internal documents, customer data, code, or metadata outside the user’s need-to-know.
  • Context contamination: Assess whether content from one user, tenant, case, repository, or workflow can influence another user’s output or tool action.
03

Tool-call and agent execution testing

Test whether the model can influence real actions through plugins, APIs, functions, browser agents, workflow automations, or MCP-connected tools.

  • Unauthorized tool selection: Attempt to cause the agent to choose a tool that is outside the intended task or user authorization context.
  • Parameter manipulation: Test recipients, URLs, file paths, repository branches, API methods, query parameters, command arguments, cloud identifiers, and export destinations.
  • Execution boundary testing: Verify whether risky actions are blocked, routed for review, logged, rate-limited, or allowed without deterministic checks.
  • Tool-output injection: Evaluate whether output from one tool can influence later tool calls, overwrite instructions, or alter downstream workflow logic.
04

Identity, authorization, and privilege testing

Test whether the AI system inherits excessive access or crosses privilege boundaries through user context, service accounts, tokens, or workflow roles.

  • Agent overprivilege: Compare each agent’s actual permissions against the minimum access required for its intended workflow.
  • User-context abuse: Test whether a lower-privileged user can cause the agent to retrieve, summarize, modify, or act on data the user should not access.
  • Service account exposure: Review whether backend tokens, integration accounts, and API credentials grant broad read, write, export, or administrative rights.
  • Tenant and role isolation: Validate that users, departments, customers, environments, and repositories remain isolated across AI-assisted workflows.
05

Human approval and workflow abuse testing

Test whether AI-generated output can pressure, mislead, or confuse users into approving unsafe actions.

  • Approval manipulation: Evaluate whether the AI can frame high-risk actions as routine, urgent, pre-approved, or low impact.
  • Phishing and social workflow testing: Test whether AI-generated summaries, emails, tickets, or recommendations can move users toward unsafe decisions.
  • Decision traceability: Confirm that approval screens show source context, risk level, tool action, parameters, and user accountability.
  • High-impact action gates: Validate that production changes, credential access, code execution, external messaging, financial updates, and data exports require explicit review.
06

Logging, detection, and remediation testing

Test whether the organization can see, investigate, and break AI-assisted attack paths quickly enough.

  • Prompt and retrieval logging: Confirm that prompts, retrieved sources, context windows, and source provenance are captured at the right level of detail.
  • Tool-call observability: Verify logs for tool selection, parameters, execution results, approval decisions, and resulting system changes.
  • Detection logic: Test alerting for suspicious prompt patterns, anomalous tool use, unusual data access, excessive retries, failed policy checks, and abnormal export activity.
  • Remediation verification: Confirm that fixes break the attack path, not just the exact prompt used during testing.
Example Attack Path

A realistic AI attack path rarely stays inside one layer.

A mature test should chain across the system. The goal is to determine whether one weakness can become a sequence of exposure, action, and business impact.

  1. Inject malicious instructions into a low-trust document. A support ticket, uploaded PDF, repository comment, or third-party webpage contains attacker-controlled text.
  2. Force the model to treat the content as guidance. The model fails to preserve the boundary between retrieved data and trusted task instructions.
  3. Influence a tool call or workflow recommendation. The agent selects a tool, changes a parameter, exports data, opens a ticket, writes code, or recommends a privileged action.
  4. Abuse overbroad permissions. The workflow succeeds because the agent, integration, service account, or approving user has more access than required.
  5. Create impact before detection or remediation. Data is exposed, code is altered, a workflow is changed, a user is misled, or an approval path is abused without adequate logging.

Source notes

This checklist maps to common LLM application risk areas and secure AI system design principles, including prompt injection, excessive agency, insecure output handling, data exposure, tool abuse, and the need for governance, monitoring, and independent validation.

Board-Level Risk

The board-level question has changed. AI security is now an attack-path problem.

For years, executives asked a familiar question: how many vulnerabilities do we have? That question still matters, but it is no longer enough. In an AI-accelerated environment, the more important question is whether those weaknesses can be chained into a material business-impact path.

AI-enabled attackers do not need every weakness to be critical on its own. They can use automation, reasoning, and iteration to connect issues that may appear moderate in isolation: an exposed document, a weak approval workflow, an overprivileged service account, an internal API, an agent with unnecessary tool access, and a user who trusts an AI-generated summary.

Better Executive Question Which vulnerabilities can be chained into a material attack path, and how quickly can we break that path? That question forces the organization to think beyond isolated findings and evaluate exploitability, privilege, business logic, operational exposure, detection, ownership, and remediation speed.
Old Question How many vulnerabilities do we have?

Useful for inventory and prioritization, but often disconnected from exploitability, identity paths, workflow abuse, operational impact, and the speed at which an attacker can chain issues together.

Mythos-Era Question Which paths create business impact?

More useful for security leaders because it focuses on how weaknesses interact: prompts, tools, APIs, identity, cloud access, data exposure, human approval, detection, and remediation.

The path forward is defensible AI architecture.

Defending in the Mythos era requires a broader security model. AI systems should be treated as powerful but untrusted participants in enterprise workflows. They can reason, summarize, retrieve, recommend, and automate, but they should not be allowed to carry unchecked authority across sensitive systems.

This means moving durable controls into the architecture around the model. Security teams need to know what the AI system can access, what tools it can call, which identities it uses, what data it can retrieve, what actions require approval, how decisions are logged, and how quickly a discovered path can be remediated.

Practical Path Forward
  1. Inventory AI systems and agentic workflows. Map where models are embedded, which tools they can access, which identities they use, which data sources they retrieve from, and which business processes they influence.
  2. Define trust boundaries around prompts, data, tools, and users. Separate trusted system policy from user prompts, retrieved documents, third-party content, tool outputs, and human-generated operational context.
  3. Reduce agent authority and enforce least privilege. Limit each AI workflow to the minimum permissions, tools, repositories, records, and actions required for its specific purpose.
  4. Validate tool calls outside the model. Use deterministic checks for recipients, file paths, API methods, command arguments, repository branches, database queries, cloud actions, exports, and destructive operations.
  5. Red team the full workflow. Test prompt injection, RAG poisoning, tool misuse, privilege escalation, data exposure, approval manipulation, logging gaps, detection logic, and remediation effectiveness.
  6. Verify that remediation breaks the path. Do not stop after blocking a single prompt. Confirm the underlying attack path is closed across identity, tool access, data boundaries, workflow approval, and monitoring.

The answer is not to avoid AI.

The same class of capability that can accelerate attackers can also help defenders. AI can help security teams review code, summarize logs, map attack paths, enrich alerts, prioritize vulnerabilities, compare configurations, and reduce the time between discovery and remediation. The opportunity is real.

But AI should be used with strong governance and clear operating boundaries. High-impact decisions should remain reviewable. Sensitive actions should remain auditable. Privileged tools should remain constrained. Retrieved content should remain untrusted unless policy says otherwise. And AI-generated recommendations should be treated as inputs to a decision, not as a substitute for validated security judgment.

Mythos is a warning, but it is also an opportunity. The organizations that succeed will not be the ones that simply add more AI tooling. They will be the ones that redesign systems so AI can be useful without becoming overprivileged, unaudited, or blindly trusted.

The future of AI security is not just about making models safer. It is about making the systems around them defensible.

Source notes

This section aligns executive AI security governance with attack-path validation, AI system inventory, least privilege, secure-by-design guidance, and risk management practices from standards bodies and industry frameworks.

Redbot Security

Test the system around the model. Not just the model response.

Redbot Security helps organizations evaluate AI applications, agentic workflows, RAG pipelines, tool-connected systems, cloud-connected AI services, and real-world attack paths that extend beyond prompt and response testing.

Continue reading

Explore related Redbot Security resources on AI security, red teaming, penetration testing, and attack-path validation.

Redbot Security provides senior-led manual testing, AI security validation, and advanced red team services for organizations that need to understand exploitable risk beyond automated scanning.