Close Menu
    What's Hot

    Study: Women are more likely to get hired after taking GLP-1s

    U.S. Cuba Blockade Won’t Lead to Democracy, Economic Prosperity

    Takeaways From a Transformative Supreme Court Term

    Facebook X (Twitter) Instagram
    Trending
    • Study: Women are more likely to get hired after taking GLP-1s
    • U.S. Cuba Blockade Won’t Lead to Democracy, Economic Prosperity
    • Takeaways From a Transformative Supreme Court Term
    • Tom Kean, New Jersey Congressman, Says Depression Led to Long Absence
    • Opinion | What Is the ‘Spirit of Liberty’ Today?
    • Venezuela’s Maduro Accused in Lawsuit of Authorizing Police Killings
    • China’s Plan to Save Jobs From A.I.
    • The Two Mexico Cities Fighting for Claim Over Soccer’s Origin
    interluknewsinterluknews
    • Home
    • Business
      • Corporate News
      • Industry Insights
      • Startups & Entrepreneurship
      • Technology & Innovation
    • Economy
      • Economic Policy
      • Financial Analysis
      • Inflation & Interest Rates
      • Trade & Markets
    • Global
      • Conflicts & Security
      • Diplomacy
      • Global Trends
      • International Affairs
    • Lifestyle
      • Fashion
      • Food & Dining
      • Personal Development
      • Travel
    • Opinion
      • Columns
      • Editorials
      • Expert Opinions
      • Reader Voices
    • More
      • Politics
        • Elections
        • Government & Policy
        • International Relations
        • Political Analysis
      • Sports
        • Cricket
        • Football / Soccer
        • International Sports
        • Local Sports
      • Technology
        • Artificial Intelligence
        • Cybersecurity
        • Gadgets & Reviews
        • Tech News
      • South Africa News
    Facebook X (Twitter) Instagram
    interluknewsinterluknews
    Cybersecurity

    Microsoft Warns Poisoned MCP Tool Descriptions Can Make AI Agents Leak Data

    adminBy adminJune 30, 2026No Comments6 Mins Read
    Share Facebook Twitter Pinterest Copy Link Telegram LinkedIn Tumblr Email
    Microsoft Warns Poisoned MCP Tool Descriptions Can Make AI Agents Leak Data
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Microsoft Warns Poisoned MCP Tool Descriptions Can Make AI Agents Leak Data

    New Microsoft research shows how attackers can hijack AI agents that act on a user’s behalf, using nothing more than a poisoned tool description to make the agent quietly hand over company data to an outsider.

    The trick is that the agent never breaks a rule. Every step looks routine, so in a default setup no alarm may fire.

    The work comes from Microsoft Incident Response and its Defender security research team, and it lands as companies start letting AI do more than read and summarize.

    What changes when an agent can act

    Until recently, the workplace AI risk was mostly framed around what a model read and wrote. A poisoned document could skew an answer, and that was mostly where it ended.

    Agents are different. Microsoft 365 Copilot can send email, create files, and change calendars. Custom agents built in Copilot Studio or Azure AI Foundry can reach into business systems and run multi-step jobs on their own.

    The same injection trick that biases a summary now triggers an action. Against a reader, an attack changes the output. Against an agent, it changes what the software actually does.

    Cybersecurity

    These agents reach business systems through MCP, the Model Context Protocol, an open protocol that lets an AI call outside tools the way an app calls an API. Microsoft calls it the fastest-growing part of the agentic AI supply chain, which makes it an expanding attack surface.

    How the attack works

    Every MCP tool ships with a description: a few lines of plain text that tell the agent what the tool does and when to use it. The agent reads that text to decide how to act. That is the whole weakness. The description is just words, and words can carry instructions.

    Microsoft walks through it with an invoice example, built to show the pattern rather than report a named victim. A finance team stands up an agent to handle vendor invoices. It connects to three tools, including a third-party “invoice enrichment” service that was approved for use but never given a real security review.

    Then the attacker updates that third-party tool. The name and the visible summary stay the same. Buried in the description, dressed up as formatting notes, is a hidden order: grab the last thirty unpaid invoices and attach them to the next call. MCP picks up description changes on the fly. In setups without a re-approval trigger, the poisoned version goes live with no extra review.

    After that, an analyst asks a routine question about a supplier. The agent follows the hidden order, collects the invoices and sends them along as part of a normal-looking request. The tool returns a clean answer and quietly copies the stolen data to a server the attacker controls. The analyst sees nothing wrong.

    Each move the agent makes is legitimate on its own. The tool was approved. The data query ran with the analyst’s own permissions. The outbound call went to a server that was allowed when it was added. The weakness is not in any one system. It lives in what Microsoft calls “the trust boundary between them.”

    The deeper problem is that MCP mixes instructions and data in the same place. A tool’s description lives in the agent’s working memory right next to its real orders, so editing that description can steer the agent as effectively as rewriting its system prompt.

    The agent has no reliable way to tell an honest instruction from a malicious one slipped in by whoever maintains the tool. Microsoft notes this is not a bug in Copilot itself. It is a trust gap opened up by plugging in outside tools.

    What defenders should do

    Microsoft’s advice, stripped to plain terms:

    • Treat every connected tool as part of your supply chain. Keep a list of approved tool publishers, turn off “allow all,” and let an agent use only the specific tools it needs.
    • Treat a tool’s description like a system prompt. Review changes to it the way you would review a code change, and scan the text for commands that have no business sitting in a help field.
    • Put a human in front of risky actions. Anything that moves money, shares data outside the company, or changes accounts should need a person to approve it.
    • Give each agent its own identity and watch what it does. Log its actions, set a baseline for normal, and flag new endpoints, larger data pulls, or odd queries.
    • Apply least agency, not just least privilege. Even a low-permission agent can do real harm if it is allowed to act without checks.

    Microsoft maps its own products to each step, including Prompt Shields, Purview DLP, Entra Agent ID, Defender for Cloud, and Sentinel, but the principles hold whatever stack you run.

    Not a theory: how we got here

    This class of attack has a paper trail. Invariant Labs named “tool poisoning” in April 2025, with a proof of concept that hid instructions in a calculator tool’s description and got the Cursor editor to read a user’s private SSH key and send it off. Developer Simon Willison dug into it days later.

    Cybersecurity

    The same group later showed a related trick: a malicious GitHub issue could hijack an agent connected to the GitHub MCP server and walk data out of private repositories. The tools there were trusted and untouched; the bad instructions rode in on the data the agent read.

    OWASP now cites that case as an Agentic Supply Chain Vulnerabilities example in its December 2025 Top 10 for Agentic Applications.

    A related supply-chain failure has already happened in the wild. In September 2025, researchers at Koi Security found an npm package called postmark-mcp. It had mirrored a legitimate email tool for fifteen clean releases before version 1.0.16 slipped in one line that secretly BCC’d every email an agent sent to an attacker. Koi called it the first real-world malicious MCP server.

    Academics have started measuring the problem too. The MCPTox benchmark, released in August 2025, ran poisoned tool descriptions against 45 real MCP servers and 20 leading AI models. It found the attack widely effective, with a success rate as high as 72.8 percent, and the models almost never refused.

    The throughline is the one Microsoft is pressing now. AI that can act is only as trustworthy as the tools you let it touch, and right now those tools are easy to poison and hard to watch.

    agents data descriptions Leak MCP Microsoft poisoned tool warns
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    Previous ArticleStates Sue Trump Administration Over Medicaid Work Requirements
    Next Article The Open – Final Qualifying: Sergio Garcia, Danny Willett among major winners to miss out but who qualified for Royal Birkdale? | Golf News
    admin
    • Website

    Related Posts

    Langflow RCE Exploited to Deploy Monero Miner on Exposed AI App Endpoints

    June 30, 2026

    Silent Swap Crypto Clipper Uses Fake Google Notes Extension to Replace Wallet Addresses

    June 30, 2026

    What the Numbers Say About FIFA 2026 Cyber Risk

    June 30, 2026
    Leave A Reply Cancel Reply

    Demo
    Latest Posts

    Study: Women are more likely to get hired after taking GLP-1s

    U.S. Cuba Blockade Won’t Lead to Democracy, Economic Prosperity

    Takeaways From a Transformative Supreme Court Term

    Tom Kean, New Jersey Congressman, Says Depression Led to Long Absence

    Latest Posts

    Subscribe to News

    Get the latest sports news from NewsSite about world, sports and politics.

    Advertisement
    Demo

    We are a digital news platform delivering timely, accurate, and insightful coverage of politics, global affairs, business, economy, sports, and more. Our mission is to keep readers informed with reliable news, clear analysis, and stories that truly matter.
    We're social. Connect with us:

    Facebook X (Twitter) Instagram Pinterest YouTube

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    Type above and press Enter to search. Press Esc to cancel.

    Powered by
    ...
    ►
    Necessary cookies enable essential site features like secure log-ins and consent preference adjustments. They do not store personal data.
    None
    ►
    Functional cookies support features like content sharing on social media, collecting feedback, and enabling third-party tools.
    None
    ►
    Analytical cookies track visitor interactions, providing insights on metrics like visitor count, bounce rate, and traffic sources.
    None
    ►
    Advertisement cookies deliver personalized ads based on your previous visits and analyze the effectiveness of ad campaigns.
    None
    ►
    Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies.
    None
    Powered by