惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
月光博客
月光博客
Y
Y Combinator Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
美团技术团队
T
Tailwind CSS Blog
小众软件
小众软件
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More

Blog

Imperva Customers Protected Against StyleSmuggler (CVE-2026-75650) in Adobe Commerce and Magento Open Source | Imperva SSL Integration Center: BYO CA & DigiCert TLM | Imperva OWASP LLM Top 10: What Comes Next for AI Security | Imperva Imperva API Security Token & Authentication Risk Report: Nearly 40% of APIs Face Multiple Authentication Risks | Imperva Imperva API Security Token & Authentication Risk Report: Nearly 40% of APIs Face Multiple Authentication Risks | Imperva www.imperva.com Imperva Customers Protected Against XSS2Shell (CVE-2026-64638) in WordPress Core | Imperva What SecureIQLab Cloud WAAP 5.0 means for your application security | Imperva Generative AI Security: Why AI Needs New Defenses | Imperva ShadowAI-Watch: Bringing AI Agent Activity Out of the Shadows | Imperva Imperva Customers Protected Against Novel HTTP Desync Attacks | Imperva MCP Server Security: Risks, Attacks & Controls | Imperva Google Australia Customers Now Benefit From Imperva Cloud-Native WAAP Security | Imperva Closing the Sovereignty Gap: Bringing Active API Protection to Self-Managed Environments | Imperva Imperva Customers Protected Against CVE-2026-16723: Critical FastJson 1.x Zero-Day RCE | Imperva Imperva Customers Protected Against "wp2shell" Pre-Authentication RCE in WordPress Core | Imperva Code Injection in Perforce Helix Core (CVE-2026-6902) | Imperva AI Bot Traffic: Which Bots to Allow or Block | Imperva API Security Tools: What Each One Protects | Imperva CVE-2025-54068 Laravel Livewire Credential Theft Campaign: 6,000+ Applications Compromised | Imperva On-Premises API Security on Kubernetes | Imperva AI Security Assistant for Faster Investigations | Imperva Best WAAP Solutions 2026: Enterprise Buyer Guide | Imperva Compromise OpenClaw with Prompt Injections in Message Objects The Clock Is Already Ticking: Why Post-Quantum Cryptography Can’t Wait Imperva Customers Protected Against CVE-2026-49975 (HTTP/2 Bomb) DoS Imperva Customers Protected Against CVE-2026-45247 in Mirasvit Full Page Cache Warmer for Magento Real-Time Webhook Notifications: No More Lost Security Alerts Imperva Customers Protected Against CVE-2026-9082 in Drupal Core Dify: When Your AI Platform Becomes the Attack Surface
Agentic AI Security: The Chatbot Era Is Over | Imperva
Michael Wright · 2026-08-05 · via Blog

Agentic AI Security: The Chatbot Era Is Already Over

There is a diagram most security teams still carry in their heads when they think about AI. A user talks to a chatbot. The chatbot talks to a large language model. The model talks back. Put an inspection point in the middle, and the problem is solved.

That diagram was accurate for about eighteen months. It is not accurate anymore.

Look inside a modern AI application and the chatbot is the least interesting thing in it. There are agents living inside the application, making decisions and calling functions without a human typing anything. There are MCP servers sitting outside the application, connecting models to real systems and live data. There are tools (scripts, APIs, plugins) that the model can invoke, retrieved documents flowing into context windows, and orchestration layers deciding which agent hands work to which. The application is no longer app-plus-LLM. It is an ecosystem.

What is agentic AI security?

Agentic AI security is the practice of securing AI applications that take actions, not just applications that answer questions. It covers the whole AI execution path: the agents making decisions, the tools and APIs they invoke, the MCP servers connecting them to live systems, the documents retrieved into context, and the orchestration layer routing work between agents. Prompt inspection alone covers only the first hop.

That matters for one uncomfortable reason: security architectures inherit their assumptions from the diagrams they were designed against. If your AI protection assumes a single conversation crossing a single boundary, it is defending an architecture nobody runs anymore.

What changed in the AI attack surface

Three things, in quick succession.

First, agents started taking actions. A chatbot that gives a wrong answer is embarrassing. An agent that acts on a manipulated instruction is an operational incident. It can query a database, call an API, or trigger a workflow before any human notices. The blast radius of a successful prompt injection grew from “bad reply” to “bad transaction.”

Second, the Model Context Protocol and similar tool-integration patterns arrived. MCP is useful: a standard bridge between AI assistants and real systems. It is also, by definition, an expansion of the attack surface. Every tool a model can reach is something an attacker can try to reach through the model. We unpack those exposures in detail in MCP Server Security: The Blind Spot in Your AI Stack (https://www.imperva.com/blog/mcp-server-security-blind-spot-ai-stack/).

Third, the interactions multiplied. It is no longer one train rolling through one tunnel, one prompt in and one response out. It is internal communication between sub-agents, external calls to MCP servers, retrieval from knowledge stores: traffic that never touches the chat window at all.

The honest question: would you know what your agents just did?

The challenge isn’t simply preventing prompt injection attacks anymore. It’s understanding everything the application is capable of doing.

So here is the question worth asking your team this week: if an agent inside one of your applications called a tool it had never called before, would anyone know?

For most organizations, the honest answer is no. Not because the security team is behind, but because the visibility layer for this architecture is only now being built. You cannot govern what you cannot see, and most of what modern AI applications do is currently unseen.

That is where AI application security is heading as a discipline: away from inspecting a single conversation, toward securing the entire AI execution path: discovering every AI asset in the environment, understanding how agents, models, and tools actually relate to each other, and enforcing policy on the interactions that matter.

The chatbot era gave us a clean diagram and a comforting inspection point. The agent era gives us an ecosystem. Security is moving with it. The teams that update their mental diagram first will be the ones that are not surprised later.

Frequently asked questions about agentic AI security

What is the difference between LLM security and agentic AI security?

LLM security protects the conversation: what goes into the model and what comes back out. Agentic AI security protects what happens next – the tools the agent calls, the systems it reaches through MCP, the data it retrieves, and the handoffs between agents. The blast radius of a successful attack grows from a bad reply to a bad transaction.

Why isn’t prompt inspection enough for AI agents?

Because most agentic traffic never touches the chat window. Sub-agent communication, MCP tool calls and retrieval from knowledge stores all happen behind the prompt. An inspection point placed on the user conversation sees none of it.

What are the main agentic AI security risks?

The OWASP Top 10 for Agentic Applications (2026) names agent goal hijack, tool misuse and exploitation, identity and privilege abuse, agentic supply chain vulnerabilities, unexpected code execution, memory and context poisoning, insecure inter-agent communication, cascading failures, human-agent trust exploitation, and rogue agents.

How do you get visibility into what AI agents are doing?

Start with discovery: inventory every AI asset in the environment – models, agents, tools and MCP servers – then map how they relate to each other, then enforce policy on the interactions that matter. You cannot govern what you cannot see.

Does Imperva secure AI agents and MCP servers?

Imperva AI Application Security protects LLM-backed applications today. Thales announced the AI Security Fabric in December 2025, with an MCP security gateway and end-to-end runtime access control for agentic AI interactions on the 2026 roadmap.

Thales’s Imperva AI Application Security protects the AI powering your business applications, from LLM-backed chatbots to agents, RAG pipelines, and MCP-connected tools. Thales announced the AI Security Fabric in December 2025, adding an MCP security gateway and runtime access control for agentic AI interactions to the 2026 roadmap. See how it works here or read more in our white paper: Beyond the LLM Top 10 (Coming Soon)

Try Imperva for Free

Protect your business for 30 days on Imperva.

Start Now