HabrSeptember 9, 2026🇷🇺Translated from Russian

Agentic AI Systems Under Siege: Prompt Injections, Data Poisoning, and Tool Exploits

Independent expert Andrey Biryukov examines how AI agents transition from simple chat interfaces to autonomous systems capable of reading files, sending emails, calling APIs, and managing repositories, thereby becoming targets for a new class of threats.

Unlike conventional chatbots, agents possess autonomy that introduces risks to confidentiality, integrity, and availability. Confidentiality breaches occur when agents read unauthorized files or exfiltrate data through tool outputs, workspace files, memory logs, or webhooks. Integrity violations arise when agents delete files, misroute emails, initiate fraudulent transactions, or select suboptimal vendors. Availability issues emerge when long-running tasks or browser automation create cascading failures that lock entire pipelines.

Attacks via Trusted Content

Prompt injection remains the primary vector because large language models cannot reliably distinguish user instructions from processed data. Malicious commands embedded in web pages, emails, code comments, or Jira tasks can be executed with high trust. Researchers at NeuralTrust demonstrated that specially crafted strings resembling URLs caused OpenAI Atlas to interpret instructions instead of navigating, bypassing normal validation. Zscaler ThreatLabz created a fake Python library documentation site containing hidden instructions in CSS and JSON-LD metadata that convinced coding agents to purchase a $3 license key via the attacker’s cryptocurrency wallet; four of 26 tested models complied.

Data Poisoning and Backdoor Attacks

Data poisoning targets the training or fine-tuning phase. Researchers from Carnegie Mellon and Cornell Tech altered public datasets on immigration, hiring discrimination, racial disparities, autonomous driving, and AI motivation, then uploaded tampered versions to private repositories. Agents from Anthropic, OpenAI, and Google selected the poisoned datasets in approximately half of queries. In medical imaging, insertion of just 250–300 poisoned samples into a one-million-image pneumonia dataset (0.025 %) was sufficient to implant a backdoor that caused the model to miss diagnoses in specific demographic groups.

Tool and Protocol Vulnerabilities

Three vulnerabilities in Git MCP Server allowed agents to escape repository boundaries and combine file-system, terminal, and connector access to execute malicious code. Comparative testing of Function Calling versus Model Context Protocol architectures revealed distinct risk profiles: Function Calling proved more resistant to direct prompt injection but more susceptible to tool manipulation, while MCP offered better component isolation yet enabled more cross-component attacks. Composite attacks succeeded far more often than isolated ones across 3,250 test scenarios.

Defense Recommendations

OWASP published the Agentic Top 10 listing risks such as Agent Goal Hijack, Tool Misuse, identity abuse, supply-chain compromise of MCP components, and memory poisoning. Yandex and Kaspersky Lab advocate applying STRIDE and OWASP methodologies at design time. Core principles include least-privilege isolation, strict separation of trusted and untrusted data, continuous monitoring, and validation of URLs and high-risk actions. Joint guidance issued in April 2026 by Canada, Australia, the United States, New Zealand, and the United Kingdom covers the full lifecycle from design through operation.

Related articles

AntiMalwareAI Security

Critical Sandbox Escape Vulnerability in DeepSeek Harness Lets AI Agents Disable Protections with One Command

Researchers at OX Research identified a critical vulnerability in DeepSeek Harness, an open-source tool for running AI agents that interact with local code and files. The flaw, tracked as CVE-2026-82533 with a CVSS score of 9.4, allowed an AI agent to access the tool's local web interface and switch its session to danger-full-access mode, removing all sandbox restrictions and confirmation prompts. Attackers could trigger the escape through prompt injection by embedding malicious instructions in files or content processed by the agent. The web interface lacked authentication and relied on a spoofable Host header, while session details were automatically exposed to the agent environment. The issue affected versions 0.1.1-rc.2 and earlier; patched releases began with 0.1.2-alpha.2. The same interface also exposed logs of all stored conversations. DeepSeek had previously warned that its sandbox and confirmation mechanisms did not guarantee full isolation.

SecuritylabAI Security

How to Build an AI Agent for Pentesting Without Turning It Into a Black Box

Most security specialists use language models as advanced references where the human reviews every suggestion before execution. With autonomous AI agents the workflow changes dramatically as the agent plans steps, calls tools, analyzes outputs and maintains memory across multiple iterations. This automation introduces serious risks because specialists may see only the final result without understanding which hypotheses were tested or why specific commands were chosen. CyberED and Standoff Hackbase are running a practical AI pentesting challenge to help participants build controllable agents. The event includes a live webinar on 10 September followed by a week-long hands-on period on the Standoff Hackbase training range. Experts emphasize defining strict technical boundaries, logging every decision, and keeping high-risk actions under human oversight.

HabrAI Security

AI Agents Remember Everything: Privacy Risks of Persistent Memory

AI agents are advanced models capable of calling external and internal tools while cycling through complex tasks. They retain extensive memory of user actions, model responses, tool usage, and all related interactions. This design allows agents to learn user preferences such as specific formatting rules or language choices after a single explanation. Personalization improves efficiency but creates detailed profiles of communication styles, habits, and personal information. The stored data raises questions about what a personal AI assistant might remember and with whom that information could be shared. The article from Selectel highlights how convenience in AI agents directly conflicts with user privacy expectations.

BoletimSecAI Security

AI Detection Agents Shift Cybersecurity from Alerts to Autonomous Investigations

AI-powered detection agents are redefining how organizations identify and respond to cyber threats by moving beyond simple signature matching and alert generation. Instead of forwarding isolated events to human teams, these agents now perform initial investigations themselves, correlating telemetry from multiple sources and reconstructing attack chains before escalating any incident. The technology has progressed from theoretical discussions to active budget conversations, forcing security teams to evaluate how much triage work can be handled autonomously. Traditional monitoring systems deliver chronological events and leave analysts to connect the dots manually, while the new agents handle correlation, timeline verification, and scope assessment upfront. Attack automation has increased the urgency, as malicious actions can now produce effects faster than human analysis can complete. The agents collect artifacts, review asset history, check for repeated behavior, and determine the real impact, redistributing analyst workload without removing the need for human judgment on business impact and response decisions.