Critical AI Agent Security Vulnerabilities Surface in Open-Source Platform
Security researchers have uncovered a series of critical AI agent security vulnerabilities in Paperclip, an open-source AI agent platform, that could be chained together to achieve remote code execution (RCE), sensitive data exposure, and full developer-machine compromise. The findings, disclosed by Oasis Security and shared with CSO Online ahead of publication, reveal something far more troubling than a single software flaw — they point to a fundamental architectural problem in how AI agent platforms manage identity and trust boundaries.
The vulnerabilities affect different Paperclip deployment modes and include a maximum-severity authorisation bypass, multiple improperly protected API endpoints, and a DNS rebinding flaw that allows attackers to silently execute code on locally deployed instances. All three flaws have now been patched in versions 2026.416.0 and 0.3.1, but the implications for organisations building on or deploying AI agent infrastructure extend well beyond this single project.

For developers, privacy professionals, and IT decision-makers evaluating AI tooling, this disclosure arrives at a critical moment. Agentic AI systems — those that autonomously take actions on behalf of users or organisations — are proliferating rapidly across enterprise environments. Yet the security frameworks governing how these agents authenticate, authorise, and execute commands have not kept pace. As the National Vulnerability Database entry for CVE-2026-41679 confirms, the severity rating for the primary flaw is as high as it gets.
How Attackers Could Exploit the Paperclip Vulnerability Chain
The most severe finding, tracked as CVE-2026-41679, affected authenticated deployments using Paperclip's default registration settings. Oasis Security researchers demonstrated that an attacker with no prior access could begin as a completely unauthenticated user, self-register for an account on the platform, approve their own command-line (CLI) authorisation request, and then obtain persistent board-level API access — all without requiring any separate administrative approval.
In practice, this means an attacker anywhere on the internet could simply sign up, immediately log in, and escalate to board-level permissions through the CLI. Those elevated permissions were then sufficient to exploit a second authorisation mismatch in Paperclip's company import workflow. While creating a new company directly required instance administrator privileges, importing a company bundle only enforced the lower board-level permissions — a subtle but devastating discrepancy.
Because imported company bundles could include executable agent definitions, an attacker could upload a malicious .paperclip.yaml file specifying a process-based agent and then trigger that agent to execute arbitrary operating system commands under the Paperclip server's own privileges. The Oasis team's core warning is stark: AI agent configuration files must be treated as executable code, not passive data. This mirrors a broader concern raised by security researchers at organisations like OWASP's LLM Top 10 project, which flags prompt injection and insecure plugin design as primary risks in AI systems.
"The Paperclip vulnerabilities Oasis Security has disclosed expose something more consequential than a single open-source project: a systemic failure in how AI agent control planes handle identity boundaries. An attacker who gains control of an agent configuration doesn't just access data; they gain the ability to direct privileged action across every system that agent can reach."
— Darren Guccione, CEO and Co-founder, Keeper SecurityDNS Rebinding and Unprotected APIs: The Hidden Attack Surfaces
Beyond the headline RCE chain, Oasis disclosed two additional vulnerabilities that illuminate the same architectural weakness. The first involved multiple API endpoints that either lacked authentication entirely or failed to enforce tenant-level authorisation. These unprotected endpoints exposed workflow information, skill documentation, and deployment metadata — intelligence that would be extremely valuable to an attacker mapping out a target environment or attempting cross-tenant data exfiltration.
For organisations operating under GDPR or other data protection regulations, this type of uncontrolled metadata leakage is not merely a technical problem — it represents a potential compliance incident. Workflow and deployment metadata can reveal the structure of internal business processes, the identity of users, and the nature of data being processed, all of which fall within the scope of personal and sensitive business data under frameworks like the EU's General Data Protection Regulation.
The second additional vulnerability, rated CVSS 9.6, targeted Paperclip's default "local_trusted" deployment mode. In this configuration, the platform assumed that any request reaching localhost originated from trusted, locally running software. Oasis demonstrated that a DNS rebinding attack — a well-documented but often underestimated technique — could shatter this assumption. An attacker-controlled webpage could communicate with the local Paperclip service and, after importing and triggering a malicious agent, execute arbitrary commands on a developer's own machine.

This is particularly concerning for development teams that run AI agent tooling locally during prototyping and testing phases. The assumption that local equals safe is one that security professionals have been working to dismantle for years — but the rise of locally deployed AI agents has introduced a new class of targets that many teams are not yet securing adequately. Research from SANS Institute has consistently highlighted how developer workstations, rather than production servers, are increasingly becoming primary targets precisely because they tend to be less hardened.
Paperclip Vulnerability Breakdown: What Was Found and How It Was Fixed
| Vulnerability | CVE / Rating | Affected Mode | Impact | Fixed In |
|---|---|---|---|---|
| Authorisation Bypass + RCE Chain | CVE-2026-41679 (Critical) | Authenticated (default registration) | Remote code execution on server | 2026.416.0 |
| Unprotected API Endpoints | Not individually assigned | All deployment modes | Data exposure, reconnaissance, cross-tenant leakage | 2026.416.0 |
| DNS Rebinding Attack | CVSS 9.6 | Local_trusted deployment mode | Drive-by RCE on developer machines | 0.3.1 |
Paperclip addressed the RCE path and leaking API issues in version 2026.416.0 by requiring administrator privileges for new-company imports, strengthening authorisation checks across related operations, and adding regression tests to prevent future regressions. The DNS rebinding vulnerability was addressed separately in version 0.3.1 by enabling hostname validation, hardening import processes, and restricting risky adapters in agent-safe imports.
Why AI Agent Security Requires a Completely Different Approach
The Oasis Security research makes a compelling case that these were not isolated coding mistakes — they were the natural consequence of a fundamentally flawed trust model baked into the platform's architecture. Paperclip, like many AI agent platforms, was built on an implicit assumption: that certain identity or location signals (being authenticated, reaching localhost) were sufficient to grant elevated trust. In a conventional software context, such assumptions might be defensible with other layers of protection. In an AI agent context, they become catastrophic.
AI agents differ from traditional software in a fundamental way: they are designed to take autonomous action across multiple systems on behalf of users or organisations. When an agent is configured to access a database, send emails, call APIs, or modify files, a compromised agent configuration is not just a data breach — it is a fully weaponised autonomous actor operating inside your infrastructure. As Darren Guccione of Keeper Security noted in reviewing the Oasis research, gaining control of an agent configuration means gaining the ability to direct privileged action across every system that agent can reach.
This challenge is increasingly recognised at the policy level. The EU AI Act, which entered into force and is progressively applying its obligations across member states, explicitly addresses high-risk AI systems and their security requirements. While AI agent platforms used internally by developers may not immediately fall under the Act's highest-risk categories, the trajectory is clear: regulators are paying closer attention to how autonomous AI systems are secured, particularly when they process personal data or operate within critical business infrastructure. Resources like the European Union Agency for Cybersecurity (ENISA)'s AI security guidance are already helping organisations navigate these obligations.
Traditional access control models — built around the question of whether a credential is valid — are simply not equipped for the agentic paradigm. The relevant security question has shifted: it is no longer just "Is this user authenticated?" but "Is this agent acting within its intended scope, for its intended purpose, under the authority of a human who would sanction this action?" This framing, articulated by Guccione, represents a fundamentally different mental model that organisations deploying AI agents must internalise.
What Developers and IT Decision-Makers Should Do Right Now
For teams currently running Paperclip, the immediate priority is clear: update to versions 2026.416.0 or 0.3.1 without delay, depending on the deployment mode in use. Both versions contain the necessary patches, regression tests, and hardened authorisation controls. Any deployment using the default registration settings or the "local_trusted" mode should be treated as potentially compromised until updated, and administrators should audit recent import activity and API access logs for anomalous behaviour.
More broadly, the Paperclip disclosures offer a timely checklist for any team building or deploying AI agent infrastructure, regardless of platform. Several principles emerge directly from the vulnerabilities described:
-
Originally reported by CSO Online. Summarised and curated by European Purpose.