Home/ Blog/ Security news/ Article
Blog · Security news

Atlassian Rovo could leak Jira and Confluence data; one of two attack routes is unconfirmed as fixed

Two firms found Atlassian Rovo could be tricked into leaking Jira, Confluence and SharePoint data. One attack route is patched; the other is unconfirmed.

One lit doorway open in a sealed geometric wall beside a closed one

The useful way to read the Atlassian Rovo disclosures is not "a bug was found and fixed." It is that two separate teams walked into the same AI assistant through two different doors within weeks of each other, and only one door has been confirmed shut. Varonis and PromptArmor each showed that Rovo, the assistant Atlassian builds into Jira and Confluence, could be talked into gathering data a signed-in user can see and shipping it to an outside server. The mechanics differ. The failure is the same one: text that came from outside was treated as an instruction the assistant should obey.

That shared root is the story. Patching one entry point does not remove the class, and as of the August 8, 2026 reporting only the Varonis route had a validated fix. A defender who reads "Atlassian patched the Rovo flaw" and moves on is working from half the picture.

What the two firms actually demonstrated

Varonis named its technique RovoBlast and presented it at DEF CON 34 on August 8, 2026. It abused a URL parameter, _rovoChatPrompt_, that pre-fills text straight into the Rovo chat window. A single crafted link, opened by an already-authenticated user, was enough to seed a full prompt. Varonis called it parameter-to-prompt injection: the assistant swallowed a value handed to it in a link and executed it without question. The researchers also found that leaving the organization ID out of the link steered the session into whatever organization the user had set as default, with no banner or hint that an outside link had planted it. In three proof-of-concept runs they pulled SharePoint content holding personal data, along with Jira tickets and Confluence pages.

PromptArmor took a different path. Rather than a URL parameter, it buried instructions inside a file Rovo would read, a prompt injection that arrives as content rather than as a link. According to The Hacker News, the leak succeeded because Rovo never verified that a URL it fetched was one it had built itself, so stolen data could ride out on an address the attacker chose. Switching off the obvious upload feature did not help: a second, independent fetch capability still carried the data out. PromptArmor reported the issue on May 23, 2026 and went public on August 5, 2026 without a confirmed fix in place.

DetailVaronis (RovoBlast)PromptArmor route
Injection vectorThe _rovoChatPrompt_ URL parameter, one click from an authenticated userMalicious instructions inside an uploaded file or processed content
Exfiltration pathSeeded prompt, blank org ID routed to the victim's default orgData appended to an attacker URL via a separate URL-retrieval capability
TimelinePresented at DEF CON 34 on Aug 8, 2026Disclosed May 23, published Aug 5, 2026
Fix statusServer-side change dated July 8, 2026, re-tested by the researcherNo confirmed fix at publication
CVENone assignedNone assigned
Source: Varonis, PromptArmor, The Hacker News and SecurityWeek reporting, August 2026.

Why one patch does not close the door

The Bugcrowd disclosure cited by The Hacker News dates Atlassian's server-side change to July 8, 2026, closing the RovoBlast parameter route, which the researcher then re-tested and confirmed. That is real, and it is the right outcome for that specific vector. It says nothing about the content-injection route. PromptArmor's method never touched _rovoChatPrompt_, so a server-side change to how that parameter is handled would not affect it. Neither firm's finding has a CVE assigned, which makes it harder for an operator to track "is my exposure closed" against a single authoritative record.

This is the pattern we keep writing about: fixing the one demonstrated trick is not the same as fixing the reason it worked. We made the same point when a public GitHub issue talked an AI agent into leaking a private repo, where no single patch closes the class. Rovo is the enterprise SaaS version of it. The bug is not the URL parameter. The bug is that an assistant with broad read access will follow instructions that reach it, whatever channel they arrive through.

Your permissions model will not catch this

The detail that should change how you think about this: both routes run with the victim's own permissions. There is no tenant-wide bypass, no privilege escalation, no stolen admin token. Rovo reads what the signed-in user is already allowed to read, and sends it out. That makes the activity look legitimate to any control that reasons about access. A data-loss rule that asks "is this user allowed to see this Confluence space" answers yes, because they are. The assistant is a confused deputy acting on their behalf.

So the useful signal is not who accessed what. It is behavioral and outbound: an assistant session that reaches for an external domain assembled from untrusted input, a burst of read activity across connectors right after a link click, a request to a URL that no human in the workspace has a reason to hit. Detection here belongs to the same discipline as any behavioral threat hunting you already run against living-off-the-land activity: watch what the identity does, not just what it is entitled to do. We have made this argument before about an AI connector that could leak its own access token, and it holds here.

Your blast radius is the connector list, not the ticket

When Varonis asked Rovo what it could reach, the answer was not "Jira." It named Jira and Confluence, then Bitbucket, Slack, Microsoft 365 and Google Workspace, along with connected databases, uploaded files, and cached web content. That is the real exposure. A one-click injection does not stop at the product the link mentions. It inherits every integration you have connected to the assistant, so a tenant wired into Slack, Bitbucket and Microsoft 365 has a far larger reachable surface than one where Rovo only sees Jira.

That is also the lever you hold today, without waiting on a vendor. The mitigation Varonis published is scoping, not patching: limit what Rovo can reach, disconnect integrations you are not using, wall off spaces that hold legal, HR or finance data, and turn off automation features you do not need. Every connector you leave enabled is a connector an injected prompt can pull from. Treat the assistant's integration list as an attack surface review, the same way you would treat a service account's role bindings.

The shape to watch

A crafted link that makes an AI agent act with your identity is not a one-off. We saw it when a single ChatGPT link could plant a rogue agent in an org, when a PNG in a pull request made coding agents leak secrets, and in Atlassian's own MCP surface when an uploaded file could be turned into an arbitrary read. Rovo is the newest instance of a repeating design problem: the assistant sits inside your trust boundary, reads from many systems, and cannot reliably tell an instruction from data. Until that gap closes at the model layer, the defensible posture is to assume any assistant with broad read access can be steered, scope it hard, and watch its outbound behavior rather than its permissions.

Topics

Frequently asked questions

Is the Atlassian Rovo data-leak flaw fixed?

Partly. Atlassian closed the Varonis RovoBlast route, which abused the _rovoChatPrompt_ URL parameter, with a server-side change on July 8, 2026 that the researcher re-tested. A separate content-injection route reported by PromptArmor had no fix that the researchers could confirm when their findings went public on August 5, 2026.

What data could an attacker exfiltrate through Rovo?

Whatever the signed-in user can already access. Varonis demonstrated pulling Confluence pages, Jira tickets and SharePoint content with personal data, and reported Rovo could reach Bitbucket, Slack, Google Workspace, Microsoft 365, files and databases. The attack uses the victim's own permissions, not an escalation.

Is there a CVE for the Atlassian Rovo vulnerability?

No. As of the August 8, 2026 reporting, neither the Varonis RovoBlast route nor the PromptArmor content-injection route had a CVE identifier assigned. Operators tracking their exposure should follow the vendor and researcher disclosures directly rather than a single CVE record.

Why would access-based data-loss rules miss this attack?

Because Rovo acts with the victim's own permissions. It reads only what that user is already allowed to see, so a rule that checks whether the access is authorized returns yes. The useful signal is behavioral: an assistant reaching an external domain built from untrusted input.

How should a team reduce its Rovo exposure now?

Scope the assistant. Varonis recommends limiting what Rovo can reach, cutting integrations you are not using, walling off spaces that hold legal, HR or finance data, and turning off automation features you do not need. The reachable surface equals the connectors you leave enabled, so trim them and monitor Rovo's outbound activity.

Ready to meet the Guardians?

Deploys fast - agentless for monitoring and cloud, a lightweight agent for deep endpoint security. Just Suriq, standing watch.