CVE-2026-56327
Deferred Deferred - Pending Action

Information Disclosure in Capgo via Unauthenticated RPC Calls

Vulnerability report for CVE-2026-56327, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-30

Last updated on: 2026-07-01

Assigner: VulnCheck

Description

Capgo before 12.128.2 contains an information disclosure vulnerability in the public.invite_user_to_org RPC function that allows unauthenticated attackers to enumerate organization existence by observing distinct error responses. Attackers can call the SECURITY DEFINER function with a publishable API key to determine if an organization ID exists based on NO_ORG versus NO_RIGHTS responses, enabling tenant enumeration attacks.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-30
Last Modified
2026-07-01
Generated
2026-07-21
AI Q&A
2026-07-01
EPSS Evaluated
2026-07-19
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
capgo capgo to 12.128.2 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-203 The product behaves differently or sends different responses under different circumstances in a way that is observable to an unauthorized actor, which exposes security-relevant information about the state of the product, such as whether a particular operation was successful or not.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in Capgo versions before 12.128.2 in the public.invite_user_to_org RPC function. It allows unauthenticated attackers to determine whether an organization exists by analyzing different error messages returned by the system. Specifically, attackers can use a SECURITY DEFINER function with a publishable API key to distinguish between 'NO_ORG' and 'NO_RIGHTS' responses, enabling them to enumerate tenants or organizations.

Detection Guidance

This vulnerability can be detected by attempting to call the public.invite_user_to_org RPC function using a publishable API key and observing the error responses.

If the function returns distinct error messages such as "NO_ORG" for non-existent organizations and "NO_RIGHTS" for existing ones, it indicates the presence of the vulnerability.

A practical detection method is to send requests to the RPC endpoint with various organization IDs and analyze the responses to see if they differ based on organization existence.

Example command using curl (replace <API_URL> and <ORG_ID>):

  • curl -X POST <API_URL>/rpc/public.invite_user_to_org -H "apikey: <publishable_api_key>" -H "Content-Type: application/json" -d '{"org_id": "<ORG_ID>"}'

By varying <ORG_ID> and checking if the response error changes between "NO_ORG" and "NO_RIGHTS", you can confirm if the vulnerability exists.

Impact Analysis

The vulnerability can lead to information disclosure by allowing attackers to confirm the existence of organizations within the system without authentication. This tenant enumeration can be used as a reconnaissance step for further targeted attacks or exploitation, potentially compromising privacy and security of the affected organizations.

Compliance Impact

This vulnerability allows unauthenticated attackers to enumerate the existence of organizations by observing distinct error responses from a public API function. Such information disclosure can potentially expose sensitive organizational data or metadata.

While the provided information does not explicitly mention compliance with standards like GDPR or HIPAA, information disclosure vulnerabilities that enable tenant enumeration can increase the risk of unauthorized data access or profiling, which may impact compliance with privacy and data protection regulations.

Mitigations such as removing anonymous access, requiring authentication, returning generic error messages, and rate limiting are recommended to reduce the risk of abuse and help maintain compliance with security best practices often required by such standards.

Mitigation Strategies

Immediate mitigation steps include removing the anonymous ("anon") role grant to the public.invite_user_to_org RPC function to prevent unauthenticated access.

Require authenticated sessions for calling this function to ensure only authorized users can invoke it.

Modify the function to return a generic error response for unknown organizations instead of distinct error messages, preventing attackers from distinguishing organization existence.

Implement rate limiting on the RPC endpoint to reduce the risk of automated enumeration attacks.

Additionally, upgrading to Capgo version 12.128.2 or later, where this vulnerability is fixed, is recommended.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-56327. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart