CVE-2026-56239
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedCapgo before 12.128.2 contains a potential privilege escalation vulnerability in the public.apply_usage_overage SECURITY DEFINER function, which performs sensitive billing operations without enforcing internal authorization checks (no validation of auth.uid(), org membership, or check_min_rights). Because the function runs with the owner's privileges, it bypasses Row Level Security. If EXECUTE permission is available to the authenticated or anon roles (explicitly or via default privileges), an authenticated user could invoke it via Supabase RPC to manipulate billing data for arbitrary organizations, including unauthorized credit depletion and fraudulent overage event insertion.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceCapgo before 12.128.2 has a privilege escalation in the public.apply_usage_overage SECURITY DEFINER function which performs billing operations without validating auth.uid(), organization membership, or using check_min_rights. Because it runs with owner privileges and bypasses Row Level Security, an authenticated user with EXECUTE permission on the function (via authenticated or anon roles, explicitly or through defaults) can invoke it via Supabase RPC to manipulate billing data, deplete credits, or insert fraudulent overage events for any organization.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- Low
- Integrity
- High
- Availability
- Low
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify Capgo versionQuery your Supabase database for the installed Capgo version. Typically found in a migrations table, settings table, or by checking the application metadata. Compare against 12.128.2.Affected if Installed version is before 12.128.2
-
Verify apply_usage_overage function existsQuery the database for the function: SELECT proname, pronamespace::regnamespace FROM pg_proc WHERE proname = 'apply_usage_overage';Affected if The function public.apply_usage_overage exists in the database
-
Confirm function uses SECURITY DEFINERCheck the function definition: SELECT prosrc FROM pg_proc WHERE proname = 'apply_usage_overage'; Look for SECURITY DEFINER in the function header or check pg_get_function_flags.Affected if The function is defined as SECURITY DEFINER (runs with owner privileges)
-
Check EXECUTE permissions for vulnerable rolesQuery permissions: SELECT grantee, privilege_type FROM information_schema.function_privileges WHERE routine_name = 'apply_usage_overage'; Look for 'authenticated' or 'anon' roles with EXECUTE.Affected if The authenticated or anon role has EXECUTE permission on public.apply_usage_overage
User is affected if Capgo version is before 12.128.2 AND the public.apply_usage_overage SECURITY DEFINER function exists AND authenticated/anon roles have EXECUTE permission on it.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade to Capgo 12.128.2 or later, and revoke EXECUTE permission from authenticated/anon roles on public.apply_usage_overage if not already patched, ensuring the function validates user authorization before performing billing operations.
Capgo version 12.128.2
- Verify current Capgo version by checking the installed package version or application metadata
- Backup current database state and configuration before performing upgrade
- Upgrade Capgo to version 12.128.2 or later using the standard upgrade method for your deployment (npm, docker, or package manager)
- After upgrade, verify that the public.apply_usage_overage function no longer allows unauthorized invocation by confirming proper authorization checks are in place
- Confirm that SECURITY DEFINER function now validates auth.uid(), org membership, and check_min_rights before executing
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,088.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-56239 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-56239 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data