Skip to content
Breaking
Latest technical intelligence from Northeast India • Infrastructure, AI, Cloud & Security Analysis • Precision Analysis | Raw Intelligence | Your North Star of Tech Latest technical intelligence from Northeast India • Infrastructure, AI, Cloud & Security Analysis • Precision Analysis | Raw Intelligence | Your North Star of Tech
SECURITY

Analysis: Cloud Agent Vulnerabilities - AWS, Google, and Vercel Flaws Enable Unauthorized Model Execution

Why the Recent Agent Flaws Matter

Artificial intelligence agents that can call external tools are becoming core components of many cloud based applications, from code generation services to automated data pipelines. In early 2026, three leading providers Amazon Web Services, Google, and Vercel were found to have weaknesses that allowed malicious instructions to bypass the language model entirely. For developers and businesses in North East India, where cloud adoption is accelerating, understanding these flaws and the steps taken to remediate them is essential for safeguarding both data and operational continuity.

Common Weaknesses in Tool Invocation Paths

Missing Verification Between Model Output and Execution Layer

All three incidents shared a single technical gap: the runtime that performed tool calls accepted data that resembled a model generated instruction without confirming that the model had actually produced it. This trust the shape approach meant that an attacker could inject a fabricated tool request directly into the execution pipeline, sidestepping any system prompts, content filters, or model level guardrails that would normally intervene.

Distinct Attack Vectors for Each Provider

  • AWS Bedrock AgentCore The vulnerability (CVE 2026 18830) received a CVSS v4.0 rating of 8.6. An authenticated remote user could embed a tool use block in the final message of an InvokeHarness request, causing the event loop to dispatch the tool without a preceding model turn. The issue affected the managed service up to 31 July 2026.
  • Google Agent Development Kit (ADK) for Python Two separate flaws were identified, both catalogued under CVE 2026 18236 with a CVSS v4.0 score of 9.3. The first allowed forged confirmation events to trigger a sensitive tool, while the second let user authored messages containing function call fragments bypass the model and invoke registered tools directly. Both were fixed in ADK version 2.5.0 released on 16 July 2026.
  • Vercel AI SDK Harness Packages The Codex and OpenCode harnesses (CVE 2026 64650 and CVE 2026 64651) carried a CVSS v4.0 rating of 6.3. The exploit required malicious code already running inside a Linux sandbox to satisfy a path check that trusted a specific helper script, enabling the sandboxed process to call host exposed tools without model authorization. Patches were issued in versions 1.0.29 (Codex) and 1.0.28 (OpenCode) on 10 July 2026.

Remediation Strategies Adopted by the Vendors

Server Side Validation and Documentation Updates

AWS introduced a server side filter that rejects any caller supplied tool use block before it reaches the event loop. The fix was applied automatically to the managed service, eliminating the need for customer side action. For the open source Strands library that underpins AgentCore, AWS opted for a documentation change rather than a code patch, advising developers to construct message histories without exposing them to untrusted inputs.

Strict Confirmation Checks and Event Rejection

Google s ADK update added verification that a confirmation response matches the original tool name, arguments, and the specific agent that requested it. Additionally, the SDK now refuses function call fragments embedded in user authored messages, closing the resumable mode bypass that could have allowed direct tool execution.

One Time Authorization Tokens and Hardened Relays

Vercel replaced the path based trust model with a mechanism that ties each tool request to a short lived, one time token generated from a legitimate model event. The SDK also incorporated HMAC signed approvals and revalidation of tool inputs, a design inspired by security research from Anthropic s Mythos project.

Practical Implications for North East Indian Enterprises

Risk Exposure for Local Start Ups and Academic Projects

Many tech start ups in Guwahati, Imphal, and Shillong rely on cloud hosted AI agents for rapid prototyping and product development. If an application permits external users to submit raw conversation data or modifies stored session history, it could inadvertently expose the system to the same bypass techniques described above. The bounded nature of the flaws meaning an agent without privileged tools gains little from an exploit does not eliminate the risk for services that integrate sensitive operations such as database queries, cloud resource provisioning, or secret management.

Guidelines for Secure Agent Deployment

  • Upgrade all affected SDKs to the versions listed in the vendor patches (AWS managed service, Google ADK 2.5.0, Vercel AI SDK 1.0.29 for Codex and 1.0.28 for OpenCode).
  • Treat any conversation history, resumable events, or confirmation payloads that cross a network boundary as untrusted. Validate them rigorously before they influence tool execution.
  • Bind each tool invocation to the exact model event that originated it, including the tool name, arguments, session identifier, and authorization state.
  • Apply the principle of least privilege: assign agents only the tools and cloud roles required for their specific task, avoiding broad credential scopes.

Potential for Future Regulatory Scrutiny

India s forthcoming data protection framework emphasizes accountability for cloud service providers and their downstream users. Demonstrating that an organization has applied the latest patches and follows the recommended authorization checks will be a key factor in compliance assessments, especially for sectors such as fintech and healthcare that are rapidly adopting AI driven automation in the region.

Looking Ahead: Strengthening the Trust Chain

The three incidents underscore a fundamental lesson: security controls embedded in the language model or system prompts are ineffective if the execution layer can be triggered without a legitimate model turn. Vendors have converged on a common remedy verifying tool calls against a trusted model event but the responsibility for implementing these checks ultimately rests with developers. As AI agents become more pervasive across cloud ecosystems, continuous monitoring of SDK updates, rigorous input validation, and adherence to least privilege principles will be essential to protect both regional innovators and the broader Indian digital economy.